DBA Data[Home] [Help]

APPS.JAI_AP_RPT_APCR_PKG dependencies on FND_FILE

Line 428: fnd_file.put_line(FND_FILE.LOG, 'invoice amt- LOSS : '|| v_invoice_amount);

424: Added the logic for LOSS Lines */
425: If inv_rec.invoice_type_lookup_code ='LOSS' Then
426:
427: v_invoice_amount := nvl(inv_rec.acct_cr,0);
428: fnd_file.put_line(FND_FILE.LOG, 'invoice amt- LOSS : '|| v_invoice_amount);
429:
430: Else
431:
432:

Line 442: fnd_file.put_line(FND_FILE.LOG, 'invoice amt'|| v_invoice_amount);

438: inv_rec.exchange_rate_type,
439: inv_rec.exchange_rate );
440:
441: v_invoice_amount := NVL(inv_rec.credit_val, 0) * NVL(v_exchange_rate, 1);
442: fnd_file.put_line(FND_FILE.LOG, 'invoice amt'|| v_invoice_amount);
443: ELSE
444: v_invoice_amount := NVL(inv_rec.credit_val, 0) ;
445: END IF;
446: