51.42 GET_BUILD_OPTION_STATUS Function Signature 1 (Deprecated)

Note:

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

Use GET_BUILD_OPTION_STATUS Function Signature 1 in APEX_APPLICATION_ADMIN instead.

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

Syntax

APEX_UTIL.GET_BUILD_OPTION_STATUS (
    p_application_id  IN NUMBER
    p_id              IN NUMBER )

Parameters

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

Example

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

DECLARE
    l_status VARCHAR2(255);
BEGIN
    l_status := APEX_UTIL.GET_BUILD_OPTION_STATUS(
                    P_APPLICATION_ID => 101,
                    P_ID => 245935500311121039);
END;
/