48.111 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 48-93 SET_APP_BUILD_STATUS Parameters
| Parameter | Description |
|---|---|
|
|
The ID of the application. |
|
|
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