6.41 SET_PASS_ECID Procedure

This procedure overrides the pass Execution Context ID (ECID) attribute for applications that are being installed.

Syntax

APEX_APPLICATION_INSTALL.SET_PASS_ECID (
    p_pass_ecid IN BOOLEAN )

Parameters

Parameter Description
p_pass_ecid

New pass ECID value to set application to. Values include:

  • TRUE: Pass the ECID to the external web services for end-to-end tracing.
  • FALSE: Deny the ECID.

Example

The following example sets Pass ECID to true.

BEGIN
   apex_application_install.set_pass_ecid (
       p_pass_ecid => true );
END;
/
@f100.sql