DBA Data[Home] [Help]

APPS.JAI_AP_TDS_CANCELLATION_PKG dependencies on FND_FILE

Line 217: Fnd_File.put_line(Fnd_File.LOG, '**** Start of procedure jai_ap_tds_cancellation_pkg.process_invoice ****');

213:
214: --ld_accounting_date := sysdate; --commented by Harshita for Bug#5131075(5193852)
215:
216: lv_codepath := jai_general_pkg.plot_codepath(1, lv_codepath, 'jai_ap_tds_cancellation_pkg.process_invoice', 'START'); /* 1 */
217: Fnd_File.put_line(Fnd_File.LOG, '**** Start of procedure jai_ap_tds_cancellation_pkg.process_invoice ****');
218:
219: /* Check if Invoice was created after the tds clean up patch */
220: jai_ap_tds_tax_defaultation.check_old_transaction
221: (

Line 229: Fnd_File.put_line(Fnd_File.LOG, '**** Transaction before application of TDS clean up Calling procedure ****');

225:
226: if nvl(lv_new_transaction, 'N') = 'N' then
227: /* Invoice was created before application of TDS clean up, need to call the old procedure */
228: lv_codepath := jai_general_pkg.plot_codepath(1.0, lv_codepath); /* 1.0 */
229: Fnd_File.put_line(Fnd_File.LOG, '**** Transaction before application of TDS clean up Calling procedure ****');
230: Fnd_File.put_line(Fnd_File.LOG, ' Invoking OLD procedure jai_ap_tds_old_pkg.cancel_invoice');
231:
232: jai_ap_tds_old_pkg.cancel_invoice
233: (

Line 230: Fnd_File.put_line(Fnd_File.LOG, ' Invoking OLD procedure jai_ap_tds_old_pkg.cancel_invoice');

226: if nvl(lv_new_transaction, 'N') = 'N' then
227: /* Invoice was created before application of TDS clean up, need to call the old procedure */
228: lv_codepath := jai_general_pkg.plot_codepath(1.0, lv_codepath); /* 1.0 */
229: Fnd_File.put_line(Fnd_File.LOG, '**** Transaction before application of TDS clean up Calling procedure ****');
230: Fnd_File.put_line(Fnd_File.LOG, ' Invoking OLD procedure jai_ap_tds_old_pkg.cancel_invoice');
231:
232: jai_ap_tds_old_pkg.cancel_invoice
233: (
234: errbuf => errbuf,

Line 943: Fnd_File.put_line(Fnd_File.LOG, lv_codepath);

939:
940: << exit_from_procedure >>
941:
942: lv_codepath := jai_general_pkg.plot_codepath(100, lv_codepath, null, 'END'); /* 100 */
943: Fnd_File.put_line(Fnd_File.LOG, lv_codepath);
944: Fnd_File.put_line(Fnd_File.LOG, '**** END of procedure jai_ap_tds_cancellation_pkg.process_invoice ****');
945:
946: errbuf := lv_codepath;
947:

Line 944: Fnd_File.put_line(Fnd_File.LOG, '**** END of procedure jai_ap_tds_cancellation_pkg.process_invoice ****');

940: << exit_from_procedure >>
941:
942: lv_codepath := jai_general_pkg.plot_codepath(100, lv_codepath, null, 'END'); /* 100 */
943: Fnd_File.put_line(Fnd_File.LOG, lv_codepath);
944: Fnd_File.put_line(Fnd_File.LOG, '**** END of procedure jai_ap_tds_cancellation_pkg.process_invoice ****');
945:
946: errbuf := lv_codepath;
947:
948: if lv_process_flag = 'E' then

Line 956: Fnd_File.put_line(Fnd_File.LOG, 'Err:process_invoice :' || sqlerrm);

952:
953: exception
954: when others then
955: errbuf := 'jai_ap_tds_cancellation_pkg.process_invoice :' || sqlerrm;
956: Fnd_File.put_line(Fnd_File.LOG, 'Err:process_invoice :' || sqlerrm);
957: raise_application_error(-20013, errbuf);
958: return;
959: end process_invoice;
960: