7.15 GET_PARSING_SCHEMA Function
This function retrieves the parsing schema (or "owner") of an application.
Syntax
APEX_APPLICATION_ADMIN.GET_PARSING_SCHEMA (
p_application_id IN NUMBER )
RETURN VARCHAR2;
Parameters
Parameter | Description |
---|---|
p_application_id |
The application ID. |
Example
The following example returns the value of the application schema for application 100.
DECLARE
l_schema varchar2(30);
BEGIN
l_schema := apex_application_admin.get_parsing_schema(
p_application_id => 100 );
END;
See Also:
SET_PARSING_SCHEMA ProcedureParent topic: APEX_APPLICATION_ADMIN