DBA Data[Home] [Help]

PACKAGE: APPS.FND_DATE_TZ

Source


1 PACKAGE fnd_date_tz AUTHID CURRENT_USER as
2 /* $Header: AFDATTZS.pls 115.4 2003/10/28 16:03:43 psloan ship $ */
3 
4 -- sends all the necessary information to the fnd_date package so it
5 -- can calculate the timezone conversions.
6 -- this assumes that fnd_timezones.timezones_enabled() has been run and returns a 'Y'.
7 -- init_timezones_for_fnd_date does not do any validation or error checking.
8    PROCEDURE init_timezones_for_fnd_date;
9 
10 -- returns 'Y' if running in a 9i db with the v$timezone_names table
11 -- available.   This is not an speedy call and should only be called in low volumes.
12 -- ie. at forms startup etc..
13    function is_9i_db return varchar2;
14 
15 -- overlaoding init_timezones_for_fnd_date so that it will accept a boolean to
16 -- indicate if timezones should be initialized for fnd_date
17 -- this way timezone support can be turned on or off.
18    procedure init_timezones_for_fnd_date(v_enabled boolean);
19 
20 END fnd_date_tz;