DBA Data[Home] [Help]

APPS.PV_TAP_ACCESS_TERRS_PVT dependencies on FND_MSG_PUB

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

19:
20: G_PKG_NAME CONSTANT VARCHAR2(30):= 'PV_TAP_ACCESS_TERRS_PVT';
21: G_FILE_NAME CONSTANT VARCHAR2(12) := 'pvxvtrab.pls';
22:
23: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
24: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
25: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
26:
27: -- G_USER_ID NUMBER := FND_GLOBAL.USER_ID;

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

20: G_PKG_NAME CONSTANT VARCHAR2(30):= 'PV_TAP_ACCESS_TERRS_PVT';
21: G_FILE_NAME CONSTANT VARCHAR2(12) := 'pvxvtrab.pls';
22:
23: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
24: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
25: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
26:
27: -- G_USER_ID NUMBER := FND_GLOBAL.USER_ID;
28: -- G_LOGIN_ID NUMBER := FND_GLOBAL.CONC_LOGIN_ID;

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

21: G_FILE_NAME CONSTANT VARCHAR2(12) := 'pvxvtrab.pls';
22:
23: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
24: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
25: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
26:
27: -- G_USER_ID NUMBER := FND_GLOBAL.USER_ID;
28: -- G_LOGIN_ID NUMBER := FND_GLOBAL.CONC_LOGIN_ID;
29: --

Line 106: FND_MSG_PUB.initialize;

102:
103: -- Initialize message list if p_init_msg_list is set to TRUE.
104: IF FND_API.to_Boolean( p_init_msg_list )
105: THEN
106: FND_MSG_PUB.initialize;
107: END IF;
108:
109: -- Debug Message
110: IF (PV_DEBUG_HIGH_ON) THEN

Line 180: FND_MSG_PUB.add;

176: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
177: l_err_msg := substr(to_char(SQLCODE)||'-'||SQLERRM,1,2000);
178: FND_MESSAGE.set_name('PV', 'PV_API_OTHERS_EXCEP');
179: FND_MESSAGE.set_token('ERROR', l_err_msg);
180: FND_MSG_PUB.add;
181: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
182: RAISE FND_API.G_EXC_ERROR;
183: ELSE
184: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 204: FND_MSG_PUB.Count_And_Get

200: PVX_Utility_PVT.debug_message('Private API: ' || l_api_name || 'end');
201: END IF;
202:
203: -- Standard call to get message count and if count is 1, get message info.
204: FND_MSG_PUB.Count_And_Get
205: (p_count => x_msg_count,
206: p_data => x_msg_data
207: );
208:

