|  Previous |  Next | 
This procedure sets the time zone to be used for the current user in the current Application Express session.
Syntax
APEX_UTIL.SET_SESSION_TIME_ZONE(
    p_time_zone IN VARCHAR2);
Parameters
Table: SET_SESSION_TIME_ZONE Parameters describes the parameters available in the SET_SESSION_TIME_ZONE procedure.
SET_SESSION_TIME_ZONE Parameters
| Parameter | Description | 
|---|---|
| 
 | A time zone value in the form of hours and minutes. Examples include: +09:00, 04:00, -05:00. | 
Example
The following example shows how to use the SET_SESSION_TIME_ZONE procedure. It sets the time zone for the current user for the duration of the Application Express session.
BEGIN
    APEX_UTIL.SET_SESSION_TIME_ZONE( P_TIME_ZONE => '-05:00');
END;