DBA Data[Home] [Help]

APPS.PA_CI_IMPACTS_PVT dependencies on PA_UTILS

Line 59: PA_UTILS.Add_Message( p_app_short_name => 'PA'

55: OPEN check_exists;
56: FETCH check_exists INTO l_dummy;
57: IF check_exists%found THEN
58: -- record already exists
59: PA_UTILS.Add_Message( p_app_short_name => 'PA'
60: ,p_msg_name => 'PA_CI_IMPACT_EXIST');
61:
62: x_return_status := FND_API.G_RET_STS_ERROR;
63:

Line 299: PA_UTILS.Add_Message ( p_app_short_name => 'PA',p_msg_name => 'PA_CI_IMPACT_IMPBY_INV');

295: -- the implemented by is passed in, we need to get the ID
296: OPEN get_party_id;
297: FETCH get_party_id INTO l_party_id;
298: IF get_party_id%notfound THEN
299: PA_UTILS.Add_Message ( p_app_short_name => 'PA',p_msg_name => 'PA_CI_IMPACT_IMPBY_INV');
300: -- p_token1 => 'IMPACT_TYPE'
301: --, p_value1 => l_impact_name);
302: x_return_status := FND_API.G_RET_STS_ERROR;
303: END IF;

Line 318: PA_UTILS.Add_Message ( p_app_short_name => 'PA',p_msg_name => 'PA_CI_IMPACT_IMPBY_INV');

314: -- the implemented by is passed in, we need to get the ID
315: OPEN get_party_id;
316: FETCH get_party_id INTO l_party_id;
317: IF get_party_id%notfound THEN
318: PA_UTILS.Add_Message ( p_app_short_name => 'PA',p_msg_name => 'PA_CI_IMPACT_IMPBY_INV');
319: -- p_token1 => 'IMPACT_TYPE'
320: -- , p_value1 => l_impact_name);
321: x_return_status := FND_API.G_RET_STS_ERROR;
322: END IF;

Line 334: PA_UTILS.Add_Message ( p_app_short_name => 'PA',p_msg_name => 'PA_CI_IMPACT_IMP_DATE_INV');

330:
331: IF (p_implementation_date > Sysdate) THEN
332:
333:
334: PA_UTILS.Add_Message ( p_app_short_name => 'PA',p_msg_name => 'PA_CI_IMPACT_IMP_DATE_INV');
335: -- p_token1 => 'IMPACT_TYPE'
336: --, p_value1 => l_impact_name
337:
338: x_return_status := FND_API.G_RET_STS_ERROR;

Line 379: PA_UTILS.Add_Message ( p_app_short_name => 'PA',p_msg_name => 'PA_XC_RECORD_CHANGED');

375: IF p_commit = 'T' THEN
376: ROLLBACK TO update_ci_impact;
377: END IF;
378:
379: PA_UTILS.Add_Message ( p_app_short_name => 'PA',p_msg_name => 'PA_XC_RECORD_CHANGED');
380: x_return_status := FND_API.G_RET_STS_ERROR;
381:
382:
383: WHEN OTHERS THEN