Line 218: FND_MSG_PUB.Count_And_Get (

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

Line 229: FND_MSG_PUB.Count_And_Get (

225: ROLLBACK TO Create_Tap_Access_Terrs_Pvt;
226: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
227:
228: -- Standard call to get message count and if count=1, get the message
229: FND_MSG_PUB.Count_And_Get (
230: p_encoded => FND_API.G_FALSE,
231: p_count => x_msg_count,
232: p_data => x_msg_data
233: );

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

235: WHEN OTHERS THEN
236: ROLLBACK TO Create_Tap_Access_Terrs_Pvt;
237: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
238:
239: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
240: THEN
241: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
242: END IF;
243:

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

237: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
238:
239: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
240: THEN
241: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
242: END IF;
243:
244: -- Standard call to get message count and if count=1, get the message
245: FND_MSG_PUB.Count_And_Get (

Line 245: FND_MSG_PUB.Count_And_Get (

241: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
242: END IF;
243:
244: -- Standard call to get message count and if count=1, get the message
245: FND_MSG_PUB.Count_And_Get (
246: p_encoded => FND_API.G_FALSE,
247: p_count => x_msg_count,
248: p_data => x_msg_data
249: );

Line 333: FND_MSG_PUB.initialize;

329:
330: -- Initialize message list if p_init_msg_list is set to TRUE.
331: IF FND_API.to_Boolean( p_init_msg_list )
332: THEN
333: FND_MSG_PUB.initialize;
334: END IF;
335:
336:
337: -- Debug Message

Line 416: PVX_Utility_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler');

412:
413:
414: -- Debug Message
415: IF (PV_DEBUG_HIGH_ON) THEN
416: PVX_Utility_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler');
417: END IF;
418:
419: -- Invoke table handler(Pv_Territory_Accesses_Pkg.Update_Row)
420: Pv_Tap_Access_Terrs_Pkg.Update_Row(

Line 437: FND_MSG_PUB.add;

433: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
434: l_err_msg := substr(to_char(SQLCODE)||'-'||SQLERRM,1,2000);
435: FND_MESSAGE.set_name('PV', 'PV_API_OTHERS_EXCEP');
436: FND_MESSAGE.set_token('ERROR', l_err_msg);
437: FND_MSG_PUB.add;
438: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
439: RAISE FND_API.G_EXC_ERROR;
440: ELSE
441: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 461: FND_MSG_PUB.Count_And_Get

457: PVX_Utility_PVT.debug_message('Private API: ' || l_api_name || ' End');
458: END IF;
459:
460: -- Standard call to get message count and if count is 1, get message info.
461: FND_MSG_PUB.Count_And_Get
462: (p_count => x_msg_count,
463: p_data => x_msg_data
464: );
465: EXCEPTION

Line 476: FND_MSG_PUB.Count_And_Get (

472: ROLLBACK TO Update_Tap_Access_Terrs_Pvt;
473: x_return_status := FND_API.G_RET_STS_ERROR;
474:
475: -- Standard call to get message count and if count=1, get the message
476: FND_MSG_PUB.Count_And_Get (
477: p_encoded => FND_API.G_FALSE,
478: p_count => x_msg_count,
479: p_data => x_msg_data
480: );

Line 487: FND_MSG_PUB.Count_And_Get (

483: ROLLBACK TO Update_Tap_Access_Terrs_Pvt;
484: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
485:
486: -- Standard call to get message count and if count=1, get the message
487: FND_MSG_PUB.Count_And_Get (
488: p_encoded => FND_API.G_FALSE,
489: p_count => x_msg_count,
490: p_data => x_msg_data
491: );

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

493: WHEN OTHERS THEN
494: ROLLBACK TO Update_Tap_Access_Terrs_Pvt;
495: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
496:
497: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
498: THEN
499: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
500: END IF;
501:

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

495: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
496:
497: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
498: THEN
499: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
500: END IF;
501:
502: -- Standard call to get message count and if count=1, get the message
503: FND_MSG_PUB.Count_And_Get (

Line 503: FND_MSG_PUB.Count_And_Get (

499: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
500: END IF;
501:
502: -- Standard call to get message count and if count=1, get the message
503: FND_MSG_PUB.Count_And_Get (
504: p_encoded => FND_API.G_FALSE,
505: p_count => x_msg_count,
506: p_data => x_msg_data
507: );

Line 579: FND_MSG_PUB.initialize;

575:
576: -- Initialize message list if p_init_msg_list is set to TRUE.
577: IF FND_API.to_Boolean( p_init_msg_list )
578: THEN
579: FND_MSG_PUB.initialize;
580: END IF;
581:
582: -- Debug Message
583: IF (PV_DEBUG_HIGH_ON) THEN

Line 611: FND_MSG_PUB.add;

607: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
608: l_err_msg := substr(to_char(SQLCODE)||'-'||SQLERRM,1,2000);
609: FND_MESSAGE.set_name('PV', 'PV_API_OTHERS_EXCEP');
610: FND_MESSAGE.set_token('ERROR', l_err_msg);
611: FND_MSG_PUB.add;
612: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
613: RAISE FND_API.G_EXC_ERROR;
614: ELSE
615: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 635: FND_MSG_PUB.Count_And_Get

631: PVX_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 650: FND_MSG_PUB.Count_And_Get (

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

Line 661: FND_MSG_PUB.Count_And_Get (

657: ROLLBACK TO Delete_Tap_Access_Terrs_Pvt;
658: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
659:
660: -- Standard call to get message count and if count=1, get the message
661: FND_MSG_PUB.Count_And_Get (
662: p_encoded => FND_API.G_FALSE,
663: p_count => x_msg_count,
664: p_data => x_msg_data
665: );

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

667: WHEN OTHERS THEN
668: ROLLBACK TO Delete_Tap_Access_Terrs_Pvt;
669: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
670:
671: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
672: THEN
673: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
674: END IF;
675:

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

669: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
670:
671: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
672: THEN
673: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
674: END IF;
675:
676: -- Standard call to get message count and if count=1, get the message
677: FND_MSG_PUB.Count_And_Get (

Line 677: FND_MSG_PUB.Count_And_Get (

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

Line 750: FND_MSG_PUB.initialize;

746:
747: -- Initialize message list if p_init_msg_list is set to TRUE.
748: IF FND_API.to_Boolean( p_init_msg_list )
749: THEN
750: FND_MSG_PUB.initialize;
751: END IF;
752:
753: -- Standard call to check for call compatibility.
754: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

Line 776: FND_MSG_PUB.add;

772: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
773: l_err_msg := substr(to_char(SQLCODE)||'-'||SQLERRM,1,2000);
774: FND_MESSAGE.set_name('PV', 'PV_API_OTHERS_EXCEP');
775: FND_MESSAGE.set_token('ERROR', l_err_msg);
776: FND_MSG_PUB.add;
777: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
778: RAISE FND_API.G_EXC_ERROR;
779: ELSE
780: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 785: FND_MSG_PUB.count_and_get(

781: END IF;
782: END IF;
783:
784: -------------------- finish --------------------------
785: FND_MSG_PUB.count_and_get(
786: p_encoded => FND_API.g_false,
787: p_count => x_msg_count,
788: p_data => x_msg_data);
789:

Line 804: FND_MSG_PUB.Count_And_Get (

800: ROLLBACK TO Lock_Tap_Access_Terrs;
801: x_return_status := FND_API.G_RET_STS_ERROR;
802:
803: -- Standard call to get message count and if count=1, get the message
804: FND_MSG_PUB.Count_And_Get (
805: p_encoded => FND_API.G_FALSE,
806: p_count => x_msg_count,
807: p_data => x_msg_data
808: );

Line 815: FND_MSG_PUB.Count_And_Get (

811: ROLLBACK TO Lock_Tap_Access_Terrs;
812: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
813:
814: -- Standard call to get message count and if count=1, get the message
815: FND_MSG_PUB.Count_And_Get (
816: p_encoded => FND_API.G_FALSE,
817: p_count => x_msg_count,
818: p_data => x_msg_data
819: );

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

821: WHEN OTHERS THEN
822: ROLLBACK TO Lock_Tap_Access_Terrs;
823: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
824:
825: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
826: THEN
827: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
828: END IF;
829:

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

823: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
824:
825: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
826: THEN
827: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
828: END IF;
829:
830: -- Standard call to get message count and if count=1, get the message
831: FND_MSG_PUB.Count_And_Get (

Line 831: FND_MSG_PUB.Count_And_Get (

827: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
828: END IF;
829:
830: -- Standard call to get message count and if count=1, get the message
831: FND_MSG_PUB.Count_And_Get (
832: p_encoded => FND_API.G_FALSE,
833: p_count => x_msg_count,
834: p_data => x_msg_data
835: );

Line 1146: FND_MSG_PUB.initialize;

1142:
1143: -- Initialize message list if p_init_msg_list is set to TRUE.
1144: IF FND_API.to_Boolean( p_init_msg_list )
1145: THEN
1146: FND_MSG_PUB.initialize;
1147: END IF;
1148:
1149: -- Initialize API return status to SUCCESS
1150: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1187: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN

1183: x_msg_count => x_msg_count,
1184: x_msg_data => x_msg_data,
1185: p_tap_access_terrs_rec => l_tap_access_terrs_rec);
1186:
1187: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
1188: PVX_Utility_PVT.debug_message('After Validate_Tap_Access_Terrs_Rec...');
1189: END IF;
1190:
1191: IF x_return_status = FND_API.G_RET_STS_ERROR THEN

Line 1202: FND_MSG_PUB.Count_And_Get

1198: -- Debug Message
1199: PVX_Utility_PVT.debug_message('Private API: ' || l_api_name || 'end');
1200:
1201: -- Standard call to get message count and if count is 1, get message info.
1202: FND_MSG_PUB.Count_And_Get
1203: (p_count => x_msg_count,
1204: p_data => x_msg_data
1205: );
1206: EXCEPTION

Line 1216: FND_MSG_PUB.Count_And_Get (

1212: WHEN FND_API.G_EXC_ERROR THEN
1213: ROLLBACK TO Validate_Tap_Access_Terrs_Pvt;
1214: x_return_status := FND_API.G_RET_STS_ERROR;
1215: -- Standard call to get message count and if count=1, get the message
1216: FND_MSG_PUB.Count_And_Get (
1217: p_encoded => FND_API.G_FALSE,
1218: p_count => x_msg_count,
1219: p_data => x_msg_data
1220: );

Line 1226: FND_MSG_PUB.Count_And_Get (

1222: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1223: ROLLBACK TO Validate_Tap_Access_Terrs_Pvt;
1224: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1225: -- Standard call to get message count and if count=1, get the message
1226: FND_MSG_PUB.Count_And_Get (
1227: p_encoded => FND_API.G_FALSE,
1228: p_count => x_msg_count,
1229: p_data => x_msg_data
1230: );

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

1231:
1232: WHEN OTHERS THEN
1233: ROLLBACK TO Validate_Tap_Access_Terrs_Pvt;
1234: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1235: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1236: THEN
1237: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1238: END IF;
1239: -- Standard call to get message count and if count=1, get the message

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

1233: ROLLBACK TO Validate_Tap_Access_Terrs_Pvt;
1234: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1235: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1236: THEN
1237: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1238: END IF;
1239: -- Standard call to get message count and if count=1, get the message
1240: FND_MSG_PUB.Count_And_Get (
1241: p_encoded => FND_API.G_FALSE,

Line 1240: FND_MSG_PUB.Count_And_Get (

1236: THEN
1237: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1238: END IF;
1239: -- Standard call to get message count and if count=1, get the message
1240: FND_MSG_PUB.Count_And_Get (
1241: p_encoded => FND_API.G_FALSE,
1242: p_count => x_msg_count,
1243: p_data => x_msg_data
1244: );

Line 1260: FND_MSG_PUB.initialize;

1256: BEGIN
1257: -- Initialize message list if p_init_msg_list is set to TRUE.
1258: IF FND_API.to_Boolean( p_init_msg_list )
1259: THEN
1260: FND_MSG_PUB.initialize;
1261: END IF;
1262:
1263:
1264: -- Initialize API return status to SUCCESS

Line 1275: FND_MSG_PUB.Count_And_Get

1271:
1272: -- Debug Message
1273: PVX_Utility_PVT.debug_message('Private API: Validate_dm_model_rec');
1274: -- Standard call to get message count and if count is 1, get message info.
1275: FND_MSG_PUB.Count_And_Get
1276: (p_count => x_msg_count,
1277: p_data => x_msg_data
1278: );
1279: END Validate_Tap_Access_Terrs_Rec;