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 4574: l_btlv_tbl_in(1).trx_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(

4570:
4571: IF l_tot_amt = 0 THEN
4572: l_btlv_tbl_in(1).trx_amount := 0;
4573: ELSE
4574: l_btlv_tbl_in(1).trx_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(
4575: ((nvl(l_btl_rec.trx_amount,0)/l_tot_amt ) *
4576: nvl(p_new_cp_lvl_tbl(l_index).amount,0)),
4577: p_currency_code) ;
4578: END IF;

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

4583: ELSIF l_btl_rec.trx_line_tax_amount IS NULL THEN
4584: l_btlv_tbl_in(1).trx_line_tax_amount := NULL;
4585:
4586: ELSE
4587: l_btlv_tbl_in(1).trx_line_tax_amount := OKS_EXTWAR_UTIL_PVT.round_currency_amt(
4588: ((nvl(l_btl_rec.trx_line_tax_amount,0)/l_tot_amt ) *
4589: nvl(p_new_cp_lvl_tbl(l_index).amount,0)),
4590: p_currency_code) ;
4591: END IF;