DBA Data[Home] [Help]

APPS.POS_AP_INVOICES_PKG dependencies on FND_TIMEZONES

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

227: else
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

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

736: if (payment_cursor_new%NOTFOUND) then
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

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

847: --atleast one payment
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