DBA Data[Home] [Help]

APPS.OKS_BILL_UTIL_PUB dependencies on OKS_EXTWAR_UTIL_PVT

Line 405: l_round_sll_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_sll_amount, l_currency_code);

401: END LOOP;
402: l_tot_frequency := l_tot_frequency + l_curr_frequency + l_next_frequency;
403:
404: l_sll_amount := ( l_sll_remain_amount / nvl(l_tot_frequency,1)) * nvl(l_curr_frequency,0) ;
405: l_round_sll_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_sll_amount, l_currency_code);
406: l_round_sll_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_round_sll_amount, l_currency_code);
407:
408: l_sll_remain_amount := l_sll_remain_amount - l_round_sll_amount;
409:

Line 406: l_round_sll_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_round_sll_amount, l_currency_code);

402: l_tot_frequency := l_tot_frequency + l_curr_frequency + l_next_frequency;
403:
404: l_sll_amount := ( l_sll_remain_amount / nvl(l_tot_frequency,1)) * nvl(l_curr_frequency,0) ;
405: l_round_sll_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_sll_amount, l_currency_code);
406: l_round_sll_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_round_sll_amount, l_currency_code);
407:
408: l_sll_remain_amount := l_sll_remain_amount - l_round_sll_amount;
409:
410: -- l_sll_remain_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_sll_remain_amount, l_currency_code);

Line 410: -- l_sll_remain_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_sll_remain_amount, l_currency_code);

406: l_round_sll_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_round_sll_amount, l_currency_code);
407:
408: l_sll_remain_amount := l_sll_remain_amount - l_round_sll_amount;
409:
410: -- l_sll_remain_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(l_sll_remain_amount, l_currency_code);
411:
412: p_sll_prorated_tab(i).sll_amount := l_round_sll_amount;
413: l_curr_frequency := 0;
414: END LOOP;

Line 5068: l_btlv_tbl_in(1).trx_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(

5064:
5065: IF l_tot_amt = 0 THEN
5066: l_btlv_tbl_in(1).trx_amount := 0;
5067: ELSE
5068: l_btlv_tbl_in(1).trx_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(
5069: ((nvl(l_btl_rec.trx_amount,0)/l_tot_amt ) *
5070: nvl(p_new_cp_lvl_tbl(l_index).amount,0)),
5071: p_currency_code) ;
5072: END IF;

Line 5081: l_btlv_tbl_in(1).trx_line_tax_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(

5077: ELSIF l_btl_rec.trx_line_tax_amount IS NULL THEN
5078: l_btlv_tbl_in(1).trx_line_tax_amount := NULL;
5079:
5080: ELSE
5081: l_btlv_tbl_in(1).trx_line_tax_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(
5082: ((nvl(l_btl_rec.trx_line_tax_amount,0)/l_tot_amt ) *
5083: nvl(p_new_cp_lvl_tbl(l_index).amount,0)),
5084: p_currency_code) ;
5085: END IF;