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:

  • apex_application_admin.c_build_status_run_and_build - Developers and users can both run and develop the application.
  • apex_application_admin.c_build_status_run_only - Only users can run the application. Developers cannot edit the application.

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