7.8 GET_BUILD_OPTION_STATUS Function Signature 2
This function retrieves the status of a build option by name.
Syntax
APEX_APPLICATION_ADMIN.GET_BUILD_OPTION_STATUS (
p_application_id IN NUMBER,
p_build_option_name IN VARCHAR2 )
RETURN t_build_option_status;
Parameters
Parameter | Description |
---|---|
p_application_id |
The application ID. |
p_build_option_name |
The build option name. |
Returns
INCLUDE
- The build option is "Include" (associated components are enabled and part of the application).
EXCLUDE
- The build option is "Exclude" (associated components are disabled and not part of the application).
See Also:
SET_BUILD_OPTION_STATUS ProcedureParent topic: APEX_APPLICATION_ADMIN