12.2 DISABLE Procedure
This procedure stops the automation from executing automatically.
Syntax
APEX_AUTOMATION.DISABLE (
p_application_id IN NUMBER DEFAULT {current application id},
p_static_id IN VARCHAR2 )
Parameters
Parameter | Description |
---|---|
p_application_id |
ID of the application which contains the automation. |
p_static_id |
Static ID of the automation to disable. |
Examples
This example disables the automation my_emp_table_automation
in application 152.
BEGIN
apex_automation.disable(
p_application_id => 152,
p_static_id => 'my_emp_table_automation' );
END;
Parent topic: APEX_AUTOMATION