Previous |
Next |
This procedure sets the territory to be used for the current user in the current Application Express session. The territory name must be a valid Oracle territory.
Syntax
APEX_UTIL.SET_SESSION_TERRITORY( p_territory IN VARCHAR2);
Parameters
Table: SET_SESSION_TERRITORYParameters describes the parameters available in the SET_SESSION_TERRITORY
procedure.
SET_SESSION_TERRITORYParameters
Parameter | Description |
---|---|
|
A valid Oracle territory name. Examples include: AMERICA, UNITED KINGDOM, ISRAEL, AUSTRIA, and UNITED ARAB EMIRATES. |
Example
The following example shows how to use the SET_SESSION_TERRITORY
procedure. It sets the territory for the current user for the duration of the Application Express session.
BEGIN APEX_UTIL.SET_SESSION_TERRITORY( P_TERRITORY => 'UNITED KINGDOM'); END;