9.34 SUBMIT_INFORMATION Procedure
Caution:
This API is deprecated and will be removed in a future release.
Use APEX_HUMAN_TASK instead.
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
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;
See Also:
REQUEST_MORE_INFORMATION ProcedureParent topic: APEX_APPROVAL (Deprecated)