4.31 SET_BUILD_STATUS Function

Use this function to override the build status for applications that are about to be installed.

Syntax

Function SET_BUILD_STATUS (
    p_build_status IN VARCHAR2 );
 

Parameters

Table 4-12 SET_BUILD_STATUS Parameters

Parameter Description

p_build_status

New build status to set application to. Values include:

  • RUN_AND_BUILD - Developers and users can both run develop the application.

  • RUN_ONLY - Users can only 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