53.111 SET_APP_BUILD_STATUS Procedure (Deprecated)

Note:

This API is deprecated and will be removed in a future release.

Use SET_BUILD_STATUS Procedure in APEX_APPLICATION_ADMIN instead.

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

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;