DBA Data[Home] [Help]

APPS.PA_PLAN_REVENUE dependencies on PA_CURRENCY

Line 2308: l_txn_burden_cost := pa_currency.round_trans_currency_amt(

2304: -- Get Burden Cost and rate from Raw Cost and Quantity.
2305: -------------------------------------------------------
2306: ELSE
2307:
2308: l_txn_burden_cost := pa_currency.round_trans_currency_amt(
2309: l_raw_cost * NVL(l_txn_burden_multiplier,0),NVL(l_txn_curr_code,p_override_txn_currency_code )) +
2310: l_raw_cost ;
2311:
2312: /*bug3749153 no need to compute the burden cost rate if it equals raw_cost_rate */

Line 3813: l_txn_burden_cost := pa_currency.round_trans_currency_amt( l_raw_cost * NVL(l_txn_burden_multiplier,0),NVL(l_txn_curr_code,p_override_txn_currency_code )) + l_raw_cost ;

3809: -------------------------------------------------------
3810: -- Get Burden Cost and rate from Raw Cost and Quantity.
3811: -------------------------------------------------------
3812: ELSE
3813: l_txn_burden_cost := pa_currency.round_trans_currency_amt( l_raw_cost * NVL(l_txn_burden_multiplier,0),NVL(l_txn_curr_code,p_override_txn_currency_code )) + l_raw_cost ;
3814: /*bug3749153 no need to compute the burden cost rate if it equals raw_cost_rate */
3815: IF l_txn_burden_cost = l_raw_cost THEN
3816: l_txn_burden_cost_rate := l_cost_rate;
3817: ELSE