DBA Data[Home] [Help]

APPS.AMS_IBA_PL_STYLESHEETS_PVT dependencies on FND_MSG_PUB

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

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

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

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

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

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

Line 102: FND_MSG_PUB.initialize;

98:
99: -- Initialize message list if p_init_msg_list is set to TRUE.
100: IF FND_API.to_Boolean( p_init_msg_list )
101: THEN
102: FND_MSG_PUB.initialize;
103: END IF;
104:
105: -- Debug Message
106: IF (AMS_DEBUG_HIGH_ON) THEN

Line 212: FND_MSG_PUB.Count_And_Get

208: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
209: END IF;
210:
211: -- Standard call to get message count and if count is 1, get message info.
212: FND_MSG_PUB.Count_And_Get
213: (p_count => x_msg_count,
214: p_data => x_msg_data
215: );
216: EXCEPTION

Line 226: FND_MSG_PUB.Count_And_Get (

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

Line 240: FND_MSG_PUB.Count_And_Get (

236: END IF;
237: ROLLBACK TO CREATE_Iba_Pl_Stylesheets_PVT;
238: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
239: -- Standard call to get message count and if count=1, get the message
240: FND_MSG_PUB.Count_And_Get (
241: p_encoded => FND_API.G_FALSE,
242: p_count => x_msg_count,
243: p_data => x_msg_data
244: );

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

249: AMS_UTILITY_PVT.debug_message( 'Private API: in others'|| x_return_status);
250: END IF;
251: ROLLBACK TO CREATE_Iba_Pl_Stylesheets_PVT;
252: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
253: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
254: THEN
255: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
256: END IF;
257: -- Standard call to get message count and if count=1, get the message

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

251: ROLLBACK TO CREATE_Iba_Pl_Stylesheets_PVT;
252: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
253: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
254: THEN
255: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
256: END IF;
257: -- Standard call to get message count and if count=1, get the message
258: FND_MSG_PUB.Count_And_Get (
259: p_encoded => FND_API.G_FALSE,

Line 258: FND_MSG_PUB.Count_And_Get (

254: THEN
255: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
256: END IF;
257: -- Standard call to get message count and if count=1, get the message
258: FND_MSG_PUB.Count_And_Get (
259: p_encoded => FND_API.G_FALSE,
260: p_count => x_msg_count,
261: p_data => x_msg_data
262: );

Line 312: FND_MSG_PUB.initialize;

308:
309: -- Initialize message list if p_init_msg_list is set to TRUE.
310: IF FND_API.to_Boolean( p_init_msg_list )
311: THEN
312: FND_MSG_PUB.initialize;
313: END IF;
314:
315: -- Debug Message
316: IF (AMS_DEBUG_HIGH_ON) THEN

Line 393: -- 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;

389: END IF;
390:
391:
392: -- Debug Message
393: -- 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;
394:
395: -- Invoke table handler(AMS_IBA_PL_STYLESHTS_B_PKG.Update_Row)
396: AMS_IBA_PL_STYLESHTS_B_PKG.Update_Row(
397: p_stylesheet_id => p_iba_pl_stylesheets_rec.stylesheet_id,

Line 429: FND_MSG_PUB.Count_And_Get

425: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
426: END IF;
427:
428: -- Standard call to get message count and if count is 1, get message info.
429: FND_MSG_PUB.Count_And_Get
430: (p_count => x_msg_count,
431: p_data => x_msg_data
432: );
433: EXCEPTION

Line 443: FND_MSG_PUB.Count_And_Get (

439: WHEN FND_API.G_EXC_ERROR THEN
440: ROLLBACK TO UPDATE_Iba_Pl_Stylesheets_PVT;
441: x_return_status := FND_API.G_RET_STS_ERROR;
442: -- Standard call to get message count and if count=1, get the message
443: FND_MSG_PUB.Count_And_Get (
444: p_encoded => FND_API.G_FALSE,
445: p_count => x_msg_count,
446: p_data => x_msg_data
447: );

Line 453: FND_MSG_PUB.Count_And_Get (

449: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
450: ROLLBACK TO UPDATE_Iba_Pl_Stylesheets_PVT;
451: x_return_status := FND_API.G_RET_STS_UNEXP_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 462: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

458:
459: WHEN OTHERS THEN
460: ROLLBACK TO UPDATE_Iba_Pl_Stylesheets_PVT;
461: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
462: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
463: THEN
464: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
465: END IF;
466: -- Standard call to get message count and if count=1, get the message

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

460: ROLLBACK TO UPDATE_Iba_Pl_Stylesheets_PVT;
461: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
462: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
463: THEN
464: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
465: END IF;
466: -- Standard call to get message count and if count=1, get the message
467: FND_MSG_PUB.Count_And_Get (
468: p_encoded => FND_API.G_FALSE,

Line 467: FND_MSG_PUB.Count_And_Get (

463: THEN
464: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
465: END IF;
466: -- Standard call to get message count and if count=1, get the message
467: FND_MSG_PUB.Count_And_Get (
468: p_encoded => FND_API.G_FALSE,
469: p_count => x_msg_count,
470: p_data => x_msg_data
471: );

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: IF (AMS_DEBUG_HIGH_ON) THEN

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

537: );
538:
539: IF (l_style_placements <> 0)
540: THEN
541: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
542: THEN
543: FND_MESSAGE.set_name('AMS','AMS_PLCE_STYLE_HAS_PLACEMENTS');
544: FND_MSG_PUB.add;
545: END IF;

Line 544: FND_MSG_PUB.add;

540: THEN
541: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
542: THEN
543: FND_MESSAGE.set_name('AMS','AMS_PLCE_STYLE_HAS_PLACEMENTS');
544: FND_MSG_PUB.add;
545: END IF;
546: RAISE FND_API.g_exc_error;
547: ELSE
548: -- Invoke table handler(AMS_IBA_PL_STYLESHTS_B_PKG.Delete_Row)

Line 570: FND_MSG_PUB.Count_And_Get

566: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
567: END IF;
568:
569: -- Standard call to get message count and if count is 1, get message info.
570: FND_MSG_PUB.Count_And_Get
571: (p_count => x_msg_count,
572: p_data => x_msg_data
573: );
574: EXCEPTION

Line 584: FND_MSG_PUB.Count_And_Get (

580: WHEN FND_API.G_EXC_ERROR THEN
581: ROLLBACK TO DELETE_Iba_Pl_Stylesheets_PVT;
582: x_return_status := FND_API.G_RET_STS_ERROR;
583: -- Standard call to get message count and if count=1, get the message
584: FND_MSG_PUB.Count_And_Get (
585: p_encoded => FND_API.G_FALSE,
586: p_count => x_msg_count,
587: p_data => x_msg_data
588: );

Line 594: FND_MSG_PUB.Count_And_Get (

590: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
591: ROLLBACK TO DELETE_Iba_Pl_Stylesheets_PVT;
592: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
593: -- Standard call to get message count and if count=1, get the message
594: FND_MSG_PUB.Count_And_Get (
595: p_encoded => FND_API.G_FALSE,
596: p_count => x_msg_count,
597: p_data => x_msg_data
598: );

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

599:
600: WHEN OTHERS THEN
601: ROLLBACK TO DELETE_Iba_Pl_Stylesheets_PVT;
602: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
603: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
604: THEN
605: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
606: END IF;
607: -- Standard call to get message count and if count=1, get the message

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

601: ROLLBACK TO DELETE_Iba_Pl_Stylesheets_PVT;
602: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
603: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
604: THEN
605: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
606: END IF;
607: -- Standard call to get message count and if count=1, get the message
608: FND_MSG_PUB.Count_And_Get (
609: p_encoded => FND_API.G_FALSE,

Line 608: FND_MSG_PUB.Count_And_Get (

604: THEN
605: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
606: END IF;
607: -- Standard call to get message count and if count=1, get the message
608: FND_MSG_PUB.Count_And_Get (
609: p_encoded => FND_API.G_FALSE,
610: p_count => x_msg_count,
611: p_data => x_msg_data
612: );

Line 654: FND_MSG_PUB.initialize;

650:
651: -- Initialize message list if p_init_msg_list is set to TRUE.
652: IF FND_API.to_Boolean( p_init_msg_list )
653: THEN
654: FND_MSG_PUB.initialize;
655: END IF;
656:
657: -- Standard call to check for call compatibility.
658: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

682: FETCH c_Iba_Pl_Stylesheets INTO l_STYLESHEET_ID;
683:
684: IF (c_Iba_Pl_Stylesheets%NOTFOUND) THEN
685: CLOSE c_Iba_Pl_Stylesheets;
686: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
687: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
688: FND_MSG_PUB.add;
689: END IF;
690: RAISE FND_API.g_exc_error;

Line 688: FND_MSG_PUB.add;

684: IF (c_Iba_Pl_Stylesheets%NOTFOUND) THEN
685: CLOSE c_Iba_Pl_Stylesheets;
686: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
687: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
688: FND_MSG_PUB.add;
689: END IF;
690: RAISE FND_API.g_exc_error;
691: END IF;
692:

Line 696: FND_MSG_PUB.count_and_get(

692:
693: CLOSE c_Iba_Pl_Stylesheets;
694:
695: -------------------- finish --------------------------
696: FND_MSG_PUB.count_and_get(
697: p_encoded => FND_API.g_false,
698: p_count => x_msg_count,
699: p_data => x_msg_data);
700: IF (AMS_DEBUG_HIGH_ON) THEN

Line 714: FND_MSG_PUB.Count_And_Get (

710: WHEN FND_API.G_EXC_ERROR THEN
711: ROLLBACK TO LOCK_Iba_Pl_Stylesheets_PVT;
712: x_return_status := FND_API.G_RET_STS_ERROR;
713: -- Standard call to get message count and if count=1, get the message
714: FND_MSG_PUB.Count_And_Get (
715: p_encoded => FND_API.G_FALSE,
716: p_count => x_msg_count,
717: p_data => x_msg_data
718: );

Line 724: FND_MSG_PUB.Count_And_Get (

720: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
721: ROLLBACK TO LOCK_Iba_Pl_Stylesheets_PVT;
722: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
723: -- Standard call to get message count and if count=1, get the message
724: FND_MSG_PUB.Count_And_Get (
725: p_encoded => FND_API.G_FALSE,
726: p_count => x_msg_count,
727: p_data => x_msg_data
728: );

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

729:
730: WHEN OTHERS THEN
731: ROLLBACK TO LOCK_Iba_Pl_Stylesheets_PVT;
732: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
733: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
734: THEN
735: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
736: END IF;
737: -- Standard call to get message count and if count=1, get the message

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

731: ROLLBACK TO LOCK_Iba_Pl_Stylesheets_PVT;
732: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
733: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
734: THEN
735: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
736: END IF;
737: -- Standard call to get message count and if count=1, get the message
738: FND_MSG_PUB.Count_And_Get (
739: p_encoded => FND_API.G_FALSE,

Line 738: FND_MSG_PUB.Count_And_Get (

734: THEN
735: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
736: END IF;
737: -- Standard call to get message count and if count=1, get the message
738: FND_MSG_PUB.Count_And_Get (
739: p_encoded => FND_API.G_FALSE,
740: p_count => x_msg_count,
741: p_data => x_msg_data
742: );

Line 1121: FND_MSG_PUB.initialize;

1117:
1118: -- Initialize message list if p_init_msg_list is set to TRUE.
1119: IF FND_API.to_Boolean( p_init_msg_list )
1120: THEN
1121: FND_MSG_PUB.initialize;
1122: END IF;
1123: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN
1124: Check_iba_pl_style_Items(
1125: p_iba_pl_stylesheets_rec => p_iba_pl_stylesheets_rec,

Line 1177: FND_MSG_PUB.Count_And_Get

1173: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
1174: END IF;
1175:
1176: -- Standard call to get message count and if count is 1, get message info.
1177: FND_MSG_PUB.Count_And_Get
1178: (p_count => x_msg_count,
1179: p_data => x_msg_data
1180: );
1181: EXCEPTION

Line 1191: FND_MSG_PUB.Count_And_Get (

1187: WHEN FND_API.G_EXC_ERROR THEN
1188: ROLLBACK TO VALIDATE_Iba_Pl_Stylesheets_;
1189: x_return_status := FND_API.G_RET_STS_ERROR;
1190: -- Standard call to get message count and if count=1, get the message
1191: FND_MSG_PUB.Count_And_Get (
1192: p_encoded => FND_API.G_FALSE,
1193: p_count => x_msg_count,
1194: p_data => x_msg_data
1195: );

Line 1201: FND_MSG_PUB.Count_And_Get (

1197: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1198: ROLLBACK TO VALIDATE_Iba_Pl_Stylesheets_;
1199: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1200: -- Standard call to get message count and if count=1, get the message
1201: FND_MSG_PUB.Count_And_Get (
1202: p_encoded => FND_API.G_FALSE,
1203: p_count => x_msg_count,
1204: p_data => x_msg_data
1205: );

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

1206:
1207: WHEN OTHERS THEN
1208: ROLLBACK TO VALIDATE_Iba_Pl_Stylesheets_;
1209: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1210: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1211: THEN
1212: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1213: END IF;
1214: -- Standard call to get message count and if count=1, get the message

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

1208: ROLLBACK TO VALIDATE_Iba_Pl_Stylesheets_;
1209: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1210: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1211: THEN
1212: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1213: END IF;
1214: -- Standard call to get message count and if count=1, get the message
1215: FND_MSG_PUB.Count_And_Get (
1216: p_encoded => FND_API.G_FALSE,

Line 1215: FND_MSG_PUB.Count_And_Get (

1211: THEN
1212: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1213: END IF;
1214: -- Standard call to get message count and if count=1, get the message
1215: FND_MSG_PUB.Count_And_Get (
1216: p_encoded => FND_API.G_FALSE,
1217: p_count => x_msg_count,
1218: p_data => x_msg_data
1219: );

Line 1236: FND_MSG_PUB.initialize;

1232: BEGIN
1233: -- Initialize message list if p_init_msg_list is set to TRUE.
1234: IF FND_API.to_Boolean( p_init_msg_list )
1235: THEN
1236: FND_MSG_PUB.initialize;
1237: END IF;
1238:
1239: -- Initialize API return status to SUCCESS
1240: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1253: FND_MSG_PUB.Count_And_Get

1249:
1250: AMS_UTILITY_PVT.debug_message('Private API: Validate_dm_model_rec');
1251: END IF;
1252: -- Standard call to get message count and if count is 1, get message info.
1253: FND_MSG_PUB.Count_And_Get
1254: (p_count => x_msg_count,
1255: p_data => x_msg_data
1256: );
1257: END Validate_iba_pl_style_rec;