DBA Data[Home] [Help]

APPS.JAI_AR_UTILS_PKG dependencies on JAI_CMN_UTILS_PKG

Line 1229: jai_cmn_utils_pkg.print_log('utils.log','tax_amt_rate_tax_tab(I) = ' || tax_amt_rate_tax_tab(I));

1225: -- and calculation final tax amount
1226: -----------------------------------------------------------------------
1227: FOR I IN 1 .. row_count
1228: LOOP
1229: jai_cmn_utils_pkg.print_log('utils.log','tax_amt_rate_tax_tab(I) = ' || tax_amt_rate_tax_tab(I));
1230: jai_cmn_utils_pkg.print_log('utils.log','tax_amt_non_rate_tab(I) = ' || tax_amt_non_rate_tab(I));
1231: jai_cmn_utils_pkg.print_log('utils.log','inclu flag = ' || inclu_tax_tab(I));
1232:
1233: IF inclu_tax_tab(I) = 'Y'

Line 1230: jai_cmn_utils_pkg.print_log('utils.log','tax_amt_non_rate_tab(I) = ' || tax_amt_non_rate_tab(I));

1226: -----------------------------------------------------------------------
1227: FOR I IN 1 .. row_count
1228: LOOP
1229: jai_cmn_utils_pkg.print_log('utils.log','tax_amt_rate_tax_tab(I) = ' || tax_amt_rate_tax_tab(I));
1230: jai_cmn_utils_pkg.print_log('utils.log','tax_amt_non_rate_tab(I) = ' || tax_amt_non_rate_tab(I));
1231: jai_cmn_utils_pkg.print_log('utils.log','inclu flag = ' || inclu_tax_tab(I));
1232:
1233: IF inclu_tax_tab(I) = 'Y'
1234: THEN

Line 1231: jai_cmn_utils_pkg.print_log('utils.log','inclu flag = ' || inclu_tax_tab(I));

1227: FOR I IN 1 .. row_count
1228: LOOP
1229: jai_cmn_utils_pkg.print_log('utils.log','tax_amt_rate_tax_tab(I) = ' || tax_amt_rate_tax_tab(I));
1230: jai_cmn_utils_pkg.print_log('utils.log','tax_amt_non_rate_tab(I) = ' || tax_amt_non_rate_tab(I));
1231: jai_cmn_utils_pkg.print_log('utils.log','inclu flag = ' || inclu_tax_tab(I));
1232:
1233: IF inclu_tax_tab(I) = 'Y'
1234: THEN
1235: ln_total_tax_per_rupee := ln_total_tax_per_rupee + NVL(tax_amt_rate_tax_tab(I),0) ;

Line 1247: jai_cmn_utils_pkg.print_log('utils.log','tot tax per rupee = ' || ln_total_tax_per_rupee || ' totl non tax = ' || ln_total_non_rate_tax );

1243: THEN
1244: ln_exclusive_price := (NVL(p_tax_amount,0) - ln_total_non_rate_tax) / ln_total_tax_per_rupee;
1245: END If;
1246:
1247: jai_cmn_utils_pkg.print_log('utils.log','tot tax per rupee = ' || ln_total_tax_per_rupee || ' totl non tax = ' || ln_total_non_rate_tax );
1248: jai_cmn_utils_pkg.print_log('utils.log','incl sp = ' || p_tax_amount || 'excl price = ' || ln_exclusive_price);
1249:
1250: FOR I IN 1 .. row_count
1251: LOOP

Line 1248: jai_cmn_utils_pkg.print_log('utils.log','incl sp = ' || p_tax_amount || 'excl price = ' || ln_exclusive_price);

1244: ln_exclusive_price := (NVL(p_tax_amount,0) - ln_total_non_rate_tax) / ln_total_tax_per_rupee;
1245: END If;
1246:
1247: jai_cmn_utils_pkg.print_log('utils.log','tot tax per rupee = ' || ln_total_tax_per_rupee || ' totl non tax = ' || ln_total_non_rate_tax );
1248: jai_cmn_utils_pkg.print_log('utils.log','incl sp = ' || p_tax_amount || 'excl price = ' || ln_exclusive_price);
1249:
1250: FOR I IN 1 .. row_count
1251: LOOP
1252: -- Commented out by Shyan for bug 10358786 on 28-Jan-2011 , Begin

Line 1415: jai_cmn_utils_pkg.print_log('utils.log','in final loop , tax amt is ' ||tax_amt_tab(I));

1411: ------------------------------------------------------------------
1412: -- Added by Shyan for bug 10358786 on 28-Jan-2011 , End
1413:
1414: base_tax_amt_tab(I):=ln_exclusive_price*base_tax_amt_tab(I)+base_tax_amount_nr_tab(i); --Added by walton for bug#9080017
1415: jai_cmn_utils_pkg.print_log('utils.log','in final loop , tax amt is ' ||tax_amt_tab(I));
1416: END LOOP;
1417: -----------------------------------------------------------------------
1418: -- Added by Jia Li for Tax Inclusive Computations on 2007/12/11, End
1419: