DBA Data[Home] [Help]

APPS.JL_AR_RECEIVABLE_APPLICATIONS dependencies on FND_GLOBAL

Line 259: fnd_global.user_id,

255: x_writeoff_amount ))
256: THEN
257: fnd_file.put_line(fnd_file.log,'Before adjustment generation(1)');
258: adjustment_generation (
259: fnd_global.user_id,
260: x_calc_interest_rectrx_id,
261: x_calc_interest_ccid,
262: x_calculated_interest,
263: x_rcpt_date,

Line 271: fnd_global.user_id,

267: );
268:
269: fnd_file.put_line(fnd_file.log,'Before adjustment generation(2)');
270: adjustment_generation (
271: fnd_global.user_id,
272: x_writeoff_rectrx_id,
273: x_writeoff_ccid,
274: x_received_interest - x_calculated_interest,
275: x_rcpt_date,

Line 283: fnd_global.user_id,

279: );
280: ELSE
281: fnd_file.put_line(fnd_file.log,'Before adjustment generation(3)');
282: adjustment_generation (
283: fnd_global.user_id,
284: x_calc_interest_rectrx_id,
285: x_calc_interest_ccid,
286: x_received_interest,
287: x_rcpt_date,

Line 294: fnd_global.user_id,

290: x_customer_trx_id
291: );
292: fnd_file.put_line(fnd_file.log,'Before adjustment generation(4)');
293: adjustment_generation (
294: fnd_global.user_id,
295: x_calc_interest_rectrx_id,
296: x_calc_interest_ccid,
297: x_calculated_interest - x_received_interest,
298: x_rcpt_date,

Line 305: fnd_global.user_id,

301: x_customer_trx_id
302: );
303: fnd_file.put_line(fnd_file.log,'Before adjustment generation(5)');
304: adjustment_generation (
305: fnd_global.user_id,
306: x_writeoff_rectrx_id,
307: x_writeoff_ccid,
308: x_received_interest - x_calculated_interest,
309: x_rcpt_date,

Line 320: fnd_global.user_id,

316:
317: elsif NVL(x_interest_difference_action,'$') = 'GENERATE_IDM' then
318: fnd_file.put_line(fnd_file.log,'Before generate idm');
319: adjustment_generation (
320: fnd_global.user_id,
321: x_calc_interest_rectrx_id,
322: x_calc_interest_ccid,
323: x_received_interest,
324: x_rcpt_date,

Line 400: fnd_global.user_id,

396: x_writeoff_amount ))
397: THEN
398: fnd_file.put_line(fnd_file.log,'Before adjustment generation 6');
399: adjustment_generation (
400: fnd_global.user_id,
401: x_calc_interest_rectrx_id,
402: x_calc_interest_ccid,
403: x_calculated_interest,
404: x_rcpt_date,

Line 412: fnd_global.user_id,

408:
409: fnd_file.put_line(fnd_file.log,'Before adjustment generation 7');
410: fnd_file.put_line(fnd_file.log,'After 1st adjustment');
411: adjustment_generation (
412: fnd_global.user_id,
413: x_writeoff_rectrx_id,
414: x_writeoff_ccid,
415: x_received_interest - x_calculated_interest,
416: x_rcpt_date,

Line 430: fnd_global.user_id,

426: ELSE
427: IF nvl(x_received_interest,0) > 0 THEN
428: fnd_file.put_line(fnd_file.log,'Before adjustment generation 8');
429: adjustment_generation (
430: fnd_global.user_id,
431: x_calc_interest_rectrx_id,
432: x_calc_interest_ccid,
433: x_received_interest,
434: x_rcpt_date,

Line 483: fnd_global.user_id,

479: BEGIN
480: IF NVL(x_calculated_interest ,0) > 0 THEN
481: fnd_file.put_line(fnd_file.log,'Before adjustment generation 9');
482: adjustment_generation (
483: fnd_global.user_id,
484: x_calc_interest_rectrx_id,
485: x_calc_interest_ccid,
486: x_calculated_interest ,
487: x_rcpt_date,

Line 494: fnd_global.user_id,

490: x_customer_trx_id );
491: END IF;
492: fnd_file.put_line(fnd_file.log,'Before adjustment generation 10');
493: adjustment_generation (
494: fnd_global.user_id,
495: x_int_revenue_rectrx_id,
496: x_int_revenue_ccid,
497: x_received_interest - x_calculated_interest ,
498: x_rcpt_date,

Line 521: fnd_global.user_id,

517: x_customer_trx_id IN NUMBER) IS
518: BEGIN
519: fnd_file.put_line(fnd_file.log,'Before adjustment generation 11');
520: adjustment_generation (
521: fnd_global.user_id,
522: x_calc_interest_rectrx_id,
523: x_calc_interest_ccid,
524: x_calculated_interest ,
525: x_rcpt_date,

Line 961: fnd_global.user_id,

957: p_receipt_method_id,
958: x_trx_type_idm,
959: x_batch_source_idm,
960: x_receipt_method_idm,
961: fnd_global.user_id,
962: p_remittance_bank_account_id,
963: p_global_attribute8);
964:
965: ELSE

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

1532: /* ---------------------------------------------------------------------- */
1533: /* Interest Treatment */
1534: /* ---------------------------------------------------------------------- */
1535: fnd_file.put_line(fnd_file.log,'Before get_idm_profiles');
1536: fnd_file.put_line(fnd_file.log,'User Id '||to_char(fnd_global.user_id));
1537:
1538: JL_ZZ_AR_LIBRARY_1_PKG.get_idm_profiles_from_syspa (
1539: l_trx_type_idm,
1540: l_batch_source_idm,

Line 1584: fnd_global.user_id,

1580: rint.receipt_method_id,
1581: l_trx_type_idm,
1582: l_batch_source_idm,
1583: l_receipt_method_idm,
1584: fnd_global.user_id,
1585: rint.remit_bank_acct_use_id,
1586: l_writeoff_date);
1587:
1588: fnd_file.put_line(fnd_file.log,'After interest_treatment');