DBA Data[Home] [Help]

APPS.PA_FORECAST_REVENUE dependencies on PA_RATE_PVT_PKG

Line 101: PA_RATE_PVT_PKG.G_add_error_to_stack_flag := p_check_error_flag;

97: -- , we change its status from succes to error sothat we can take necessary step to rectify the problem
98: l_x_return_status := FND_API.G_RET_STS_SUCCESS;
99:
100: /* Assigning the check error condition . Added for bug 2218386 */
101: PA_RATE_PVT_PKG.G_add_error_to_stack_flag := p_check_error_flag;
102:
103: IF ( p_person_id IS NULL ) THEN
104: l_asgn_type := 'R';
105: ELSE

Line 135: PA_RATE_PVT_PKG.get_initial_bill_rate(

131:
132: /* Calling the new rate api, in this case because the forecast_item_id is null so it will
133: not execute the assignment level override */
134:
135: PA_RATE_PVT_PKG.get_initial_bill_rate(
136: p_assignment_type => l_asgn_type ,
137: p_asgn_start_date => p_item_date ,
138: p_project_id => p_project_id ,
139: p_quantity => 1 ,

Line 157: Bug 3192856 - When the p_quantity passed is 1 to PA_RATE_PVT_PKG.get_initial_bill_rate,

153: x_msg_data => l_x_msg_data );
154:
155:
156: /*
157: Bug 3192856 - When the p_quantity passed is 1 to PA_RATE_PVT_PKG.get_initial_bill_rate,
158: the parameter x_projfunc_raw_revenue (l_raw_revenue) will contain the Revenue and Adjusted Rate.
159: Please refer bug for other details
160: */
161: x_bill_rate := NVL(l_raw_revenue,0); /* 3192856 - Modified l_bill_rate to l_raw_revenue */

Line 171: IF (NVL(PA_RATE_PVT_PKG.G_add_error_to_stack_flag,'Y') = 'Y') THEN

167: x_msg_data := l_x_msg_data;
168:
169: IF ( l_x_return_status <> FND_API.G_RET_STS_SUCCESS ) THEN
170: /* Checking error condition. Added for bug 2218386 */
171: IF (NVL(PA_RATE_PVT_PKG.G_add_error_to_stack_flag,'Y') = 'Y') THEN
172: PA_UTILS.Add_Message ('PA', SUBSTR(l_x_msg_data,1,30));
173: END IF;
174: END IF;
175:

Line 182: IF (NVL(PA_RATE_PVT_PKG.G_add_error_to_stack_flag,'Y') = 'Y') THEN

178: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
179: x_msg_count := 1;
180: x_msg_data := substr(SQLERRM,1,240);
181: /* Checking error condition. Added for bug 2218386 */
182: IF (NVL(PA_RATE_PVT_PKG.G_add_error_to_stack_flag,'Y') = 'Y') THEN
183: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_FORECAST_REVENUE', /* Moved this here to fix bug 2434663 */
184: p_procedure_name => 'Get_Rev_Amt');
185: RAISE;
186: END IF;