7.30 SET_PASS_ECID Procedure
This procedure sets the application Security attribute "Pass ECID" (Execution Context ID). Indicates whether to pass the ECID to the external web services for end-to-end tracing.
Syntax
APEX_APPLICATION_ADMIN.SET_PASS_ECID (
    p_application_id IN NUMBER,
    p_pass_ecid      IN BOOLEAN )Parameters
| Parameter | Description | 
|---|---|
p_application_id | 
                              The application ID. | 
p_pass_ecid | 
                              Boolean value: TRUE or FALSE.
                               | 
                           
Example
BEGIN
    apex_application_admin.set_pass_ecid(100, true);
END;See Also:
GET_PASS_ECID FunctionParent topic: APEX_APPLICATION_ADMIN