DBA Data[Home] [Help]

APPS.AMS_DELIVERABLERULES_PVT dependencies on FND_MSG_PUB

Line 381: FND_MSG_PUB.initialize;

377:
378: -- Initialize message list if p_init_msg_list is set to TRUE.
379: IF FND_API.to_Boolean( p_init_msg_list )
380: THEN
381: FND_MSG_PUB.initialize;
382: END IF;
383:
384: -- Debug Message
385: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 435: FND_MSG_PUB.Count_And_Get

431: -- Debug Message
432: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
433:
434: -- Standard call to get message count and if count is 1, get message info.
435: FND_MSG_PUB.Count_And_Get
436: (p_count => x_msg_count,
437: p_data => x_msg_data
438: );
439:

Line 444: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

440: EXCEPTION
441:
442: WHEN AMS_Utility_PVT.resource_locked THEN
443: x_return_status := FND_API.g_ret_sts_error;
444: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
445: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
446: FND_MSG_PUB.add;
447: END IF;
448:

Line 446: FND_MSG_PUB.add;

442: WHEN AMS_Utility_PVT.resource_locked THEN
443: x_return_status := FND_API.g_ret_sts_error;
444: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
445: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
446: FND_MSG_PUB.add;
447: END IF;
448:
449: WHEN FND_API.G_EXC_ERROR THEN
450: ROLLBACK TO Approve_Content_Item;

Line 453: FND_MSG_PUB.Count_And_Get (

449: WHEN FND_API.G_EXC_ERROR THEN
450: ROLLBACK TO Approve_Content_Item;
451: x_return_status := FND_API.G_RET_STS_ERROR;
452: -- Standard call to get message count and if count=1, get the message
453: FND_MSG_PUB.Count_And_Get (
454: p_encoded => FND_API.G_FALSE,
455: p_count => x_msg_count,
456: p_data => x_msg_data
457: );

Line 463: FND_MSG_PUB.Count_And_Get (

459: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
460: ROLLBACK TO Approve_Content_Item;
461: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
462: -- Standard call to get message count and if count=1, get the message
463: FND_MSG_PUB.Count_And_Get (
464: p_encoded => FND_API.G_FALSE,
465: p_count => x_msg_count,
466: p_data => x_msg_data
467: );

Line 472: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

468:
469: WHEN OTHERS THEN
470: ROLLBACK TO Approve_Content_Item;
471: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
472: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
473: THEN
474: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
475: END IF;
476: -- Standard call to get message count and if count=1, get the message

Line 474: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

470: ROLLBACK TO Approve_Content_Item;
471: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
472: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
473: THEN
474: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
475: END IF;
476: -- Standard call to get message count and if count=1, get the message
477: FND_MSG_PUB.Count_And_Get (
478: p_encoded => FND_API.G_FALSE,

Line 477: FND_MSG_PUB.Count_And_Get (

473: THEN
474: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
475: END IF;
476: -- Standard call to get message count and if count=1, get the message
477: FND_MSG_PUB.Count_And_Get (
478: p_encoded => FND_API.G_FALSE,
479: p_count => x_msg_count,
480: p_data => x_msg_data
481: );