Previous |
Next |
This function returns the time zone for the current user in the current Application Express session. This value is null if the time zone is not explicitly set via APEX_UTIL.SET_SESSION_TIME_ZONE
or if an application's automatic time zone attribute is enabled.
Syntax
APEX_UTIL.GET_SESSION_TIME_ZONE RETURN VARCHAR2;
Parameters
None.
Example
The following example shows how to use the GET_SESSION_TIME_ZONE
function. It returns the session time zone for the current user in the current Application Express session into a local variable.
BEGIN VAL := APEX_UTIL.GET_SESSION_TIME_ZONE; END;