DBA Data[Home] [Help]

APPS.PA_FORECAST_REVENUE dependencies on FND_API

Line 98: l_x_return_status := FND_API.G_RET_STS_SUCCESS;

94: BEGIN
95:
96: -- Initializing return status with success sothat if some unexpected error comes
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:

Line 169: IF ( l_x_return_status <> FND_API.G_RET_STS_SUCCESS ) THEN

165: x_return_status := l_x_return_status;
166: x_msg_count := l_x_msg_count;
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;

Line 178: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

174: END IF;
175:
176: EXCEPTION
177: WHEN OTHERS 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