DBA Data[Home] [Help]

PACKAGE: APPS.FND_TIMEZONES

Source


1 PACKAGE fnd_timezones AUTHID CURRENT_USER AS
2 /* $Header: AFTZONES.pls 115.1 2002/02/21 14:25:05 pkm ship    $ */
3 
4   -- returns the code for a given id
5   function get_code(tz_id in number) return varchar2;
6 
7   -- returns the translated name for a given code
8   function get_name(tz_code in varchar2) return varchar2;
9 
10   -- returns the server timezone_code
11   function get_server_timezone_code return varchar2;
12 
13   -- returns the client timezone_code
14   function get_client_timezone_code return varchar2;
15 
16   -- returns 'Y' or 'N' if timezones should be enabled or not
17   function get_timezone_enabled_flag return varchar2;
18 
19   -- returns 'Y' is the master switch for TZ is on and both the
20   -- server/client timzone_id's are not null
21   function timezones_enabled  RETURN VARCHAR2;
22 
23 END fnd_timezones;