DBA Data[Home] [Help]

APPS.AMS_ACTRESOURCE_PUB dependencies on FND_MSG_PUB

Line 113: FND_MSG_PUB.initialize;

109:
110: -- Initialize message list if p_init_msg_list is set to TRUE.
111: IF FND_API.to_Boolean( p_init_msg_list )
112: THEN
113: FND_MSG_PUB.initialize;
114: END IF;
115:
116: -- Debug Message
117: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 226: FND_MSG_PUB.Count_And_Get

222: -- Debug Message
223: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
224:
225: -- Standard call to get message count and if count is 1, get message info.
226: FND_MSG_PUB.Count_And_Get
227: (p_count => x_msg_count,
228: p_data => x_msg_data
229: );
230:

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

230:
231: EXCEPTION
232: WHEN AMS_Utility_PVT.resource_locked THEN
233: x_return_status := FND_API.g_ret_sts_error;
234: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
235: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
236: FND_MSG_PUB.add;
237: END IF;
238:

Line 236: FND_MSG_PUB.add;

232: WHEN AMS_Utility_PVT.resource_locked THEN
233: x_return_status := FND_API.g_ret_sts_error;
234: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
235: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
236: FND_MSG_PUB.add;
237: END IF;
238:
239: WHEN FND_API.G_EXC_ERROR THEN
240: ROLLBACK TO Create_Act_Resource_PUB;

