DBA Data[Home] [Help]

APPS.AMS_MET_TPL_DTL_PVT dependencies on FND_MSG_PUB

Line 23: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

19:
20: G_PKG_NAME CONSTANT VARCHAR2(30):= 'AMS_Met_Tpl_Dtl_PVT';
21: G_FILE_NAME CONSTANT VARCHAR2(12) := 'amsvmtdb.pls';
22:
23: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
24: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
25: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
26:
27: PROCEDURE Complete_met_tpl_dtl_Rec (

Line 24: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);

20: G_PKG_NAME CONSTANT VARCHAR2(30):= 'AMS_Met_Tpl_Dtl_PVT';
21: G_FILE_NAME CONSTANT VARCHAR2(12) := 'amsvmtdb.pls';
22:
23: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
24: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
25: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
26:
27: PROCEDURE Complete_met_tpl_dtl_Rec (
28: p_ref_met_tpl_dtl_rec IN met_tpl_dtl_rec_type,

Line 25: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);

21: G_FILE_NAME CONSTANT VARCHAR2(12) := 'amsvmtdb.pls';
22:
23: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
24: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
25: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
26:
27: PROCEDURE Complete_met_tpl_dtl_Rec (
28: p_ref_met_tpl_dtl_rec IN met_tpl_dtl_rec_type,
29: x_tar_met_tpl_dtl_rec IN OUT NOCOPY met_tpl_dtl_rec_type);

Line 82: FND_MSG_PUB.initialize;

78:
79: -- Initialize message list if p_init_msg_list is set to TRUE.
80: IF FND_API.to_Boolean( p_init_msg_list )
81: THEN
82: FND_MSG_PUB.initialize;
83: END IF;
84:
85: -- Debug Message
86: IF (AMS_DEBUG_HIGH_ON) THEN

Line 94: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)

