31.32 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_HUMAN_TASK.SUBMIT_INFORMATION (
    p_task_id                IN NUMBER,
    p_text                   IN VARCHAR2 )Parameters
| Parameter | Description | 
|---|---|
| p_task_id | The Task ID. | 
| p_text | Text containing the information submitted. | 
Example
BEGIN
    apex_human_task.submit_information(
        p_task_id => 1234,
        p_text    => 'The flight PNR is PN1234'
    );
END;Parent topic: APEX_HUMAN_TASK