DBA Data[Home] [Help]

APPS.AMS_CAMP_SCHEDULE_PUB dependencies on FND_MSG_PUB

Line 184: FND_MSG_PUB.initialize;

180:
181: -- Initialize message list if p_init_msg_list is set to TRUE.
182: IF FND_API.to_Boolean( p_init_msg_list )
183: THEN
184: FND_MSG_PUB.initialize;
185: END IF;
186:
187: -- Debug Message
188: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 297: FND_MSG_PUB.Count_And_Get

293: -- Debug Message
294: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
295:
296: -- Standard call to get message count and if count is 1, get message info.
297: FND_MSG_PUB.Count_And_Get
298: (p_count => x_msg_count,
299: p_data => x_msg_data
300: );
301: EXCEPTION

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

301: EXCEPTION
302:
303: WHEN AMS_Utility_PVT.resource_locked THEN
304: x_return_status := FND_API.g_ret_sts_error;
305: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
306: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
307: FND_MSG_PUB.add;
308: END IF;
309:

Line 307: FND_MSG_PUB.add;

303: WHEN AMS_Utility_PVT.resource_locked THEN
304: x_return_status := FND_API.g_ret_sts_error;
305: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
306: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
307: FND_MSG_PUB.add;
308: END IF;
309:
310: WHEN FND_API.G_EXC_ERROR THEN
311: ROLLBACK TO CREATE_Camp_Schedule_PUB;

