8.34 SUBMIT_INFORMATION Procedure

This procedure submits information for a task. The initiator of a task can submit additional information regarding a Task for which information has been requested. For example, a travel approver might need airline details from the initiator. The initiator can submit this information to the travel approver using this API.

Syntax

APEX_APPROVAL.SUBMIT_INFORMATION (
    p_task_id                IN NUMBER,
    p_text                   IN VARCHAR2 )

Parameters

Table 8-20 SUBMIT_INFORMATION Parameters

Parameter Description
p_task_id The Task ID.
p_text Text containing the information submitted.

Example

BEGIN
    apex_approval.submit_information(
        p_task_id => 1234,
        p_text    => 'The flight PNR is PN1234'
    );
END;