DBA Data[Home] [Help]

APPS.AR_LL_RCV_SUMMARY_PKG dependencies on STANDARD

Line 257: arp_standard.debug ('Error in calcuating the total of all rows', 'plsql',

253: and line.customer_trx_line_id = tax.link_to_cust_trx_line_id (+)
254: ;
255: exception
256: when others then
257: arp_standard.debug ('Error in calcuating the total of all rows', 'plsql',
258: 'AR_LL_RCV_SUMMARY_PKG.INSERT_ROW', 1);
259: raise ;
260: end;
261: for lintax_row in c_lintax loop

Line 265: arp_standard.debug ('i='||to_char(iterator)||'.'|| 'THIS IS THE LAST. line_run_tot=' || line_run_tot);

261: for lintax_row in c_lintax loop
262:
263: -- Prorate the Line Amount
264: if iterator = line_count then
265: arp_standard.debug ('i='||to_char(iterator)||'.'|| 'THIS IS THE LAST. line_run_tot=' || line_run_tot);
266: line_2b_applied := nvl(x_lin,0) - line_run_tot;
267: tax_2b_applied := nvl(x_tax,0) - tax_run_tot;
268:
269: -- Added Dec 7, 2005 - Bug 4775656. Discounts are not getting saved from Summary

Line 275: arp_standard.debug ('i='||to_char(iterator)||'.'||

271: taxdsc_2b_applied := nvl(x_tax_dsc,0) - taxdsc_run_tot;
272: -- End of additions for bug 4775656
273: else -- If the adr on the invoice is zero, then
274: if all_linrem_tot > 0 then
275: arp_standard.debug ('i='||to_char(iterator)||'.'||
276: 'NOT LAST, all_linrem_tot<>0. line_run_tot=' || line_run_tot
277: || '. all_linorig_tot=' || all_linorig_tot);
278: --line_2b_applied := arpcurr.currRound(lintax_row.line_rem * nvl(x_lin,0) / all_linrem_tot);
279: x_run_line_amt := x_run_line_amt + lintax_row.line_rem;

Line 283: arp_standard.debug ('i='||to_char(iterator)||'.'||

279: x_run_line_amt := x_run_line_amt + lintax_row.line_rem;
280: line_2b_applied := arpcurr.currRound(x_run_line_amt * nvl(x_lin,0) / all_linrem_tot) - line_run_tot;
281: else -- Overappl (all_linrem_tot < 0) should be done at the UI level,
282: -- so this means all_linrem_tot = 0
283: arp_standard.debug ('i='||to_char(iterator)||'.'||
284: 'NOT LAST, all_linrem_tot=0. line_run_tot=' || line_run_tot
285: || '. all_linorig_tot=' || all_linorig_tot);
286: if all_linorig_tot <> 0 then
287: --line_2b_applied := arpcurr.currRound(lintax_row.line_orig * nvl(x_lin,0) / all_linorig_tot);

Line 332: arp_standard.debug ('i='||to_char(iterator)||'.'||

328: end if;
329:
330: -- Calculate the Allocated Receipt Amount for the line
331: cross_currency_2b_applied := arp_util.currRound((line_2b_applied+tax_2b_applied) * nvl(x_inv_to_rct_rate,1), x_rct_curr_code);
332: arp_standard.debug ('i='||to_char(iterator)||'.'||
333: 'line_amount='||to_char(line_2b_applied)||'.'||
334: 'tax_amount='||to_char(tax_2b_applied)||'.'||
335: 'alloc_rct_amt='||to_char(cross_currency_2b_applied)||'.'
336: , 'plsql',

Line 504: arp_standard.debug ('Error in calcuating the total of all rows', 'plsql',

500: and line.line_type = 'FREIGHT'
501: ;
502: exception
503: when others then
504: arp_standard.debug ('Error in calcuating the total of all rows', 'plsql',
505: 'AR_LL_RCV_SUMMARY_PKG.INSERT_ROW', 1);
506: raise ;
507: end;
508: for frt_row in c_frt loop

Line 530: arp_standard.debug ('i='||to_char(iterator)||'.'||

526: frtdsc_2b_applied := arpcurr.currRound(x_frt_dsc * nvl(frt_2b_applied,0) / nvl(x_frt,0) );
527: else
528: frtdsc_2b_applied := 0;
529: end if;
530: arp_standard.debug ('i='||to_char(iterator)||'.'||
531: 'frt_amount='||to_char(frt_2b_applied)||'.'||
532: 'frt_discount='||to_char(frtdsc_2b_applied)||'.'
533: , 'plsql',
534: 'AR_LL_RCV_SUMMARY_PKG.INSERT_ROW', 1);

Line 542: arp_standard.debug ('i='||to_char(iterator)||'.'||

538: FROM DUAL;
539:
540: -- Calculate the Allocated Receipt Amount for the line
541: cross_currency_2b_applied := arp_util.currRound((frt_2b_applied) * nvl(x_inv_to_rct_rate,1), x_rct_curr_code);
542: arp_standard.debug ('i='||to_char(iterator)||'.'||
543: 'frt_amount='||to_char(frt_2b_applied)||'.'||
544: 'alloc_rct_amt='||to_char(cross_currency_2b_applied)||'.'
545: , 'plsql',
546: 'AR_LL_RCV_SUMMARY_PKG.INSERT_ROW', 1);

Line 703: arp_standard.debug ('Error in calcuating the total of all rows', 'plsql',

699: and line.line_type = 'CHARGES'
700: ;
701: exception
702: when others then
703: arp_standard.debug ('Error in calcuating the total of all rows', 'plsql',
704: 'AR_LL_RCV_SUMMARY_PKG.INSERT_ROW', 1);
705: raise ;
706: end;
707: for chg_row in c_chg loop

Line 722: arp_standard.debug ('i='||to_char(iterator)||'.'||

718: chg_2b_applied := 0;
719: end if;
720: end if;
721: end if;
722: arp_standard.debug ('i='||to_char(iterator)||'.'||
723: 'chg_amount='||to_char(chg_2b_applied)||'.'
724: , 'plsql',
725: 'AR_LL_RCV_SUMMARY_PKG.INSERT_ROW', 1);
726:

Line 735: arp_standard.debug ('i='||to_char(iterator)||'.'||

731:
732: -- Calculate the Allocated Receipt Amount for the line
733: cross_currency_2b_applied := arp_util.currRound((chg_2b_applied) *
734: nvl(x_inv_to_rct_rate,1), x_rct_curr_code);
735: arp_standard.debug ('i='||to_char(iterator)||'.'||
736: 'chg_amount='||to_char(chg_2b_applied)||'.'||
737: 'alloc_rct_amt='||to_char(cross_currency_2b_applied)||'.'
738: , 'plsql',
739: 'AR_LL_RCV_SUMMARY_PKG.INSERT_ROW', 1);