DBA Data[Home] [Help]

APPS.JL_AR_RECEIVABLE_APPLICATIONS dependencies on FND_GLOBAL

Line 373: fnd_global.user_id,

369: x_writeoff_amount ))
370: THEN
371: fnd_file.put_line(fnd_file.log,'Before adjustment generation(1)');
372: adjustment_generation (
373: fnd_global.user_id,
374: x_calc_interest_rectrx_id,
375: x_calc_interest_ccid,
376: x_calculated_interest,
377: x_rcpt_date,

Line 385: fnd_global.user_id,

381: );
382:
383: fnd_file.put_line(fnd_file.log,'Before adjustment generation(2)');
384: adjustment_generation (
385: fnd_global.user_id,
386: x_writeoff_rectrx_id,
387: x_writeoff_ccid,
388: x_received_interest - x_calculated_interest,
389: x_rcpt_date,

Line 397: fnd_global.user_id,

393: );
394: ELSE
395: fnd_file.put_line(fnd_file.log,'Before adjustment generation(3)');
396: adjustment_generation (
397: fnd_global.user_id,
398: x_calc_interest_rectrx_id,
399: x_calc_interest_ccid,
400: x_received_interest,
401: x_rcpt_date,

Line 408: fnd_global.user_id,

404: x_customer_trx_id
405: );
406: fnd_file.put_line(fnd_file.log,'Before adjustment generation(4)');
407: adjustment_generation (
408: fnd_global.user_id,
409: x_calc_interest_rectrx_id,
410: x_calc_interest_ccid,
411: x_calculated_interest - x_received_interest,
412: x_rcpt_date,

Line 419: fnd_global.user_id,

415: x_customer_trx_id
416: );
417: fnd_file.put_line(fnd_file.log,'Before adjustment generation(5)');
418: adjustment_generation (
419: fnd_global.user_id,
420: x_writeoff_rectrx_id,
421: x_writeoff_ccid,
422: x_received_interest - x_calculated_interest,
423: x_rcpt_date,

Line 434: fnd_global.user_id,

430:
431: elsif NVL(x_interest_difference_action,'$') = 'GENERATE_IDM' then
432: fnd_file.put_line(fnd_file.log,'Before generate idm');
433: adjustment_generation (
434: fnd_global.user_id,
435: x_calc_interest_rectrx_id,
436: x_calc_interest_ccid,
437: x_received_interest,
438: x_rcpt_date,

Line 514: fnd_global.user_id,

510: x_writeoff_amount ))
511: THEN
512: fnd_file.put_line(fnd_file.log,'Before adjustment generation 6');
513: adjustment_generation (
514: fnd_global.user_id,
515: x_calc_interest_rectrx_id,
516: x_calc_interest_ccid,
517: x_calculated_interest,
518: x_rcpt_date,

Line 526: fnd_global.user_id,

522:
523: fnd_file.put_line(fnd_file.log,'Before adjustment generation 7');
524: fnd_file.put_line(fnd_file.log,'After 1st adjustment');
525: adjustment_generation (
526: fnd_global.user_id,
527: x_writeoff_rectrx_id,
528: x_writeoff_ccid,
529: x_received_interest - x_calculated_interest,
530: x_rcpt_date,

Line 544: fnd_global.user_id,

540: ELSE
541: IF nvl(x_received_interest,0) > 0 THEN
542: fnd_file.put_line(fnd_file.log,'Before adjustment generation 8');
543: adjustment_generation (
544: fnd_global.user_id,
545: x_calc_interest_rectrx_id,
546: x_calc_interest_ccid,
547: x_received_interest,
548: x_rcpt_date,

Line 597: fnd_global.user_id,

593: BEGIN
594: IF NVL(x_calculated_interest ,0) > 0 THEN
595: fnd_file.put_line(fnd_file.log,'Before adjustment generation 9');
596: adjustment_generation (
597: fnd_global.user_id,
598: x_calc_interest_rectrx_id,
599: x_calc_interest_ccid,
600: x_calculated_interest ,
601: x_rcpt_date,

Line 608: fnd_global.user_id,

604: x_customer_trx_id );
605: END IF;
606: fnd_file.put_line(fnd_file.log,'Before adjustment generation 10');
607: adjustment_generation (
608: fnd_global.user_id,
609: x_int_revenue_rectrx_id,
610: x_int_revenue_ccid,
611: x_received_interest - x_calculated_interest ,
612: x_rcpt_date,

Line 635: fnd_global.user_id,

631: x_customer_trx_id IN NUMBER) IS
632: BEGIN
633: fnd_file.put_line(fnd_file.log,'Before adjustment generation 11');
634: adjustment_generation (
635: fnd_global.user_id,
636: x_calc_interest_rectrx_id,
637: x_calc_interest_ccid,
638: x_calculated_interest ,
639: x_rcpt_date,

Line 1075: fnd_global.user_id,

1071: p_receipt_method_id,
1072: x_trx_type_idm,
1073: x_batch_source_idm,
1074: x_receipt_method_idm,
1075: fnd_global.user_id,
1076: p_remittance_bank_account_id,
1077: p_global_attribute8);
1078:
1079: ELSE

Line 1650: fnd_file.put_line(fnd_file.log,'User Id '||to_char(fnd_global.user_id));

1646: /* ---------------------------------------------------------------------- */
1647: /* Interest Treatment */
1648: /* ---------------------------------------------------------------------- */
1649: fnd_file.put_line(fnd_file.log,'Before get_idm_profiles');
1650: fnd_file.put_line(fnd_file.log,'User Id '||to_char(fnd_global.user_id));
1651:
1652: JL_ZZ_AR_LIBRARY_1_PKG.get_idm_profiles_from_syspa (
1653: l_trx_type_idm,
1654: l_batch_source_idm,

Line 1698: fnd_global.user_id,

1694: rint.receipt_method_id,
1695: l_trx_type_idm,
1696: l_batch_source_idm,
1697: l_receipt_method_idm,
1698: fnd_global.user_id,
1699: rint.remit_bank_acct_use_id,
1700: l_writeoff_date);
1701:
1702: fnd_file.put_line(fnd_file.log,'After interest_treatment');