DBA Data[Home] [Help]

APPS.PA_FP_ORG_FCST_GEN_PUB dependencies on PA_FP_MULTI_CURRENCY_PKG

Line 5805: --PA_FP_MULTI_CURRENCY_PKG.Round_Budget_Line_Amounts which is called after this INSERT. Note that this has to be done only

5801:
5802: -- Bug 3362316, 08-JAN-2003: Added New FP.M Columns --------------------------
5803: --Bug 4052403. For non rate-based transactions quantity should be same as raw cost if the version type is COST/ALL or
5804: --it should be revenue if the version type is REVENUE. This business rule will be taken care by the API
5805: --PA_FP_MULTI_CURRENCY_PKG.Round_Budget_Line_Amounts which is called after this INSERT. Note that this has to be done only
5806: --when adjustment% is not null since the amounts in the source will be altered only when the user enters some adj %
5807: --Bug 4188225. PC/PFC buckets will be copied unconditionally (Removed the condition that checks for l_adj_percentage
5808: --being greater than 0 in order to copy)
5809: INSERT INTO PA_BUDGET_LINES(

Line 6055: PA_FP_MULTI_CURRENCY_PKG.Round_Budget_Line_Amounts

6051: -- End, Bug 3362316, 08-JAN-2003: Added New FP.M Columns --------------------------
6052:
6053: -- Bug 4035856 Call rounding api if l_adj_percentage is not zero
6054: IF l_adj_percentage <> 0 THEN
6055: PA_FP_MULTI_CURRENCY_PKG.Round_Budget_Line_Amounts
6056: ( p_budget_version_id => p_target_plan_version_id
6057: ,p_calling_context => 'COPY_VERSION'
6058: ,x_return_status => l_return_status
6059: ,x_msg_count => l_msg_count

Line 6064: pa_debug.g_err_stage:= 'Error in PA_FP_MULTI_CURRENCY_PKG.Round_Budget_Line_Amounts';

6060: ,x_msg_data => l_msg_data);
6061:
6062: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
6063: IF P_PA_debug_mode = 'Y' THEN
6064: pa_debug.g_err_stage:= 'Error in PA_FP_MULTI_CURRENCY_PKG.Round_Budget_Line_Amounts';
6065: pa_debug.write('Copy_Budget_Lines: ' || g_module_name,pa_debug.g_err_stage,5);
6066: END IF;
6067: RAISE PA_FP_CONSTANTS_PKG.Invalid_Arg_Exc;
6068: END IF;