DBA Data[Home] [Help]

APPS.PA_CC_TRANSFER_PRICE dependencies on PA_CURRENCY

Line 1487: pa_currency.round_currency_amt(x_denom_transfer_price(i)

1483: IF (x_acct_tp_rate_type(i) = 'User' AND
1484: x_acct_tp_exchange_rate(i) IS NOT NULL) THEN
1485: -- Do the conversion using the rate
1486: x_acct_transfer_price(i):=
1487: pa_currency.round_currency_amt(x_denom_transfer_price(i)
1488: *x_acct_tp_exchange_rate(i));
1489: ELSE
1490: IF (x_acct_tp_rate_type(i) IS NOT NULL
1491: AND x_acct_tp_rate_date(i) IS NOT NULL) THEN

Line 1588: pa_currency.round_currency_amt(

1584: IF (l_rate_type = 'User' and l_exchange_rate IS NOT NULL)
1585: THEN
1586: -- Do the conversion using the rate
1587: l_acct_transfer_price :=
1588: pa_currency.round_currency_amt(
1589: x_denom_transfer_price(i)*l_exchange_rate);
1590:
1591: ELSIF (l_rate_type IS NOT NULL and l_new_rate_date IS
1592: NOT NULL and l_error_message IS NULL) THEN

Line 1749: pa_currency.round_trans_currency_amt

1745:
1746: IF (l_project_bil_exchange_rate IS NOT NULL) THEN
1747:
1748: l_project_transfer_price:=
1749: pa_currency.round_trans_currency_amt
1750: (x_denom_transfer_price(i)*l_project_bil_exchange_rate,
1751: p_project_currency_code(i));
1752: ELSE
1753: x_error_code(i) := 'PA_CC_TP_CONVERT_AMT';

Line 1822: pa_currency.round_trans_currency_amt

1818: IF (l_projfunc_bil_rate_type = 'User' AND
1819: l_projfunc_bil_exchange_rate IS NOT NULL) THEN
1820:
1821: l_projfunc_transfer_price:=
1822: pa_currency.round_trans_currency_amt
1823: (x_denom_transfer_price(i)*l_projfunc_bil_exchange_rate,
1824: p_projfunc_currency_code(i));
1825: else
1826:

Line 4464: x_denom_transfer_price(i) := pa_currency.round_trans_currency_amt

4460: x_denom_tp_currency_code(i) := l_basis_calc_curr_code(i);
4461: l_temp_transfer_price := l_basis_calc_amount(i)*
4462: (NVL(p_tp_schedule_line_percentage(i),100)/100)
4463: * (NVL(p_tp_rule_percentage(i),100)/100);
4464: x_denom_transfer_price(i) := pa_currency.round_trans_currency_amt
4465: (l_temp_transfer_price,
4466: x_denom_tp_currency_code(i));
4467: END IF; /** Checking error code **/
4468:

Line 4481: x_denom_transfer_price(i) := pa_currency.round_trans_currency_amt

4477: x_denom_tp_currency_code(i) := l_bill_calc_curr_code(i);
4478: l_temp_transfer_price := l_bill_calc_amount(i)*
4479: (NVL(p_tp_schedule_line_percentage(i),100)/100)
4480: * (NVL(p_tp_rule_percentage(i),100)/100);
4481: x_denom_transfer_price(i) := pa_currency.round_trans_currency_amt
4482: (l_temp_transfer_price,
4483: x_denom_tp_currency_code(i));
4484: END IF;
4485:

Line 4497: x_denom_transfer_price(i) := pa_currency.round_trans_currency_amt

4493: x_denom_tp_currency_code(i) := l_burden_calc_curr_code(i);
4494: l_temp_transfer_price := l_burden_calc_amount(i)*
4495: (NVL(p_tp_schedule_line_percentage(i),100)/100)
4496: * (NVL(p_tp_rule_percentage(i),100)/100);
4497: x_denom_transfer_price(i) := pa_currency.round_trans_currency_amt
4498: (l_temp_transfer_price,
4499: x_denom_tp_currency_code(i));
4500: END IF;
4501: END IF;