DBA Data[Home] [Help]

APPS.PA_CC_TRANSFER_PRICE dependencies on PA_MULTI_CURRENCY

Line 1494: PA_MULTI_CURRENCY.Convert_Amount(

1490: IF (x_acct_tp_rate_type(i) IS NOT NULL
1491: AND x_acct_tp_rate_date(i) IS NOT NULL) THEN
1492:
1493: -- Use type and date to convert
1494: PA_MULTI_CURRENCY.Convert_Amount(
1495: p_from_currency => x_denom_tp_currency_code(i),
1496: p_to_currency => G_acct_currency_code ,
1497: p_conversion_date => x_acct_tp_rate_date(i),
1498: p_conversion_type => x_acct_tp_rate_type(i),

Line 1596: PA_MULTI_CURRENCY.Convert_Amount(

1592: NOT NULL and l_error_message IS NULL) THEN
1593: -- Added the condition of l_error_message for Bug 5276842
1594: -- Use type and date to convert
1595: l_rate_date := l_new_rate_date;
1596: PA_MULTI_CURRENCY.Convert_Amount(
1597: p_from_currency => x_denom_tp_currency_code(i),
1598: p_to_currency => G_acct_currency_code ,
1599: p_conversion_date => l_rate_date,
1600: p_conversion_type => l_rate_type,

Line 1619: PA_MULTI_CURRENCY.Convert_Amount(

1615: pa_debug.write_file('LOG',pa_debug.G_Err_Stage);
1616: END IF;
1617: l_rate_type := G_cc_default_rate_type;
1618:
1619: PA_MULTI_CURRENCY.Convert_Amount(
1620: p_from_currency => x_denom_tp_currency_code(i),
1621: p_to_currency => G_acct_currency_code ,
1622: p_conversion_date => l_rate_date,
1623: p_conversion_type => l_rate_type,

Line 1770: PA_MULTI_CURRENCY.Convert_Amount(

1766: pa_debug.write_file('LOG','BEFORE CONVERT: l_project_bil_rate_type: '||l_project_bil_rate_type);
1767: pa_debug.write_file('LOG','BEFORE CONVERT: l_project_bil_rate_date: '||l_project_bil_rate_date);
1768: END IF;
1769:
1770: PA_MULTI_CURRENCY.Convert_Amount(
1771: p_from_currency => x_denom_tp_currency_code(i),
1772: p_to_currency => p_project_currency_code(i),
1773: p_conversion_date => l_project_bil_rate_date,
1774: p_conversion_type => l_project_bil_rate_type,

Line 1831: PA_MULTI_CURRENCY.Convert_Amount(

1827: IF (l_projfunc_bil_rate_date_code = 'PA_INVOICE_DATE' ) THEN
1828: l_projfunc_bil_rate_date := G_processed_thru_date;
1829: END IF;
1830:
1831: PA_MULTI_CURRENCY.Convert_Amount(
1832: p_from_currency => x_denom_tp_currency_code(i),
1833: p_to_currency => p_projfunc_currency_code(i),
1834: p_conversion_date => l_projfunc_bil_rate_date,
1835: p_conversion_type => l_projfunc_bil_rate_type,

Line 1897: pa_multi_currency_txn.get_currency_amounts(

1893: (l_multi_currency_billing_flag = 'N' ) ) then
1894:
1895: /* call the cost currency conversion api */
1896:
1897: pa_multi_currency_txn.get_currency_amounts(
1898: P_project_id => p_project_id(i),
1899: P_exp_org_id => p_prvdr_operating_unit(i),
1900: p_Calling_module => p_module_name,
1901: P_task_id => p_task_id(i),

Line 2205: G_acct_currency_code := PA_MULTI_CURRENCY.Get_Acct_Currency_Code;

2201:
2202: close c_ou_attributes;
2203:
2204: -- Get accounting currency code of the provider
2205: G_acct_currency_code := PA_MULTI_CURRENCY.Get_Acct_Currency_Code;
2206: End If; /** End p_module_name = 'FORECAST' **/
2207: pa_debug.Reset_err_stack;
2208:
2209: EXCEPTION