DBA Data[Home] [Help]

APPS.POS_AP_INVOICES_PKG dependencies on FND_DATE_TZ

Line 232: fnd_date_tz.init_timezones_for_fnd_date(true);

228: fetch scheduled_payment_date_cursor into due_date2;
229: if (scheduled_payment_date_cursor%NOTFOUND) then
230:
231: if(fnd_timezones.timezones_enabled()='Y') then
232: fnd_date_tz.init_timezones_for_fnd_date(true);
233: /* Calendar Support ,Passing calendar_aware=>1 ,It means the field always doesn't need Gregorian calendar */
234: due_date := fnd_date.date_to_displayDT(due_date1,calendar_aware=>1);
235: else
236: /* To show the due_date value according to the user profile calender(Eg : English Hijrah) */

Line 741: fnd_date_tz.init_timezones_for_fnd_date(true);

737: --just one payment
738: p_payment_switch := 'S';
739:
740: if(fnd_timezones.timezones_enabled()='Y') then
741: fnd_date_tz.init_timezones_for_fnd_date(true);
742: /* Calendar Support ,Passing calendar_aware=>1 ,It means the field always doesn't need Gregorian calendar */
743: p_payment_date := fnd_date.date_to_displayDT(pay_date1,calendar_aware=>1);
744: else
745: p_payment_date := to_char(pay_date1,fnd_profile.value_wnps('ICX_DATE_FORMAT_MASK'));

Line 852: fnd_date_tz.init_timezones_for_fnd_date(true);

848: FETCH paymentdate_cursor_new INTO pay_date2;
849: if (paymentdate_cursor_new%NOTFOUND) then
850: --just one payment
851: if(fnd_timezones.timezones_enabled()='Y') then
852: fnd_date_tz.init_timezones_for_fnd_date(true);
853: /* Calendar Support ,Passing calendar_aware=>1 ,It means the field always doesn't need Gregorian calendar */
854: p_payment_date := fnd_date.date_to_displayDT(pay_date1,calendar_aware=>1);
855: else
856: /*Bug #:12827801 */