46.40 GET_BUILD_OPTION_STATUS Function Signature 1
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
Table 46-36 GET_BUILD_OPTION_STATUS Function Signature 1 Paremeters
| Parameters | Description | 
|---|---|
| 
 | The ID of the application that owns the build option under shared components. | 
| 
 | 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;
/Parent topic: APEX_UTIL