6.35 SET_BUILD_STATUS Function
Use this function to override the build status for applications that are about to be installed.
Syntax
APEX_APPLICATION_INSTALL.SET_BUILD_STATUS (
p_build_status IN wwv_flow_application_admin_api.t_build_status )
Parameters
Parameter | Description |
---|---|
p_build_status |
New build status to set the application to. Values include:
|
Example
The following example sets build status for app 100 to RUN_ONLY
.
BEGIN
apex_application_install.set_build_status (
p_build_status => 'RUN_ONLY' );
END;
/
@f100.sql
See Also:
GET_BUILD_STATUS FunctionParent topic: APEX_APPLICATION_INSTALL