DBA Data[Home] [Help]

APPS.AMS_IBA_PL_PAGES_PVT dependencies on FND_MSG_PUB

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

17: G_PKG_NAME CONSTANT VARCHAR2(30):= 'AMS_Iba_Pl_Pages_PVT';
18: G_FILE_NAME CONSTANT VARCHAR2(12) := 'amsvpagb.pls';
19:
20: -- Returns the no. of placements which uses this page
21: AMS_DEBUG_HIGH_ON constant boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
22: AMS_DEBUG_LOW_ON constant boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
23: AMS_DEBUG_MEDIUM_ON constant boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
24:
25: function check_page_placements(

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

18: G_FILE_NAME CONSTANT VARCHAR2(12) := 'amsvpagb.pls';
19:
20: -- Returns the no. of placements which uses this page
21: AMS_DEBUG_HIGH_ON constant boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
22: AMS_DEBUG_LOW_ON constant boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
23: AMS_DEBUG_MEDIUM_ON constant boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
24:
25: function check_page_placements(
26: p_page_id IN NUMBER

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

19:
20: -- Returns the no. of placements which uses this page
21: AMS_DEBUG_HIGH_ON constant boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
22: AMS_DEBUG_LOW_ON constant boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
23: AMS_DEBUG_MEDIUM_ON constant boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
24:
25: function check_page_placements(
26: p_page_id IN NUMBER
27: , p_validation_mode IN VARCHAR2

Line 142: FND_MSG_PUB.initialize;

138:
139: -- Initialize message list if p_init_msg_list is set to TRUE.
140: IF FND_API.to_Boolean( p_init_msg_list )
141: THEN
142: FND_MSG_PUB.initialize;
143: END IF;
144:
145: -- Debug Message
146: IF (AMS_DEBUG_HIGH_ON) THEN

Line 256: FND_MSG_PUB.Count_And_Get

252: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
253: END IF;
254:
255: -- Standard call to get message count and if count is 1, get message info.
256: FND_MSG_PUB.Count_And_Get
257: (p_count => x_msg_count,
258: p_data => x_msg_data
259: );
260: EXCEPTION

Line 270: FND_MSG_PUB.Count_And_Get (

266: WHEN FND_API.G_EXC_ERROR THEN
267: ROLLBACK TO CREATE_Iba_Pl_Pages_PVT;
268: x_return_status := FND_API.G_RET_STS_ERROR;
269: -- Standard call to get message count and if count=1, get the message
270: FND_MSG_PUB.Count_And_Get (
271: p_encoded => FND_API.G_FALSE,
272: p_count => x_msg_count,
273: p_data => x_msg_data
274: );

Line 280: FND_MSG_PUB.Count_And_Get (

276: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
277: ROLLBACK TO CREATE_Iba_Pl_Pages_PVT;
278: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
279: -- Standard call to get message count and if count=1, get the message
280: FND_MSG_PUB.Count_And_Get (
281: p_encoded => FND_API.G_FALSE,
282: p_count => x_msg_count,
283: p_data => x_msg_data
284: );

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

285:
286: WHEN OTHERS THEN
287: ROLLBACK TO CREATE_Iba_Pl_Pages_PVT;
288: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
289: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
290: THEN
291: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
292: END IF;
293: -- Standard call to get message count and if count=1, get the message

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

287: ROLLBACK TO CREATE_Iba_Pl_Pages_PVT;
288: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
289: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
290: THEN
291: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
292: END IF;
293: -- Standard call to get message count and if count=1, get the message
294: FND_MSG_PUB.Count_And_Get (
295: p_encoded => FND_API.G_FALSE,

Line 294: FND_MSG_PUB.Count_And_Get (

290: THEN
291: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
292: END IF;
293: -- Standard call to get message count and if count=1, get the message
294: FND_MSG_PUB.Count_And_Get (
295: p_encoded => FND_API.G_FALSE,
296: p_count => x_msg_count,
297: p_data => x_msg_data
298: );

Line 349: FND_MSG_PUB.initialize;

345:
346: -- Initialize message list if p_init_msg_list is set to TRUE.
347: IF FND_API.to_Boolean( p_init_msg_list )
348: THEN
349: FND_MSG_PUB.initialize;
350: END IF;
351:
352: -- Debug Message
353: IF (AMS_DEBUG_HIGH_ON) THEN

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

418: );
419:
420: IF (l_pagerefcode_changed = fnd_api.g_true)
421: THEN
422: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
423: THEN
424: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLEXIST_PG_REF_NOUPD');
425: FND_MSG_PUB.add;
426: END IF;

Line 425: FND_MSG_PUB.add;

421: THEN
422: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
423: THEN
424: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLEXIST_PG_REF_NOUPD');
425: FND_MSG_PUB.add;
426: END IF;
427: RAISE FND_API.g_exc_error;
428: END IF;
429: END IF;

Line 459: -- IF (AMS_DEBUG_HIGH_ON) THEN AMS_UTILITY_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler'); END IF;

455: END IF;
456:
457:
458: -- Debug Message
459: -- IF (AMS_DEBUG_HIGH_ON) THEN AMS_UTILITY_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler'); END IF;
460:
461: -- Invoke table handler(AMS_IBA_PL_PAGES_B_PKG.Update_Row)
462: AMS_IBA_PL_PAGES_B_PKG.Update_Row(
463: p_page_id => p_iba_pl_pages_rec.page_id,

Line 496: FND_MSG_PUB.Count_And_Get

492: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
493: END IF;
494:
495: -- Standard call to get message count and if count is 1, get message info.
496: FND_MSG_PUB.Count_And_Get
497: (p_count => x_msg_count,
498: p_data => x_msg_data
499: );
500: EXCEPTION

Line 510: FND_MSG_PUB.Count_And_Get (

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

Line 520: FND_MSG_PUB.Count_And_Get (

516: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
517: ROLLBACK TO UPDATE_Iba_Pl_Pages_PVT;
518: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
519: -- Standard call to get message count and if count=1, get the message
520: FND_MSG_PUB.Count_And_Get (
521: p_encoded => FND_API.G_FALSE,
522: p_count => x_msg_count,
523: p_data => x_msg_data
524: );

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

525:
526: WHEN OTHERS THEN
527: ROLLBACK TO UPDATE_Iba_Pl_Pages_PVT;
528: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
529: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
530: THEN
531: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
532: END IF;
533: -- Standard call to get message count and if count=1, get the message

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

527: ROLLBACK TO UPDATE_Iba_Pl_Pages_PVT;
528: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
529: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
530: THEN
531: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
532: END IF;
533: -- Standard call to get message count and if count=1, get the message
534: FND_MSG_PUB.Count_And_Get (
535: p_encoded => FND_API.G_FALSE,

Line 534: FND_MSG_PUB.Count_And_Get (

530: THEN
531: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
532: END IF;
533: -- Standard call to get message count and if count=1, get the message
534: FND_MSG_PUB.Count_And_Get (
535: p_encoded => FND_API.G_FALSE,
536: p_count => x_msg_count,
537: p_data => x_msg_data
538: );

Line 574: FND_MSG_PUB.initialize;

570:
571: -- Initialize message list if p_init_msg_list is set to TRUE.
572: IF FND_API.to_Boolean( p_init_msg_list )
573: THEN
574: FND_MSG_PUB.initialize;
575: END IF;
576:
577: -- Debug Message
578: IF (AMS_DEBUG_HIGH_ON) THEN

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

601: );
602:
603: IF (l_page_placements <> 0)
604: THEN
605: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
606: THEN
607: FND_MESSAGE.set_name('AMS','AMS_PLCE_PAGE_HAS_PLACEMENTS');
608: FND_MSG_PUB.add;
609: END IF;

Line 608: FND_MSG_PUB.add;

604: THEN
605: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
606: THEN
607: FND_MESSAGE.set_name('AMS','AMS_PLCE_PAGE_HAS_PLACEMENTS');
608: FND_MSG_PUB.add;
609: END IF;
610: RAISE FND_API.g_exc_error;
611: ELSE
612: -- Invoke table handler(AMS_IBA_PL_PAGES_B_PKG.Delete_Row)

Line 635: FND_MSG_PUB.Count_And_Get

631: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
632: END IF;
633:
634: -- Standard call to get message count and if count is 1, get message info.
635: FND_MSG_PUB.Count_And_Get
636: (p_count => x_msg_count,
637: p_data => x_msg_data
638: );
639: EXCEPTION

Line 649: FND_MSG_PUB.Count_And_Get (

645: WHEN FND_API.G_EXC_ERROR THEN
646: ROLLBACK TO DELETE_Iba_Pl_Pages_PVT;
647: x_return_status := FND_API.G_RET_STS_ERROR;
648: -- Standard call to get message count and if count=1, get the message
649: FND_MSG_PUB.Count_And_Get (
650: p_encoded => FND_API.G_FALSE,
651: p_count => x_msg_count,
652: p_data => x_msg_data
653: );

Line 659: FND_MSG_PUB.Count_And_Get (

655: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
656: ROLLBACK TO DELETE_Iba_Pl_Pages_PVT;
657: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
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 668: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

664:
665: WHEN OTHERS THEN
666: ROLLBACK TO DELETE_Iba_Pl_Pages_PVT;
667: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
668: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
669: THEN
670: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
671: END IF;
672: -- Standard call to get message count and if count=1, get the message

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

666: ROLLBACK TO DELETE_Iba_Pl_Pages_PVT;
667: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
668: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
669: THEN
670: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
671: END IF;
672: -- Standard call to get message count and if count=1, get the message
673: FND_MSG_PUB.Count_And_Get (
674: p_encoded => FND_API.G_FALSE,

Line 673: FND_MSG_PUB.Count_And_Get (

669: THEN
670: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
671: END IF;
672: -- Standard call to get message count and if count=1, get the message
673: FND_MSG_PUB.Count_And_Get (
674: p_encoded => FND_API.G_FALSE,
675: p_count => x_msg_count,
676: p_data => x_msg_data
677: );

Line 717: FND_MSG_PUB.initialize;

713:
714: -- Initialize message list if p_init_msg_list is set to TRUE.
715: IF FND_API.to_Boolean( p_init_msg_list )
716: THEN
717: FND_MSG_PUB.initialize;
718: END IF;
719:
720: -- Standard call to check for call compatibility.
721: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

745: FETCH c_Iba_Pl_Pages INTO l_PAGE_ID;
746:
747: IF (c_Iba_Pl_Pages%NOTFOUND) THEN
748: CLOSE c_Iba_Pl_Pages;
749: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
750: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
751: FND_MSG_PUB.add;
752: END IF;
753: RAISE FND_API.g_exc_error;

Line 751: FND_MSG_PUB.add;

747: IF (c_Iba_Pl_Pages%NOTFOUND) THEN
748: CLOSE c_Iba_Pl_Pages;
749: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
750: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
751: FND_MSG_PUB.add;
752: END IF;
753: RAISE FND_API.g_exc_error;
754: END IF;
755:

Line 759: FND_MSG_PUB.count_and_get(

755:
756: CLOSE c_Iba_Pl_Pages;
757:
758: -------------------- finish --------------------------
759: FND_MSG_PUB.count_and_get(
760: p_encoded => FND_API.g_false,
761: p_count => x_msg_count,
762: p_data => x_msg_data);
763: IF (AMS_DEBUG_HIGH_ON) THEN

Line 777: FND_MSG_PUB.Count_And_Get (

773: WHEN FND_API.G_EXC_ERROR THEN
774: ROLLBACK TO LOCK_Iba_Pl_Pages_PVT;
775: x_return_status := FND_API.G_RET_STS_ERROR;
776: -- Standard call to get message count and if count=1, get the message
777: FND_MSG_PUB.Count_And_Get (
778: p_encoded => FND_API.G_FALSE,
779: p_count => x_msg_count,
780: p_data => x_msg_data
781: );

Line 787: FND_MSG_PUB.Count_And_Get (

783: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
784: ROLLBACK TO LOCK_Iba_Pl_Pages_PVT;
785: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
786: -- Standard call to get message count and if count=1, get the message
787: FND_MSG_PUB.Count_And_Get (
788: p_encoded => FND_API.G_FALSE,
789: p_count => x_msg_count,
790: p_data => x_msg_data
791: );

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

792:
793: WHEN OTHERS THEN
794: ROLLBACK TO LOCK_Iba_Pl_Pages_PVT;
795: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
796: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
797: THEN
798: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
799: END IF;
800: -- Standard call to get message count and if count=1, get the message

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

794: ROLLBACK TO LOCK_Iba_Pl_Pages_PVT;
795: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
796: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
797: THEN
798: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
799: END IF;
800: -- Standard call to get message count and if count=1, get the message
801: FND_MSG_PUB.Count_And_Get (
802: p_encoded => FND_API.G_FALSE,

Line 801: FND_MSG_PUB.Count_And_Get (

797: THEN
798: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
799: END IF;
800: -- Standard call to get message count and if count=1, get the message
801: FND_MSG_PUB.Count_And_Get (
802: p_encoded => FND_API.G_FALSE,
803: p_count => x_msg_count,
804: p_data => x_msg_data
805: );

Line 1221: FND_MSG_PUB.initialize;

1217:
1218: -- Initialize message list if p_init_msg_list is set to TRUE.
1219: IF FND_API.to_Boolean( p_init_msg_list )
1220: THEN
1221: FND_MSG_PUB.initialize;
1222: END IF;
1223: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN
1224: Check_iba_pl_pages_Items(
1225: p_iba_pl_pages_rec => p_iba_pl_pages_rec,

Line 1277: FND_MSG_PUB.Count_And_Get

1273: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
1274: END IF;
1275:
1276: -- Standard call to get message count and if count is 1, get message info.
1277: FND_MSG_PUB.Count_And_Get
1278: (p_count => x_msg_count,
1279: p_data => x_msg_data
1280: );
1281: EXCEPTION

Line 1291: FND_MSG_PUB.Count_And_Get (

1287: WHEN FND_API.G_EXC_ERROR THEN
1288: ROLLBACK TO VALIDATE_Iba_Pl_Pages_;
1289: x_return_status := FND_API.G_RET_STS_ERROR;
1290: -- Standard call to get message count and if count=1, get the message
1291: FND_MSG_PUB.Count_And_Get (
1292: p_encoded => FND_API.G_FALSE,
1293: p_count => x_msg_count,
1294: p_data => x_msg_data
1295: );

Line 1301: FND_MSG_PUB.Count_And_Get (

1297: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1298: ROLLBACK TO VALIDATE_Iba_Pl_Pages_;
1299: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1300: -- Standard call to get message count and if count=1, get the message
1301: FND_MSG_PUB.Count_And_Get (
1302: p_encoded => FND_API.G_FALSE,
1303: p_count => x_msg_count,
1304: p_data => x_msg_data
1305: );

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

1306:
1307: WHEN OTHERS THEN
1308: ROLLBACK TO VALIDATE_Iba_Pl_Pages_;
1309: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1310: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1311: THEN
1312: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1313: END IF;
1314: -- Standard call to get message count and if count=1, get the message

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

1308: ROLLBACK TO VALIDATE_Iba_Pl_Pages_;
1309: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1310: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1311: THEN
1312: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1313: END IF;
1314: -- Standard call to get message count and if count=1, get the message
1315: FND_MSG_PUB.Count_And_Get (
1316: p_encoded => FND_API.G_FALSE,

Line 1315: FND_MSG_PUB.Count_And_Get (

1311: THEN
1312: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1313: END IF;
1314: -- Standard call to get message count and if count=1, get the message
1315: FND_MSG_PUB.Count_And_Get (
1316: p_encoded => FND_API.G_FALSE,
1317: p_count => x_msg_count,
1318: p_data => x_msg_data
1319: );

Line 1336: FND_MSG_PUB.initialize;

1332: BEGIN
1333: -- Initialize message list if p_init_msg_list is set to TRUE.
1334: IF FND_API.to_Boolean( p_init_msg_list )
1335: THEN
1336: FND_MSG_PUB.initialize;
1337: END IF;
1338:
1339: -- Initialize API return status to SUCCESS
1340: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1353: FND_MSG_PUB.Count_And_Get

1349:
1350: AMS_UTILITY_PVT.debug_message('Private API: Validate_dm_model_rec');
1351: END IF;
1352: -- Standard call to get message count and if count is 1, get message info.
1353: FND_MSG_PUB.Count_And_Get
1354: (p_count => x_msg_count,
1355: p_data => x_msg_data
1356: );
1357: END Validate_iba_pl_pages_Rec;