Line 243: FND_MSG_PUB.Count_And_Get (

239: WHEN FND_API.G_EXC_ERROR THEN
240: ROLLBACK TO Create_Act_Resource_PUB;
241: x_return_status := FND_API.G_RET_STS_ERROR;
242: -- Standard call to get message count and if count=1, get the message
243: FND_MSG_PUB.Count_And_Get (
244: p_encoded => FND_API.G_FALSE,
245: p_count => x_msg_count,
246: p_data => x_msg_data
247: );

Line 253: FND_MSG_PUB.Count_And_Get (

249: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
250: ROLLBACK TO Create_Act_Resource_PUB;
251: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
252: -- Standard call to get message count and if count=1, get the message
253: FND_MSG_PUB.Count_And_Get (
254: p_encoded => FND_API.G_FALSE,
255: p_count => x_msg_count,
256: p_data => x_msg_data
257: );

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

258:
259: WHEN OTHERS THEN
260: ROLLBACK TO Create_Act_Resource_PUB;
261: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
262: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
263: THEN
264: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
265: END IF;
266: -- Standard call to get message count and if count=1, get the message

Line 264: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);

260: ROLLBACK TO Create_Act_Resource_PUB;
261: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
262: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
263: THEN
264: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
265: END IF;
266: -- Standard call to get message count and if count=1, get the message
267: FND_MSG_PUB.Count_And_Get (
268: p_encoded => FND_API.G_FALSE,

Line 267: FND_MSG_PUB.Count_And_Get (

263: THEN
264: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
265: END IF;
266: -- Standard call to get message count and if count=1, get the message
267: FND_MSG_PUB.Count_And_Get (
268: p_encoded => FND_API.G_FALSE,
269: p_count => x_msg_count,
270: p_data => x_msg_data
271: );

Line 314: FND_MSG_PUB.initialize;

310:
311: -- Initialize message list if p_init_msg_list is set to TRUE.
312: IF FND_API.to_Boolean( p_init_msg_list )
313: THEN
314: FND_MSG_PUB.initialize;
315: END IF;
316:
317: -- Debug Message
318: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 420: FND_MSG_PUB.Count_And_Get

416: -- Debug Message
417: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
418:
419: -- Standard call to get message count and if count is 1, get message info.
420: FND_MSG_PUB.Count_And_Get
421: (p_count => x_msg_count,
422: p_data => x_msg_data
423: );
424:

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

425: EXCEPTION
426:
427: WHEN AMS_Utility_PVT.resource_locked THEN
428: x_return_status := FND_API.g_ret_sts_error;
429: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
430: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
431: FND_MSG_PUB.add;
432: END IF;
433:

Line 431: FND_MSG_PUB.add;

427: WHEN AMS_Utility_PVT.resource_locked THEN
428: x_return_status := FND_API.g_ret_sts_error;
429: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
430: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
431: FND_MSG_PUB.add;
432: END IF;
433:
434: WHEN FND_API.G_EXC_ERROR THEN
435: ROLLBACK TO Update_Act_Resource_PUB;

Line 438: FND_MSG_PUB.Count_And_Get (

434: WHEN FND_API.G_EXC_ERROR THEN
435: ROLLBACK TO Update_Act_Resource_PUB;
436: x_return_status := FND_API.G_RET_STS_ERROR;
437: -- Standard call to get message count and if count=1, get the message
438: FND_MSG_PUB.Count_And_Get (
439: p_encoded => FND_API.G_FALSE,
440: p_count => x_msg_count,
441: p_data => x_msg_data
442: );

Line 448: FND_MSG_PUB.Count_And_Get (

444: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
445: ROLLBACK TO Update_Act_Resource_PUB;
446: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
447: -- Standard call to get message count and if count=1, get the message
448: FND_MSG_PUB.Count_And_Get (
449: p_encoded => FND_API.G_FALSE,
450: p_count => x_msg_count,
451: p_data => x_msg_data
452: );

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

453:
454: WHEN OTHERS THEN
455: ROLLBACK TO Update_Act_Resource_PUB;
456: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
457: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
458: THEN
459: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
460: END IF;
461: -- Standard call to get message count and if count=1, get the message

Line 459: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);

455: ROLLBACK TO Update_Act_Resource_PUB;
456: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
457: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
458: THEN
459: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
460: END IF;
461: -- Standard call to get message count and if count=1, get the message
462: FND_MSG_PUB.Count_And_Get (
463: p_encoded => FND_API.G_FALSE,

Line 462: FND_MSG_PUB.Count_And_Get (

458: THEN
459: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
460: END IF;
461: -- Standard call to get message count and if count=1, get the message
462: FND_MSG_PUB.Count_And_Get (
463: p_encoded => FND_API.G_FALSE,
464: p_count => x_msg_count,
465: p_data => x_msg_data
466: );

Line 509: FND_MSG_PUB.initialize;

505:
506: -- Initialize message list if p_init_msg_list is set to TRUE.
507: IF FND_API.to_Boolean( p_init_msg_list )
508: THEN
509: FND_MSG_PUB.initialize;
510: END IF;
511:
512: -- Debug Message
513: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 617: FND_MSG_PUB.Count_And_Get

613: -- Debug Message
614: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
615:
616: -- Standard call to get message count and if count is 1, get message info.
617: FND_MSG_PUB.Count_And_Get
618: (p_count => x_msg_count,
619: p_data => x_msg_data
620: );
621:

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

622: EXCEPTION
623:
624: WHEN AMS_Utility_PVT.resource_locked THEN
625: x_return_status := FND_API.g_ret_sts_error;
626: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
627: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
628: FND_MSG_PUB.add;
629: END IF;
630:

Line 628: FND_MSG_PUB.add;

624: WHEN AMS_Utility_PVT.resource_locked THEN
625: x_return_status := FND_API.g_ret_sts_error;
626: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
627: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
628: FND_MSG_PUB.add;
629: END IF;
630:
631: WHEN FND_API.G_EXC_ERROR THEN
632: ROLLBACK TO Delete_Act_Resource_PUB;

Line 635: FND_MSG_PUB.Count_And_Get (

631: WHEN FND_API.G_EXC_ERROR THEN
632: ROLLBACK TO Delete_Act_Resource_PUB;
633: x_return_status := FND_API.G_RET_STS_ERROR;
634: -- Standard call to get message count and if count=1, get the message
635: FND_MSG_PUB.Count_And_Get (
636: p_encoded => FND_API.G_FALSE,
637: p_count => x_msg_count,
638: p_data => x_msg_data
639: );

Line 645: FND_MSG_PUB.Count_And_Get (

641: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
642: ROLLBACK TO Delete_Act_Resource_PUB;
643: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
644: -- Standard call to get message count and if count=1, get the message
645: FND_MSG_PUB.Count_And_Get (
646: p_encoded => FND_API.G_FALSE,
647: p_count => x_msg_count,
648: p_data => x_msg_data
649: );

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

650:
651: WHEN OTHERS THEN
652: ROLLBACK TO Delete_Act_Resource_PUB;
653: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
654: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
655: THEN
656: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
657: END IF;
658: -- Standard call to get message count and if count=1, get the message

Line 656: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);

652: ROLLBACK TO Delete_Act_Resource_PUB;
653: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
654: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
655: THEN
656: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
657: END IF;
658: -- Standard call to get message count and if count=1, get the message
659: FND_MSG_PUB.Count_And_Get (
660: p_encoded => FND_API.G_FALSE,

Line 659: FND_MSG_PUB.Count_And_Get (

655: THEN
656: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
657: END IF;
658: -- Standard call to get message count and if count=1, get the message
659: FND_MSG_PUB.Count_And_Get (
660: p_encoded => FND_API.G_FALSE,
661: p_count => x_msg_count,
662: p_data => x_msg_data
663: );

Line 715: FND_MSG_PUB.initialize;

711:
712: -- Initialize message list if p_init_msg_list is set to TRUE.
713: IF FND_API.to_Boolean( p_init_msg_list )
714: THEN
715: FND_MSG_PUB.initialize;
716: END IF;
717:
718: -- Debug Message
719: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

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

815: EXCEPTION
816:
817: WHEN AMS_Utility_PVT.resource_locked THEN
818: x_return_status := FND_API.g_ret_sts_error;
819: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
820: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
821: FND_MSG_PUB.add;
822: END IF;
823:

Line 821: FND_MSG_PUB.add;

817: WHEN AMS_Utility_PVT.resource_locked THEN
818: x_return_status := FND_API.g_ret_sts_error;
819: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
820: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
821: FND_MSG_PUB.add;
822: END IF;
823:
824: WHEN FND_API.G_EXC_ERROR THEN
825: ROLLBACK TO LOCK_Act_Resource_PUB;

Line 828: FND_MSG_PUB.Count_And_Get (

824: WHEN FND_API.G_EXC_ERROR THEN
825: ROLLBACK TO LOCK_Act_Resource_PUB;
826: x_return_status := FND_API.G_RET_STS_ERROR;
827: -- Standard call to get message count and if count=1, get the message
828: FND_MSG_PUB.Count_And_Get (
829: p_encoded => FND_API.G_FALSE,
830: p_count => x_msg_count,
831: p_data => x_msg_data
832: );

Line 838: FND_MSG_PUB.Count_And_Get (

834: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
835: ROLLBACK TO LOCK_Act_Resource_PUB;
836: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
837: -- Standard call to get message count and if count=1, get the message
838: FND_MSG_PUB.Count_And_Get (
839: p_encoded => FND_API.G_FALSE,
840: p_count => x_msg_count,
841: p_data => x_msg_data
842: );

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

843:
844: WHEN OTHERS THEN
845: ROLLBACK TO LOCK_Act_Resource_PUB;
846: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
847: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
848: THEN
849: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
850: END IF;
851: -- Standard call to get message count and if count=1, get the message

Line 849: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);

845: ROLLBACK TO LOCK_Act_Resource_PUB;
846: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
847: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
848: THEN
849: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
850: END IF;
851: -- Standard call to get message count and if count=1, get the message
852: FND_MSG_PUB.Count_And_Get (
853: p_encoded => FND_API.G_FALSE,

Line 852: FND_MSG_PUB.Count_And_Get (

848: THEN
849: FND_MSG_PUB.Add_Exc_Msg( G_PACKAGE_NAME,l_api_name);
850: END IF;
851: -- Standard call to get message count and if count=1, get the message
852: FND_MSG_PUB.Count_And_Get (
853: p_encoded => FND_API.G_FALSE,
854: p_count => x_msg_count,
855: p_data => x_msg_data
856: );

Line 895: FND_MSG_PUB.initialize;

891:
892: -- initialize the message list;
893: -- won't do it again when calling private API
894: IF FND_API.to_boolean(p_init_msg_list) THEN
895: FND_MSG_PUB.initialize;
896: END IF;
897:
898: Convert_PubRec_To_PvtRec(l_pub_resource_rec,l_pvt_resource_rec);
899:

Line 981: FND_MSG_PUB.Count_And_Get

977: -- Debug Message
978: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
979:
980: -- Standard call to get message count and if count is 1, get message info.
981: FND_MSG_PUB.Count_And_Get
982: (p_count => x_msg_count,
983: p_data => x_msg_data
984: );
985:

Line 991: FND_MSG_PUB.count_and_get(

987:
988: WHEN FND_API.g_exc_error THEN
989: ROLLBACK TO validate_act_resource_pub;
990: x_return_status := FND_API.g_ret_sts_error;
991: FND_MSG_PUB.count_and_get(
992: p_encoded => FND_API.g_false,
993: p_count => x_msg_count,
994: p_data => x_msg_data
995: );

Line 1000: FND_MSG_PUB.count_and_get(

996:
997: WHEN FND_API.g_exc_unexpected_error THEN
998: ROLLBACK TO validate_act_resource_pub;
999: x_return_status := FND_API.g_ret_sts_unexp_error ;
1000: FND_MSG_PUB.count_and_get(
1001: p_encoded => FND_API.g_false,
1002: p_count => x_msg_count,
1003: p_data => x_msg_data
1004: );

Line 1011: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error)

1007: WHEN OTHERS THEN
1008: ROLLBACK TO validate_act_resource_pub;
1009: x_return_status := FND_API.g_ret_sts_unexp_error ;
1010:
1011: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error)
1012: THEN
1013: FND_MSG_PUB.add_exc_msg(G_PACKAGE_NAME, l_api_name);
1014: END IF;
1015:

Line 1013: FND_MSG_PUB.add_exc_msg(G_PACKAGE_NAME, l_api_name);

1009: x_return_status := FND_API.g_ret_sts_unexp_error ;
1010:
1011: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error)
1012: THEN
1013: FND_MSG_PUB.add_exc_msg(G_PACKAGE_NAME, l_api_name);
1014: END IF;
1015:
1016: FND_MSG_PUB.count_and_get(
1017: p_encoded => FND_API.g_false,

Line 1016: FND_MSG_PUB.count_and_get(

1012: THEN
1013: FND_MSG_PUB.add_exc_msg(G_PACKAGE_NAME, l_api_name);
1014: END IF;
1015:
1016: FND_MSG_PUB.count_and_get(
1017: p_encoded => FND_API.g_false,
1018: p_count => x_msg_count,
1019: p_data => x_msg_data
1020: );