46.108 SET_APP_BUILD_STATUS Procedure

This procedure sets the build status of the specified application.

Syntax

APEX_UTIL.SET_APP_BUILD_STATUS( p_application_id IN NUMBER,
                                p_build_status in VARCHAR2 );

Parameters

Table 46-91 SET_APP_BUILD_STATUS Parameters

Parameter Description

p_application_id

The ID of the application.

p_build_status

The new build status of the application.

Values include:

  • RUN_ONLY - The application can be run but cannot be edited by developers.

  • RUN_AND_BUILD - The application can be run and can also be edited by developers.

Example

begin
    apex_util.set_app_build_status(
        p_application_id => 170,
        p_build_status   => 'RUN_ONLY' );
    commit;
end;