DBA Data[Home] [Help]

APPS.FND_CONC_PRIVATE_UTILS dependencies on FND_TIMEZONES

Line 197: if fnd_timezones.timezones_enabled() = 'Y' then

193:
194: temp_date := req_sdate;
195: tz_adjusted := false;
196:
197: if fnd_timezones.timezones_enabled() = 'Y' then
198: client_timezone := fnd_profile.value_specific('CLIENT_TIMEZONE_ID',
199: requested_by, -1, -1, -1, -1);
200: if client_timezone is not null then
201: client_timezone := fnd_timezones.get_code(client_timezone);

Line 201: client_timezone := fnd_timezones.get_code(client_timezone);

197: if fnd_timezones.timezones_enabled() = 'Y' then
198: client_timezone := fnd_profile.value_specific('CLIENT_TIMEZONE_ID',
199: requested_by, -1, -1, -1, -1);
200: if client_timezone is not null then
201: client_timezone := fnd_timezones.get_code(client_timezone);
202: server_timezone := fnd_timezones.get_server_timezone_code();
203: if server_timezone is not null and client_timezone <> server_timezone
204: then
205: temp_date := fnd_timezone_pub.adjust_datetime(temp_date,

Line 202: server_timezone := fnd_timezones.get_server_timezone_code();

198: client_timezone := fnd_profile.value_specific('CLIENT_TIMEZONE_ID',
199: requested_by, -1, -1, -1, -1);
200: if client_timezone is not null then
201: client_timezone := fnd_timezones.get_code(client_timezone);
202: server_timezone := fnd_timezones.get_server_timezone_code();
203: if server_timezone is not null and client_timezone <> server_timezone
204: then
205: temp_date := fnd_timezone_pub.adjust_datetime(temp_date,
206: server_timezone, client_timezone);