9.29 REQUEST_MORE_INFORMATION Procedure
Caution:
This API is deprecated and will be removed in a future release.
Use APEX_HUMAN_TASK instead.
This procedure requests more information for a task. The owner of a task can request additional information regarding a Task from the initiator. The task then moves to the Information Requested state and can be acted on by the owner only after the initiator submits the requested information.
Syntax
APEX_APPROVAL.REQUEST_MORE_INFORMATION (
p_task_id IN NUMBER,
p_text IN VARCHAR2 )
Parameters
Parameter | Description |
---|---|
p_task_id |
The Task ID. |
p_text |
Text describing the information requested. |
State Handling
Pre-State: ASSIGNED
Post-State: INFO_REQUESTED
Example
BEGIN
apex_approval.request_more_information(
p_task_id => 1234,
p_text => 'Please provide the flight PNR for your travel'
);
END;
See Also:
SUBMIT_INFORMATION ProcedureParent topic: APEX_APPROVAL (Deprecated)