9.2 ADD_TASK_COMMENT Procedure
Caution:
This API is deprecated and will be removed in a future release.
Use APEX_HUMAN_TASK instead.
This procedure adds a comment to a task. Any potential owner or business administrator of a Task can add comments to a Task. Comments are useful as additional information regarding a Task. For example, a manager may add her notes to a Task she is working on before delegating the Task.
Syntax
APEX_APPROVAL.ADD_TASK_COMMENT (
    p_task_id                IN NUMBER,
    p_text                   IN VARCHAR2 );Parameters
| Parameter | Description | 
|---|---|
| p_task_id | The Task ID. | 
| p_text | The comment text. | 
Example
BEGIN
     add_task_comment(
         p_task_id => 1234,
         p_text    => 'Please review and approve');
END;Parent topic: APEX_APPROVAL (Deprecated)