59.115 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:
|
Example
begin
apex_util.set_app_build_status(
p_application_id => 170,
p_build_status => 'RUN_ONLY' );
commit;
end;
Parent topic: APEX_UTIL