90:
91: --sunkumar 30/01/2003
92: --check if the template is a seeded one
93: /* IF p_met_tpl_dtl_rec.metric_tpl_header_id < 10000 THEN
94: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
95: THEN
96: Ams_Utility_Pvt.Error_Message(p_message_name => 'AMS_METR_TPL_SEEDED');
97: END IF;
98:

Line 200: FND_MSG_PUB.Count_And_Get

196: Ams_Utility_Pvt.debug_message('Private API: ' || l_api_name || ': end');
197: END IF;
198:
199: -- Standard call to get message count and if count is 1, get message info.
200: FND_MSG_PUB.Count_And_Get
201: (p_count => x_msg_count,
202: p_data => x_msg_data
203: );
204: EXCEPTION

Line 214: FND_MSG_PUB.Count_And_Get (

210: WHEN FND_API.G_EXC_ERROR THEN
211: ROLLBACK TO CREATE_Met_Tpl_Dtl_PVT;
212: x_return_status := FND_API.G_RET_STS_ERROR;
213: -- Standard call to get message count and if count=1, get the message
214: FND_MSG_PUB.Count_And_Get (
215: p_encoded => FND_API.G_FALSE,
216: p_count => x_msg_count,
217: p_data => x_msg_data
218: );

Line 224: FND_MSG_PUB.Count_And_Get (

220: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
221: ROLLBACK TO CREATE_Met_Tpl_Dtl_PVT;
222: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
223: -- Standard call to get message count and if count=1, get the message
224: FND_MSG_PUB.Count_And_Get (
225: p_encoded => FND_API.G_FALSE,
226: p_count => x_msg_count,
227: p_data => x_msg_data
228: );

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

229:
230: WHEN OTHERS THEN
231: ROLLBACK TO CREATE_Met_Tpl_Dtl_PVT;
232: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
233: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
234: THEN
235: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
236: END IF;
237: -- Standard call to get message count and if count=1, get the message

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

231: ROLLBACK TO CREATE_Met_Tpl_Dtl_PVT;
232: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
233: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
234: THEN
235: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
236: END IF;
237: -- Standard call to get message count and if count=1, get the message
238: FND_MSG_PUB.Count_And_Get (
239: p_encoded => FND_API.G_FALSE,

Line 238: FND_MSG_PUB.Count_And_Get (

234: THEN
235: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
236: END IF;
237: -- Standard call to get message count and if count=1, get the message
238: FND_MSG_PUB.Count_And_Get (
239: p_encoded => FND_API.G_FALSE,
240: p_count => x_msg_count,
241: p_data => x_msg_data
242: );

Line 300: FND_MSG_PUB.initialize;

296:
297: -- Initialize message list if p_init_msg_list is set to TRUE.
298: IF FND_API.to_Boolean( p_init_msg_list )
299: THEN
300: FND_MSG_PUB.initialize;
301: END IF;
302:
303: -- Debug Message
304: IF (AMS_DEBUG_HIGH_ON) THEN

Line 364: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)

360: IF (( (l_tar_met_tpl_dtl_rec.metric_template_detail_id <>l_ref_met_tpl_dtl_rec.metric_template_detail_id )
361: OR (l_tar_met_tpl_dtl_rec.metric_id <>l_ref_met_tpl_dtl_rec.metric_id)
362: OR (l_tar_met_tpl_dtl_rec.metric_tpl_header_id <>l_ref_met_tpl_dtl_rec.metric_tpl_header_id))
363: AND (l_tar_met_tpl_dtl_rec.enabled_flag=l_ref_met_tpl_dtl_rec.enabled_flag)) THEN
364: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
365: THEN
366: Ams_Utility_Pvt.Error_Message(p_message_name => 'AMS_METR_TPL_SEEDED_MOD');
367: END IF;
368:

Line 444: FND_MSG_PUB.Count_And_Get

440: Ams_Utility_Pvt.debug_message('Private API: ' || l_api_name || ': end');
441: END IF;
442:
443: -- Standard call to get message count and if count is 1, get message info.
444: FND_MSG_PUB.Count_And_Get
445: (p_count => x_msg_count,
446: p_data => x_msg_data
447: );
448: EXCEPTION

Line 458: FND_MSG_PUB.Count_And_Get (

454: WHEN FND_API.G_EXC_ERROR THEN
455: ROLLBACK TO UPDATE_Met_Tpl_Dtl_PVT;
456: x_return_status := FND_API.G_RET_STS_ERROR;
457: -- Standard call to get message count and if count=1, get the message
458: FND_MSG_PUB.Count_And_Get (
459: p_encoded => FND_API.G_FALSE,
460: p_count => x_msg_count,
461: p_data => x_msg_data
462: );

Line 468: FND_MSG_PUB.Count_And_Get (

464: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
465: ROLLBACK TO UPDATE_Met_Tpl_Dtl_PVT;
466: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
467: -- Standard call to get message count and if count=1, get the message
468: FND_MSG_PUB.Count_And_Get (
469: p_encoded => FND_API.G_FALSE,
470: p_count => x_msg_count,
471: p_data => x_msg_data
472: );

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

473:
474: WHEN OTHERS THEN
475: ROLLBACK TO UPDATE_Met_Tpl_Dtl_PVT;
476: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
477: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
478: THEN
479: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
480: END IF;
481: -- Standard call to get message count and if count=1, get the message

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

475: ROLLBACK TO UPDATE_Met_Tpl_Dtl_PVT;
476: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
477: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
478: THEN
479: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
480: END IF;
481: -- Standard call to get message count and if count=1, get the message
482: FND_MSG_PUB.Count_And_Get (
483: p_encoded => FND_API.G_FALSE,

Line 482: FND_MSG_PUB.Count_And_Get (

478: THEN
479: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
480: END IF;
481: -- Standard call to get message count and if count=1, get the message
482: FND_MSG_PUB.Count_And_Get (
483: p_encoded => FND_API.G_FALSE,
484: p_count => x_msg_count,
485: p_data => x_msg_data
486: );

Line 523: FND_MSG_PUB.initialize;

519:
520: -- Initialize message list if p_init_msg_list is set to TRUE.
521: IF FND_API.to_Boolean( p_init_msg_list )
522: THEN
523: FND_MSG_PUB.initialize;
524: END IF;
525:
526: -- Debug Message
527: IF (AMS_DEBUG_HIGH_ON) THEN

Line 535: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)

531:
532: --sunkumar 30/01/2003
533: --check if the template is a seeded one
534: IF p_metric_template_detail_id < 10000 THEN
535: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
536: THEN
537: Ams_Utility_Pvt.Error_Message(p_message_name => 'AMS_METR_TPL_SEEDED');
538: END IF;
539:

Line 576: FND_MSG_PUB.Count_And_Get

572: Ams_Utility_Pvt.debug_message('Private API: ' || l_api_name || ': end');
573: END IF;
574:
575: -- Standard call to get message count and if count is 1, get message info.
576: FND_MSG_PUB.Count_And_Get
577: (p_count => x_msg_count,
578: p_data => x_msg_data
579: );
580: EXCEPTION

Line 590: FND_MSG_PUB.Count_And_Get (

586: WHEN FND_API.G_EXC_ERROR THEN
587: ROLLBACK TO DELETE_Met_Tpl_Dtl_PVT;
588: x_return_status := FND_API.G_RET_STS_ERROR;
589: -- Standard call to get message count and if count=1, get the message
590: FND_MSG_PUB.Count_And_Get (
591: p_encoded => FND_API.G_FALSE,
592: p_count => x_msg_count,
593: p_data => x_msg_data
594: );

Line 600: FND_MSG_PUB.Count_And_Get (

596: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
597: ROLLBACK TO DELETE_Met_Tpl_Dtl_PVT;
598: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
599: -- Standard call to get message count and if count=1, get the message
600: FND_MSG_PUB.Count_And_Get (
601: p_encoded => FND_API.G_FALSE,
602: p_count => x_msg_count,
603: p_data => x_msg_data
604: );

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

605:
606: WHEN OTHERS THEN
607: ROLLBACK TO DELETE_Met_Tpl_Dtl_PVT;
608: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
609: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
610: THEN
611: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
612: END IF;
613: -- Standard call to get message count and if count=1, get the message

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

607: ROLLBACK TO DELETE_Met_Tpl_Dtl_PVT;
608: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
609: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
610: THEN
611: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
612: END IF;
613: -- Standard call to get message count and if count=1, get the message
614: FND_MSG_PUB.Count_And_Get (
615: p_encoded => FND_API.G_FALSE,

Line 614: FND_MSG_PUB.Count_And_Get (

610: THEN
611: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
612: END IF;
613: -- Standard call to get message count and if count=1, get the message
614: FND_MSG_PUB.Count_And_Get (
615: p_encoded => FND_API.G_FALSE,
616: p_count => x_msg_count,
617: p_data => x_msg_data
618: );

Line 660: FND_MSG_PUB.initialize;

656:
657: -- Initialize message list if p_init_msg_list is set to TRUE.
658: IF FND_API.to_Boolean( p_init_msg_list )
659: THEN
660: FND_MSG_PUB.initialize;
661: END IF;
662:
663: -- Standard call to check for call compatibility.
664: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

688: FETCH c_Met_Tpl_Dtl INTO l_METRIC_TEMPLATE_DETAIL_ID;
689:
690: IF (c_Met_Tpl_Dtl%NOTFOUND) THEN
691: CLOSE c_Met_Tpl_Dtl;
692: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
693: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
694: FND_MSG_PUB.ADD;
695: END IF;
696: RAISE FND_API.g_exc_error;

Line 694: FND_MSG_PUB.ADD;

690: IF (c_Met_Tpl_Dtl%NOTFOUND) THEN
691: CLOSE c_Met_Tpl_Dtl;
692: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
693: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
694: FND_MSG_PUB.ADD;
695: END IF;
696: RAISE FND_API.g_exc_error;
697: END IF;
698:

Line 702: FND_MSG_PUB.count_and_get(

698:
699: CLOSE c_Met_Tpl_Dtl;
700:
701: -------------------- finish --------------------------
702: FND_MSG_PUB.count_and_get(
703: p_encoded => FND_API.g_false,
704: p_count => x_msg_count,
705: p_data => x_msg_data);
706: IF (AMS_DEBUG_HIGH_ON) THEN

Line 720: FND_MSG_PUB.Count_And_Get (

716: WHEN FND_API.G_EXC_ERROR THEN
717: ROLLBACK TO LOCK_Met_Tpl_Dtl_PVT;
718: x_return_status := FND_API.G_RET_STS_ERROR;
719: -- Standard call to get message count and if count=1, get the message
720: FND_MSG_PUB.Count_And_Get (
721: p_encoded => FND_API.G_FALSE,
722: p_count => x_msg_count,
723: p_data => x_msg_data
724: );

Line 730: FND_MSG_PUB.Count_And_Get (

726: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
727: ROLLBACK TO LOCK_Met_Tpl_Dtl_PVT;
728: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
729: -- Standard call to get message count and if count=1, get the message
730: FND_MSG_PUB.Count_And_Get (
731: p_encoded => FND_API.G_FALSE,
732: p_count => x_msg_count,
733: p_data => x_msg_data
734: );

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

735:
736: WHEN OTHERS THEN
737: ROLLBACK TO LOCK_Met_Tpl_Dtl_PVT;
738: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
739: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
740: THEN
741: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
742: END IF;
743: -- Standard call to get message count and if count=1, get the message

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

737: ROLLBACK TO LOCK_Met_Tpl_Dtl_PVT;
738: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
739: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
740: THEN
741: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
742: END IF;
743: -- Standard call to get message count and if count=1, get the message
744: FND_MSG_PUB.Count_And_Get (
745: p_encoded => FND_API.G_FALSE,

Line 744: FND_MSG_PUB.Count_And_Get (

740: THEN
741: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
742: END IF;
743: -- Standard call to get message count and if count=1, get the message
744: FND_MSG_PUB.Count_And_Get (
745: p_encoded => FND_API.G_FALSE,
746: p_count => x_msg_count,
747: p_data => x_msg_data
748: );

Line 1073: FND_MSG_PUB.initialize;

1069:
1070: -- Initialize message list if p_init_msg_list is set to TRUE.
1071: IF FND_API.to_Boolean( p_init_msg_list )
1072: THEN
1073: FND_MSG_PUB.initialize;
1074: END IF;
1075: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN
1076: Check_met_tpl_dtl_Items(
1077: p_met_tpl_dtl_rec => p_met_tpl_dtl_rec,

Line 1129: FND_MSG_PUB.Count_And_Get

1125: Ams_Utility_Pvt.debug_message('PRIVATE API: ' || l_api_name || ': END');
1126: END IF;
1127:
1128: -- Standard call to get message count and if count is 1, get message info.
1129: FND_MSG_PUB.Count_And_Get
1130: (p_count => x_msg_count,
1131: p_data => x_msg_data
1132: );
1133: EXCEPTION

Line 1143: FND_MSG_PUB.Count_And_Get (

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

Line 1153: FND_MSG_PUB.Count_And_Get (

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

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

1158:
1159: WHEN OTHERS THEN
1160: ROLLBACK TO VALIDATE_Met_Tpl_Dtl_;
1161: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1162: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1163: THEN
1164: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1165: END IF;
1166: -- Standard call to get message count and if count=1, get the message

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

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

Line 1167: FND_MSG_PUB.Count_And_Get (

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

Line 1188: FND_MSG_PUB.initialize;

1184: BEGIN
1185: -- Initialize message list if p_init_msg_list is set to TRUE.
1186: IF FND_API.to_Boolean( p_init_msg_list )
1187: THEN
1188: FND_MSG_PUB.initialize;
1189: END IF;
1190:
1191: -- Initialize API return status to SUCCESS
1192: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1205: FND_MSG_PUB.Count_And_Get

1201:
1202: Ams_Utility_Pvt.debug_message('PRIVATE API: Validate_met_tpl_dtl_rec');
1203: END IF;
1204: -- Standard call to get message count and if count is 1, get message info.
1205: FND_MSG_PUB.Count_And_Get
1206: (p_count => x_msg_count,
1207: p_data => x_msg_data
1208: );
1209: END Validate_met_tpl_dtl_Rec;