This procedure sets the build status of the specified application.
Syntax
apex_util.set_app_build_stauts( p_application_id IN NUMBER, p_build_status in VARCHAR2 );
Parameters
Table 35-89 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