48.68 GET_SESSION_TERRITORY Function

This function returns the territory setting for the current user in the current Oracle APEX session.

Syntax

APEX_UTIL.GET_SESSION_TERRITORY
RETURN VARCHAR2;

Parameters

None.

Example

The following example returns the session territory setting for the current user in the current APEX session into a local variable.

DECLARE
    VAL VARCHAR2(30);
BEGIN
    VAL := APEX_UTIL.GET_SESSION_TERRITORY;
END;