59.40 GET_APEX_OWNER Function

This function returns the name of the schema containing the Oracle APEX engine.

Syntax

APEX_UTIL.GET_APEX_OWNER RETURN VARCHAR2;

Parameters

None.

Returns

The schema name which contains the APEX engine.

Example

DECLARE
    l_apex_owner varchar2(255);
BEGIN
    l_apex_owner := apex_util.get_apex_owner;
END;