9.3 ENABLE Procedure

This procedure enables the automation for normal execution.

Syntax

APEX_AUTOMATION.ENABLE (
    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 enables the automation my_emp_table_automation in application 152.

BEGIN
    apex_automation.enable(
        p_application_id  => 152,
        p_static_id       => 'my_emp_table_automation' );
END;