4.22 GET_SCHEMA Function

Use this function to get the parsing schema (owner) of the APEX application.

Syntax

APEX_APPLICATION_INSTALL.GET_SCHEMA
RETURN VARCHAR2;

Parameters

None.

Example

The following example returns the value of the application schema in the APEX_APPLICATION_INSTALL package.

DECLARE
    l_schema varchar2(30);
BEGIN
    l_schema := apex_application_install.get_schema;
END;