53.43 GET_BUILD_OPTION_STATUS Function Signature 2 (Deprecated)

Note:

This API is deprecated and will be removed in a future release.

Use GET_BUILD_OPTION_STATUS Function Signature 2 in APEX_APPLICATION_ADMIN instead.

Use this function to get the build option status of a specified application by providing the name of the application build option.

Syntax

APEX_UTIL.GET_BUILD_OPTION_STATUS (
    p_application_id     IN NUMBER
    p_build_option_name  IN VARCHAR2 )

Parameters

Parameters Description
p_application_id The ID of the application that owns the build option under shared components.
p_build_option_name The name of the build option in the application.

Example

The following code retrieves the current status of the specified build option that is identified by name.

DECLARE
    l_status VARCHAR2(255);
BEGIN
    l_status := APEX_UTIL.GET_BUILD_OPTION_STATUS(
                    P_APPLICATION_ID => 101,
                    P_BUILD_OPTION_NAME => 'EXCLUDE_FROM_PRODUCTION');
END;
/