Line 314: FND_MSG_PUB.Count_And_Get (

310: WHEN FND_API.G_EXC_ERROR THEN
311: ROLLBACK TO CREATE_Camp_Schedule_PUB;
312: x_return_status := FND_API.G_RET_STS_ERROR;
313: -- Standard call to get message count and if count=1, get the message
314: FND_MSG_PUB.Count_And_Get (
315: p_encoded => FND_API.G_FALSE,
316: p_count => x_msg_count,
317: p_data => x_msg_data
318: );

Line 324: FND_MSG_PUB.Count_And_Get (

320: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
321: ROLLBACK TO CREATE_Camp_Schedule_PUB;
322: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
323: -- Standard call to get message count and if count=1, get the message
324: FND_MSG_PUB.Count_And_Get (
325: p_encoded => FND_API.G_FALSE,
326: p_count => x_msg_count,
327: p_data => x_msg_data
328: );

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

329:
330: WHEN OTHERS THEN
331: ROLLBACK TO CREATE_Camp_Schedule_PUB;
332: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
333: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
334: THEN
335: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
336: END IF;
337: -- Standard call to get message count and if count=1, get the message

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

331: ROLLBACK TO CREATE_Camp_Schedule_PUB;
332: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
333: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
334: THEN
335: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
336: END IF;
337: -- Standard call to get message count and if count=1, get the message
338: FND_MSG_PUB.Count_And_Get (
339: p_encoded => FND_API.G_FALSE,

Line 338: FND_MSG_PUB.Count_And_Get (

334: THEN
335: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
336: END IF;
337: -- Standard call to get message count and if count=1, get the message
338: FND_MSG_PUB.Count_And_Get (
339: p_encoded => FND_API.G_FALSE,
340: p_count => x_msg_count,
341: p_data => x_msg_data
342: );

Line 374: FND_MSG_PUB.initialize;

370:
371: -- Initialize message list if p_init_msg_list is set to TRUE.
372: IF FND_API.to_Boolean( p_init_msg_list )
373: THEN
374: FND_MSG_PUB.initialize;
375: END IF;
376:
377: -- Debug Message
378: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 482: FND_MSG_PUB.Count_And_Get

478: -- Debug Message
479: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
480:
481: -- Standard call to get message count and if count is 1, get message info.
482: FND_MSG_PUB.Count_And_Get
483: (p_count => x_msg_count,
484: p_data => x_msg_data
485: );
486: EXCEPTION

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

486: EXCEPTION
487:
488: WHEN AMS_Utility_PVT.resource_locked THEN
489: x_return_status := FND_API.g_ret_sts_error;
490: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
491: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
492: FND_MSG_PUB.add;
493: END IF;
494:

Line 492: FND_MSG_PUB.add;

488: WHEN AMS_Utility_PVT.resource_locked THEN
489: x_return_status := FND_API.g_ret_sts_error;
490: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
491: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
492: FND_MSG_PUB.add;
493: END IF;
494:
495: WHEN FND_API.G_EXC_ERROR THEN
496: ROLLBACK TO UPDATE_Camp_Schedule_PUB;

Line 499: FND_MSG_PUB.Count_And_Get (

495: WHEN FND_API.G_EXC_ERROR THEN
496: ROLLBACK TO UPDATE_Camp_Schedule_PUB;
497: x_return_status := FND_API.G_RET_STS_ERROR;
498: -- Standard call to get message count and if count=1, get the message
499: FND_MSG_PUB.Count_And_Get (
500: p_encoded => FND_API.G_FALSE,
501: p_count => x_msg_count,
502: p_data => x_msg_data
503: );

Line 509: FND_MSG_PUB.Count_And_Get (

505: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
506: ROLLBACK TO UPDATE_Camp_Schedule_PUB;
507: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
508: -- Standard call to get message count and if count=1, get the message
509: FND_MSG_PUB.Count_And_Get (
510: p_encoded => FND_API.G_FALSE,
511: p_count => x_msg_count,
512: p_data => x_msg_data
513: );

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

514:
515: WHEN OTHERS THEN
516: ROLLBACK TO UPDATE_Camp_Schedule_PUB;
517: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
518: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
519: THEN
520: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
521: END IF;
522: -- Standard call to get message count and if count=1, get the message

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

516: ROLLBACK TO UPDATE_Camp_Schedule_PUB;
517: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
518: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
519: THEN
520: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
521: END IF;
522: -- Standard call to get message count and if count=1, get the message
523: FND_MSG_PUB.Count_And_Get (
524: p_encoded => FND_API.G_FALSE,

Line 523: FND_MSG_PUB.Count_And_Get (

519: THEN
520: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
521: END IF;
522: -- Standard call to get message count and if count=1, get the message
523: FND_MSG_PUB.Count_And_Get (
524: p_encoded => FND_API.G_FALSE,
525: p_count => x_msg_count,
526: p_data => x_msg_data
527: );

Line 558: FND_MSG_PUB.initialize;

554:
555: -- Initialize message list if p_init_msg_list is set to TRUE.
556: IF FND_API.to_Boolean( p_init_msg_list )
557: THEN
558: FND_MSG_PUB.initialize;
559: END IF;
560:
561: -- Debug Message
562: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 665: FND_MSG_PUB.Count_And_Get

661: -- Debug Message
662: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
663:
664: -- Standard call to get message count and if count is 1, get message info.
665: FND_MSG_PUB.Count_And_Get
666: (p_count => x_msg_count,
667: p_data => x_msg_data
668: );
669: EXCEPTION

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

669: EXCEPTION
670:
671: WHEN AMS_Utility_PVT.resource_locked THEN
672: x_return_status := FND_API.g_ret_sts_error;
673: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
674: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
675: FND_MSG_PUB.add;
676: END IF;
677:

Line 675: FND_MSG_PUB.add;

671: WHEN AMS_Utility_PVT.resource_locked THEN
672: x_return_status := FND_API.g_ret_sts_error;
673: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
674: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
675: FND_MSG_PUB.add;
676: END IF;
677:
678: WHEN FND_API.G_EXC_ERROR THEN
679: ROLLBACK TO DELETE_Camp_Schedule_PUB;

Line 682: FND_MSG_PUB.Count_And_Get (

678: WHEN FND_API.G_EXC_ERROR THEN
679: ROLLBACK TO DELETE_Camp_Schedule_PUB;
680: x_return_status := FND_API.G_RET_STS_ERROR;
681: -- Standard call to get message count and if count=1, get the message
682: FND_MSG_PUB.Count_And_Get (
683: p_encoded => FND_API.G_FALSE,
684: p_count => x_msg_count,
685: p_data => x_msg_data
686: );

Line 692: FND_MSG_PUB.Count_And_Get (

688: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
689: ROLLBACK TO DELETE_Camp_Schedule_PUB;
690: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
691: -- Standard call to get message count and if count=1, get the message
692: FND_MSG_PUB.Count_And_Get (
693: p_encoded => FND_API.G_FALSE,
694: p_count => x_msg_count,
695: p_data => x_msg_data
696: );

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

697:
698: WHEN OTHERS THEN
699: ROLLBACK TO DELETE_Camp_Schedule_PUB;
700: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
701: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
702: THEN
703: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
704: END IF;
705: -- Standard call to get message count and if count=1, get the message

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

699: ROLLBACK TO DELETE_Camp_Schedule_PUB;
700: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
701: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
702: THEN
703: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
704: END IF;
705: -- Standard call to get message count and if count=1, get the message
706: FND_MSG_PUB.Count_And_Get (
707: p_encoded => FND_API.G_FALSE,

Line 706: FND_MSG_PUB.Count_And_Get (

702: THEN
703: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
704: END IF;
705: -- Standard call to get message count and if count=1, get the message
706: FND_MSG_PUB.Count_And_Get (
707: p_encoded => FND_API.G_FALSE,
708: p_count => x_msg_count,
709: p_data => x_msg_data
710: );

Line 743: FND_MSG_PUB.initialize;

739:
740: -- initialize the message list;
741: -- won't do it again when calling private API
742: IF FND_API.to_boolean(p_init_msg_list) THEN
743: FND_MSG_PUB.initialize;
744: END IF;
745:
746: Convert_PubRec_To_PvtRec(l_pub_schedule_rec,l_pvt_schedule_rec);
747:

Line 837: FND_MSG_PUB.Count_And_Get

833: -- Debug Message
834: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
835:
836: -- Standard call to get message count and if count is 1, get message info.
837: FND_MSG_PUB.Count_And_Get
838: (p_count => x_msg_count,
839: p_data => x_msg_data
840: );
841:

Line 847: FND_MSG_PUB.count_and_get(

843:
844: WHEN FND_API.g_exc_error THEN
845: ROLLBACK TO validate_camp_schedule_pub;
846: x_return_status := FND_API.g_ret_sts_error;
847: FND_MSG_PUB.count_and_get(
848: p_encoded => FND_API.g_false,
849: p_count => x_msg_count,
850: p_data => x_msg_data
851: );

Line 856: FND_MSG_PUB.count_and_get(

852:
853: WHEN FND_API.g_exc_unexpected_error THEN
854: ROLLBACK TO validate_camp_schedule_pub;
855: x_return_status := FND_API.g_ret_sts_unexp_error ;
856: FND_MSG_PUB.count_and_get(
857: p_encoded => FND_API.g_false,
858: p_count => x_msg_count,
859: p_data => x_msg_data
860: );

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

863: WHEN OTHERS THEN
864: ROLLBACK TO validate_camp_schedule_pub;
865: x_return_status := FND_API.g_ret_sts_unexp_error ;
866:
867: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error)
868: THEN
869: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name);
870: END IF;
871:

Line 869: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name);

865: x_return_status := FND_API.g_ret_sts_unexp_error ;
866:
867: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error)
868: THEN
869: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name);
870: END IF;
871:
872: FND_MSG_PUB.count_and_get(
873: p_encoded => FND_API.g_false,

Line 872: FND_MSG_PUB.count_and_get(

868: THEN
869: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name);
870: END IF;
871:
872: FND_MSG_PUB.count_and_get(
873: p_encoded => FND_API.g_false,
874: p_count => x_msg_count,
875: p_data => x_msg_data
876: );

Line 913: FND_MSG_PUB.initialize;

909:
910: -- Initialize message list if p_init_msg_list is set to TRUE.
911: IF FND_API.to_Boolean( p_init_msg_list )
912: THEN
913: FND_MSG_PUB.initialize;
914: END IF;
915:
916: -- Debug Message
917: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

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

1014: EXCEPTION
1015:
1016: WHEN AMS_Utility_PVT.resource_locked THEN
1017: x_return_status := FND_API.g_ret_sts_error;
1018: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
1019: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
1020: FND_MSG_PUB.add;
1021: END IF;
1022:

Line 1020: FND_MSG_PUB.add;

1016: WHEN AMS_Utility_PVT.resource_locked THEN
1017: x_return_status := FND_API.g_ret_sts_error;
1018: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
1019: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
1020: FND_MSG_PUB.add;
1021: END IF;
1022:
1023: WHEN FND_API.G_EXC_ERROR THEN
1024: ROLLBACK TO LOCK_Camp_Schedule_PUB;

Line 1027: FND_MSG_PUB.Count_And_Get (

1023: WHEN FND_API.G_EXC_ERROR THEN
1024: ROLLBACK TO LOCK_Camp_Schedule_PUB;
1025: x_return_status := FND_API.G_RET_STS_ERROR;
1026: -- Standard call to get message count and if count=1, get the message
1027: FND_MSG_PUB.Count_And_Get (
1028: p_encoded => FND_API.G_FALSE,
1029: p_count => x_msg_count,
1030: p_data => x_msg_data
1031: );

Line 1037: FND_MSG_PUB.Count_And_Get (

1033: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1034: ROLLBACK TO LOCK_Camp_Schedule_PUB;
1035: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1036: -- Standard call to get message count and if count=1, get the message
1037: FND_MSG_PUB.Count_And_Get (
1038: p_encoded => FND_API.G_FALSE,
1039: p_count => x_msg_count,
1040: p_data => x_msg_data
1041: );

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

1042:
1043: WHEN OTHERS THEN
1044: ROLLBACK TO LOCK_Camp_Schedule_PUB;
1045: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1046: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1047: THEN
1048: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1049: END IF;
1050: -- Standard call to get message count and if count=1, get the message

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

1044: ROLLBACK TO LOCK_Camp_Schedule_PUB;
1045: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1046: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1047: THEN
1048: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1049: END IF;
1050: -- Standard call to get message count and if count=1, get the message
1051: FND_MSG_PUB.Count_And_Get (
1052: p_encoded => FND_API.G_FALSE,

Line 1051: FND_MSG_PUB.Count_And_Get (

1047: THEN
1048: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1049: END IF;
1050: -- Standard call to get message count and if count=1, get the message
1051: FND_MSG_PUB.Count_And_Get (
1052: p_encoded => FND_API.G_FALSE,
1053: p_count => x_msg_count,
1054: p_data => x_msg_data
1055: );

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

1126: EXCEPTION
1127:
1128: WHEN AMS_Utility_PVT.resource_locked THEN
1129: x_return_status := FND_API.g_ret_sts_error;
1130: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
1131: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
1132: FND_MSG_PUB.add;
1133: END IF;
1134:

Line 1132: FND_MSG_PUB.add;

1128: WHEN AMS_Utility_PVT.resource_locked THEN
1129: x_return_status := FND_API.g_ret_sts_error;
1130: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
1131: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
1132: FND_MSG_PUB.add;
1133: END IF;
1134:
1135: WHEN FND_API.G_EXC_ERROR THEN
1136: ROLLBACK TO COPY_Camp_Schedule_PUB;

Line 1139: FND_MSG_PUB.Count_And_Get (

1135: WHEN FND_API.G_EXC_ERROR THEN
1136: ROLLBACK TO COPY_Camp_Schedule_PUB;
1137: x_return_status := FND_API.G_RET_STS_ERROR;
1138: -- Standard call to get message count and if count=1, get the message
1139: FND_MSG_PUB.Count_And_Get (
1140: p_encoded => FND_API.G_FALSE,
1141: p_count => x_msg_count,
1142: p_data => x_msg_data
1143: );

Line 1149: FND_MSG_PUB.Count_And_Get (

1145: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1146: ROLLBACK TO COPY_Camp_Schedule_PUB;
1147: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1148: -- Standard call to get message count and if count=1, get the message
1149: FND_MSG_PUB.Count_And_Get (
1150: p_encoded => FND_API.G_FALSE,
1151: p_count => x_msg_count,
1152: p_data => x_msg_data
1153: );

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

1154:
1155: WHEN OTHERS THEN
1156: ROLLBACK TO COPY_Camp_Schedule_PUB;
1157: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1158: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1159: THEN
1160: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1161: END IF;
1162: -- Standard call to get message count and if count=1, get the message

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

1156: ROLLBACK TO COPY_Camp_Schedule_PUB;
1157: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1158: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1159: THEN
1160: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1161: END IF;
1162: -- Standard call to get message count and if count=1, get the message
1163: FND_MSG_PUB.Count_And_Get (
1164: p_encoded => FND_API.G_FALSE,

Line 1163: FND_MSG_PUB.Count_And_Get (

1159: THEN
1160: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1161: END IF;
1162: -- Standard call to get message count and if count=1, get the message
1163: FND_MSG_PUB.Count_And_Get (
1164: p_encoded => FND_API.G_FALSE,
1165: p_count => x_msg_count,
1166: p_data => x_msg_data
1167: );