27.28 REQUEST_MORE_INFORMATION Procedure

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_HUMAN_TASK.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.

Example

BEGIN
    apex_human_task.request_more_information(
        p_task_id => 1234,
        p_text    => 'Please provide the flight PNR for your travel'
    );
END;