DBA Data[Home] [Help]

APPS.JAI_RCV_TAX_PKG dependencies on JAI_CMN_UTILS_PKG

Line 2844: jai_cmn_utils_pkg.print_log('utils.log','lt_tax_amt_rate_tax_tab(I) = ' || lt_tax_amt_rate_tax_tab(I));

2840: END LOOP;
2841:
2842: FOR I IN 1 .. ROW_COUNT --Compute Factor
2843: LOOP
2844: jai_cmn_utils_pkg.print_log('utils.log','lt_tax_amt_rate_tax_tab(I) = ' || lt_tax_amt_rate_tax_tab(I));
2845: jai_cmn_utils_pkg.print_log('utils.log','lt_tax_amt_non_rate_tab(I) = ' || lt_tax_amt_non_rate_tab(I));
2846: jai_cmn_utils_pkg.print_log('utils.log','inclu flag = ' || lt_inclusive_tax_tab(I));
2847: IF lt_inclusive_tax_tab(I) = 'Y'
2848: THEN

Line 2845: jai_cmn_utils_pkg.print_log('utils.log','lt_tax_amt_non_rate_tab(I) = ' || lt_tax_amt_non_rate_tab(I));

2841:
2842: FOR I IN 1 .. ROW_COUNT --Compute Factor
2843: LOOP
2844: jai_cmn_utils_pkg.print_log('utils.log','lt_tax_amt_rate_tax_tab(I) = ' || lt_tax_amt_rate_tax_tab(I));
2845: jai_cmn_utils_pkg.print_log('utils.log','lt_tax_amt_non_rate_tab(I) = ' || lt_tax_amt_non_rate_tab(I));
2846: jai_cmn_utils_pkg.print_log('utils.log','inclu flag = ' || lt_inclusive_tax_tab(I));
2847: IF lt_inclusive_tax_tab(I) = 'Y'
2848: THEN
2849: ln_total_tax_per_rupee := ln_total_tax_per_rupee + nvl(lt_tax_amt_rate_tax_tab(I),0) ;

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

2842: FOR I IN 1 .. ROW_COUNT --Compute Factor
2843: LOOP
2844: jai_cmn_utils_pkg.print_log('utils.log','lt_tax_amt_rate_tax_tab(I) = ' || lt_tax_amt_rate_tax_tab(I));
2845: jai_cmn_utils_pkg.print_log('utils.log','lt_tax_amt_non_rate_tab(I) = ' || lt_tax_amt_non_rate_tab(I));
2846: jai_cmn_utils_pkg.print_log('utils.log','inclu flag = ' || lt_inclusive_tax_tab(I));
2847: IF lt_inclusive_tax_tab(I) = 'Y'
2848: THEN
2849: ln_total_tax_per_rupee := ln_total_tax_per_rupee + nvl(lt_tax_amt_rate_tax_tab(I),0) ;
2850: ln_total_non_rate_tax := ln_total_non_rate_tax + nvl(lt_tax_amt_non_rate_tab(I),0);

Line 2860: jai_cmn_utils_pkg.print_log('utils.log','tot tax per rupee = ' || ln_total_tax_per_rupee

2856: IF ln_total_tax_per_rupee <> 0
2857: THEN
2858: ln_exclusive_price := (NVL(v_precedence_0,0) - ln_total_non_rate_tax ) / ln_total_tax_per_rupee;
2859: END If;
2860: jai_cmn_utils_pkg.print_log('utils.log','tot tax per rupee = ' || ln_total_tax_per_rupee
2861: || 'totl non tax = ' || ln_total_non_rate_tax );
2862: jai_cmn_utils_pkg.print_log('utils.log','incl sp = ' || v_precedence_0 || 'excl price = ' || ln_exclusive_price);
2863:
2864: FOR i in 1 .. row_count --Compute Tax Amount

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

2858: ln_exclusive_price := (NVL(v_precedence_0,0) - ln_total_non_rate_tax ) / ln_total_tax_per_rupee;
2859: END If;
2860: jai_cmn_utils_pkg.print_log('utils.log','tot tax per rupee = ' || ln_total_tax_per_rupee
2861: || 'totl non tax = ' || ln_total_non_rate_tax );
2862: jai_cmn_utils_pkg.print_log('utils.log','incl sp = ' || v_precedence_0 || 'excl price = ' || ln_exclusive_price);
2863:
2864: FOR i in 1 .. row_count --Compute Tax Amount
2865: Loop
2866: tax_amt_tab (i) := (lt_tax_amt_rate_tax_tab(I) * ln_exclusive_price ) + lt_tax_amt_non_rate_tab(I);

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

2864: FOR i in 1 .. row_count --Compute Tax Amount
2865: Loop
2866: tax_amt_tab (i) := (lt_tax_amt_rate_tax_tab(I) * ln_exclusive_price ) + lt_tax_amt_non_rate_tab(I);
2867: tax_amt_tab(I) := round(tax_amt_tab(I) ,round_factor_tab(I));
2868: jai_cmn_utils_pkg.print_log('utils.log','in final loop , tax amt is ' ||tax_amt_tab(I));
2869: END LOOP; --End Compute Tax Amount
2870: --------------------------------------------------------------------------------------------------------
2871: FOR i in 1.. lt_tax_table.count LOOP
2872: po_lines_rec := lt_tax_table(i);