48.66 GET_SESSION_LANG Function

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

Syntax

APEX_UTIL.GET_SESSION_LANG
RETURN VARCHAR2;

Parameters

None.

Example

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

DECLARE
    VAL VARCHAR2(5);
BEGIN
    VAL := APEX_UTIL.GET_SESSION_LANG;
END;