DBA Data[Home] [Help]

APPS.AP_CREDIT_CARD_INVOICE_PKG dependencies on FND_FILE

Line 213: FND_FILE.PUT_LINE( FND_FILE.LOG, ' processing transaction id: ' || l_card_trxn_id );

209:
210: ----------------------------------------------------------------------
211: l_debugInfo := 'Write to the log file regarding the progress of the operation';
212: ----------------------------------------------------------------------
213: FND_FILE.PUT_LINE( FND_FILE.LOG, ' processing transaction id: ' || l_card_trxn_id );
214:
215: ----------------------------------------------------------------------
216: l_debugInfo := 'Update AP_CREDIT_CARD_TRXNS_ALL.COMPANY_PREPAID_INVOICE_ID';
217: ----------------------------------------------------------------------

Line 230: FND_FILE.PUT_LINE( FND_FILE.LOG, 'Total processed transactions: ' || l_count );

226:
227: ----------------------------------------------------------------------
228: l_debugInfo := 'Write to the log file regarding the progress of the operation';
229: ----------------------------------------------------------------------
230: FND_FILE.PUT_LINE( FND_FILE.LOG, 'Total processed transactions: ' || l_count );
231: FND_MESSAGE.SET_NAME( 'SQLAP', 'AP_CARD_TRXNS_DONE_ACK' );
232: FND_MESSAGE.SET_TOKEN( 'TOTAL_TRXNS_NUM', l_count );
233: FND_FILE.PUT_LINE( FND_FILE.OUTPUT, FND_MESSAGE.get );
234: --

Line 233: FND_FILE.PUT_LINE( FND_FILE.OUTPUT, FND_MESSAGE.get );

229: ----------------------------------------------------------------------
230: FND_FILE.PUT_LINE( FND_FILE.LOG, 'Total processed transactions: ' || l_count );
231: FND_MESSAGE.SET_NAME( 'SQLAP', 'AP_CARD_TRXNS_DONE_ACK' );
232: FND_MESSAGE.SET_TOKEN( 'TOTAL_TRXNS_NUM', l_count );
233: FND_FILE.PUT_LINE( FND_FILE.OUTPUT, FND_MESSAGE.get );
234: --
235: -- create a summary invoice for this batch of credit card transactions
236: --
237: IF ( l_count > 0 )

Line 305: fnd_file.put_line(fnd_file.log, l_debugInfo);

301: l_doc_cat_code := NULL;
302: END IF;
303: ------------------------------------------------------------------------
304: l_debugInfo := 'Inserting into AP_INVOICES_INTERFACE';
305: fnd_file.put_line(fnd_file.log, l_debugInfo);
306: ------------------------------------------------------------------------
307: l_result := AP_WEB_DB_AP_INT_PKG.InsertInvoiceInterface(
308: l_invoice_id,
309: l_party_id,

Line 325: FND_FILE.PUT_LINE( FND_FILE.LOG, 'A record with invoice id = ' || l_invoice_id || ' is created' );

321: l_terms_id);
322:
323: p_invoiceID := l_invoice_id;
324:
325: FND_FILE.PUT_LINE( FND_FILE.LOG, 'A record with invoice id = ' || l_invoice_id || ' is created' );
326: FND_MESSAGE.SET_NAME( 'SQLAP', 'AP_CARD_NEW_INVOICE_ACK' );
327: FND_MESSAGE.SET_TOKEN( 'INVOICE_ID', l_invoice_id );
328: FND_FILE.PUT_LINE( FND_FILE.OUTPUT, FND_MESSAGE.get );
329:

Line 328: FND_FILE.PUT_LINE( FND_FILE.OUTPUT, FND_MESSAGE.get );

324:
325: FND_FILE.PUT_LINE( FND_FILE.LOG, 'A record with invoice id = ' || l_invoice_id || ' is created' );
326: FND_MESSAGE.SET_NAME( 'SQLAP', 'AP_CARD_NEW_INVOICE_ACK' );
327: FND_MESSAGE.SET_TOKEN( 'INVOICE_ID', l_invoice_id );
328: FND_FILE.PUT_LINE( FND_FILE.OUTPUT, FND_MESSAGE.get );
329:
330: ------------------------------------------------------------------------
331: l_debugInfo := 'Submitting Payment Request';
332: fnd_file.put_line(fnd_file.log, l_debugInfo);

Line 332: fnd_file.put_line(fnd_file.log, l_debugInfo);

328: FND_FILE.PUT_LINE( FND_FILE.OUTPUT, FND_MESSAGE.get );
329:
330: ------------------------------------------------------------------------
331: l_debugInfo := 'Submitting Payment Request';
332: fnd_file.put_line(fnd_file.log, l_debugInfo);
333: ------------------------------------------------------------------------
334:
335: AP_IMPORT_INVOICES_PKG.g_debug_switch := 'Y';
336:

Line 374: fnd_file.put_line(fnd_file.log, l_debugInfo);

370: */
371:
372: FOR i in l_rejection_list.FIRST .. l_rejection_list.LAST LOOP
373: l_debugInfo := i||' Errors found interfacing data to AP ...';
374: fnd_file.put_line(fnd_file.log, l_debugInfo);
375: l_debugInfo := l_rejection_list(i).reject_lookup_code;
376: fnd_file.put_line(fnd_file.log, l_debugInfo);
377: END LOOP;
378:

Line 376: fnd_file.put_line(fnd_file.log, l_debugInfo);

372: FOR i in l_rejection_list.FIRST .. l_rejection_list.LAST LOOP
373: l_debugInfo := i||' Errors found interfacing data to AP ...';
374: fnd_file.put_line(fnd_file.log, l_debugInfo);
375: l_debugInfo := l_rejection_list(i).reject_lookup_code;
376: fnd_file.put_line(fnd_file.log, l_debugInfo);
377: END LOOP;
378:
379: COMMIT;
380: