6.1 ADD_TASK_COMMENT Procedure

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

Table 6-1 ADD_TASK_COMMENT 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;