DBA Data[Home] [Help]

APPS.AMS_CNT_POINT_PVT dependencies on FND_MSG_PUB

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

23: G_PKG_NAME CONSTANT VARCHAR2(30):= 'AMS_Cnt_Point_PVT';
24: G_FILE_NAME CONSTANT VARCHAR2(12) := 'amsvconb.pls';
25:
26: -- Hint: Primary key needs to be returned.
27: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
28: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
29: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
30:
31: PROCEDURE Create_Cnt_Point(

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

24: G_FILE_NAME CONSTANT VARCHAR2(12) := 'amsvconb.pls';
25:
26: -- Hint: Primary key needs to be returned.
27: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
28: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
29: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
30:
31: PROCEDURE Create_Cnt_Point(
32: p_api_version_number IN NUMBER,

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

25:
26: -- Hint: Primary key needs to be returned.
27: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
28: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
29: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
30:
31: PROCEDURE Create_Cnt_Point(
32: p_api_version_number IN NUMBER,
33: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

Line 91: FND_MSG_PUB.initialize;

87:
88: -- Initialize message list if p_init_msg_list is set to TRUE.
89: IF FND_API.to_Boolean( p_init_msg_list )
90: THEN
91: FND_MSG_PUB.initialize;
92: END IF;
93:
94: -- Debug Message
95: IF (AMS_DEBUG_HIGH_ON) THEN

Line 231: FND_MSG_PUB.Count_And_Get

227: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
228: END IF;
229:
230: -- Standard call to get message count and if count is 1, get message info.
231: FND_MSG_PUB.Count_And_Get
232: (p_count => x_msg_count,
233: p_data => x_msg_data
234: );
235: EXCEPTION

Line 245: FND_MSG_PUB.Count_And_Get (

241: WHEN FND_API.G_EXC_ERROR THEN
242: ROLLBACK TO CREATE_Cnt_Point_PVT;
243: x_return_status := FND_API.G_RET_STS_ERROR;
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 255: FND_MSG_PUB.Count_And_Get (

251: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
252: ROLLBACK TO CREATE_Cnt_Point_PVT;
253: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
254: -- Standard call to get message count and if count=1, get the message
255: FND_MSG_PUB.Count_And_Get (
256: p_encoded => FND_API.G_FALSE,
257: p_count => x_msg_count,
258: p_data => x_msg_data
259: );

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

260:
261: WHEN OTHERS THEN
262: ROLLBACK TO CREATE_Cnt_Point_PVT;
263: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
264: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
265: THEN
266: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
267: END IF;
268: -- Standard call to get message count and if count=1, get the message

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

262: ROLLBACK TO CREATE_Cnt_Point_PVT;
263: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
264: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
265: THEN
266: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
267: END IF;
268: -- Standard call to get message count and if count=1, get the message
269: FND_MSG_PUB.Count_And_Get (
270: p_encoded => FND_API.G_FALSE,

Line 269: FND_MSG_PUB.Count_And_Get (

265: THEN
266: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
267: END IF;
268: -- Standard call to get message count and if count=1, get the message
269: FND_MSG_PUB.Count_And_Get (
270: p_encoded => FND_API.G_FALSE,
271: p_count => x_msg_count,
272: p_data => x_msg_data
273: );

Line 329: FND_MSG_PUB.initialize;

325:
326: -- Initialize message list if p_init_msg_list is set to TRUE.
327: IF FND_API.to_Boolean( p_init_msg_list )
328: THEN
329: FND_MSG_PUB.initialize;
330: END IF;
331:
332: -- Debug Message
333: IF (AMS_DEBUG_HIGH_ON) THEN

Line 463: FND_MSG_PUB.Count_And_Get

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

Line 477: FND_MSG_PUB.Count_And_Get (

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

Line 487: FND_MSG_PUB.Count_And_Get (

483: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
484: ROLLBACK TO UPDATE_Cnt_Point_PVT;
485: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
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 496: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

492:
493: WHEN OTHERS THEN
494: ROLLBACK TO UPDATE_Cnt_Point_PVT;
495: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
496: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
497: THEN
498: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
499: END IF;
500: -- Standard call to get message count and if count=1, get the message

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

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

Line 501: FND_MSG_PUB.Count_And_Get (

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

Line 554: FND_MSG_PUB.initialize;

550:
551: -- Initialize message list if p_init_msg_list is set to TRUE.
552: IF FND_API.to_Boolean( p_init_msg_list )
553: THEN
554: FND_MSG_PUB.initialize;
555: END IF;
556:
557: -- Debug Message
558: IF (AMS_DEBUG_HIGH_ON) THEN

Line 611: FND_MSG_PUB.Count_And_Get

607: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
608: END IF;
609:
610: -- Standard call to get message count and if count is 1, get message info.
611: FND_MSG_PUB.Count_And_Get
612: (p_count => x_msg_count,
613: p_data => x_msg_data
614: );
615: EXCEPTION

Line 625: FND_MSG_PUB.Count_And_Get (

621: WHEN FND_API.G_EXC_ERROR THEN
622: ROLLBACK TO DELETE_Cnt_Point_PVT;
623: x_return_status := FND_API.G_RET_STS_ERROR;
624: -- Standard call to get message count and if count=1, get the message
625: FND_MSG_PUB.Count_And_Get (
626: p_encoded => FND_API.G_FALSE,
627: p_count => x_msg_count,
628: p_data => x_msg_data
629: );

Line 635: FND_MSG_PUB.Count_And_Get (

631: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
632: ROLLBACK TO DELETE_Cnt_Point_PVT;
633: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
634: -- Standard call to get message count and if count=1, get the message
635: FND_MSG_PUB.Count_And_Get (
636: p_encoded => FND_API.G_FALSE,
637: p_count => x_msg_count,
638: p_data => x_msg_data
639: );

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

640:
641: WHEN OTHERS THEN
642: ROLLBACK TO DELETE_Cnt_Point_PVT;
643: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
644: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
645: THEN
646: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
647: END IF;
648: -- Standard call to get message count and if count=1, get the message

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

642: ROLLBACK TO DELETE_Cnt_Point_PVT;
643: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
644: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
645: THEN
646: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
647: END IF;
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,

Line 649: FND_MSG_PUB.Count_And_Get (

645: THEN
646: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
647: END IF;
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 702: FND_MSG_PUB.initialize;

698:
699: -- Initialize message list if p_init_msg_list is set to TRUE.
700: IF FND_API.to_Boolean( p_init_msg_list )
701: THEN
702: FND_MSG_PUB.initialize;
703: END IF;
704:
705: -- Standard call to check for call compatibility.
706: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

730: FETCH c_Cnt_Point INTO l_CONTACT_POINT_ID;
731:
732: IF (c_Cnt_Point%NOTFOUND) THEN
733: CLOSE c_Cnt_Point;
734: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
735: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
736: FND_MSG_PUB.add;
737: END IF;
738: RAISE FND_API.g_exc_error;

Line 736: FND_MSG_PUB.add;

732: IF (c_Cnt_Point%NOTFOUND) THEN
733: CLOSE c_Cnt_Point;
734: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
735: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
736: FND_MSG_PUB.add;
737: END IF;
738: RAISE FND_API.g_exc_error;
739: END IF;
740:

Line 744: FND_MSG_PUB.count_and_get(

740:
741: CLOSE c_Cnt_Point;
742:
743: -------------------- finish --------------------------
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: IF (AMS_DEBUG_HIGH_ON) THEN

Line 762: FND_MSG_PUB.Count_And_Get (

758: WHEN FND_API.G_EXC_ERROR THEN
759: ROLLBACK TO LOCK_Cnt_Point_PVT;
760: x_return_status := FND_API.G_RET_STS_ERROR;
761: -- Standard call to get message count and if count=1, get the message
762: FND_MSG_PUB.Count_And_Get (
763: p_encoded => FND_API.G_FALSE,
764: p_count => x_msg_count,
765: p_data => x_msg_data
766: );

Line 772: FND_MSG_PUB.Count_And_Get (

768: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
769: ROLLBACK TO LOCK_Cnt_Point_PVT;
770: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
771: -- Standard call to get message count and if count=1, get the message
772: FND_MSG_PUB.Count_And_Get (
773: p_encoded => FND_API.G_FALSE,
774: p_count => x_msg_count,
775: p_data => x_msg_data
776: );

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

777:
778: WHEN OTHERS THEN
779: ROLLBACK TO LOCK_Cnt_Point_PVT;
780: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
781: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
782: THEN
783: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
784: END IF;
785: -- Standard call to get message count and if count=1, get the message

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

779: ROLLBACK TO LOCK_Cnt_Point_PVT;
780: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
781: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
782: THEN
783: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
784: END IF;
785: -- Standard call to get message count and if count=1, get the message
786: FND_MSG_PUB.Count_And_Get (
787: p_encoded => FND_API.G_FALSE,

Line 786: FND_MSG_PUB.Count_And_Get (

782: THEN
783: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
784: END IF;
785: -- Standard call to get message count and if count=1, get the message
786: FND_MSG_PUB.Count_And_Get (
787: p_encoded => FND_API.G_FALSE,
788: p_count => x_msg_count,
789: p_data => x_msg_data
790: );

Line 1109: /*IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)

1105: p_cnt_point_rec.arc_contact_used_by <> 'EVEO'
1106: THEN
1107: -- invalid item
1108: AMS_Utility_PVT.Error_Message(p_message_name => 'AMS_CONTACT_INVALID_USED_BY'); -- TO CHECK THE ERROR MESSAGE TO BE RAISED*/
1109: /*IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
1110: THEN -- MMSG
1111: -- IF (AMS_DEBUG_HIGH_ON) THEN AMS_UTILITY_PVT.debug_message('Foreign Key Does not Exist'); END IF;
1112: FND_MESSAGE.Set_Name('AMS', 'AMS_TRIG_INVALID_CREATED_FOR');
1113: FND_MSG_PUB.Add;

Line 1113: FND_MSG_PUB.Add;

1109: /*IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
1110: THEN -- MMSG
1111: -- IF (AMS_DEBUG_HIGH_ON) THEN AMS_UTILITY_PVT.debug_message('Foreign Key Does not Exist'); END IF;
1112: FND_MESSAGE.Set_Name('AMS', 'AMS_TRIG_INVALID_CREATED_FOR');
1113: FND_MSG_PUB.Add;
1114: END IF;*/
1115:
1116:
1117: x_return_status := FND_API.G_RET_STS_ERROR;

Line 1173: /* IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)

1169: ,p_lookup_code => p_cnt_point_rec.contact_point_type
1170: ) = FND_API.G_FALSE then
1171:
1172: -- invalid item
1173: /* IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
1174: THEN -- MMSG
1175: -- IF (AMS_DEBUG_HIGH_ON) THEN AMS_UTILITY_PVT.debug_message('Triggering Type is invalid'); END IF;
1176:
1177: FND_MSG_PUB.Add;

Line 1177: FND_MSG_PUB.Add;

1173: /* IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
1174: THEN -- MMSG
1175: -- IF (AMS_DEBUG_HIGH_ON) THEN AMS_UTILITY_PVT.debug_message('Triggering Type is invalid'); END IF;
1176:
1177: FND_MSG_PUB.Add;
1178: END IF;*/
1179: AMS_Utility_PVT.Error_Message(p_message_name => 'AMS_CONTACT_INVALID_TYPE');
1180: x_return_status := FND_API.G_RET_STS_ERROR;
1181: -- If any errors happen abort API/Procedure.

Line 1346: FND_MSG_PUB.initialize;

1342: END IF;
1343: -- Initialize message list if p_init_msg_list is set to TRUE.
1344: IF FND_API.to_Boolean( p_init_msg_list )
1345: THEN
1346: FND_MSG_PUB.initialize;
1347: END IF;
1348:
1349: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN
1350: IF (AMS_DEBUG_HIGH_ON) THEN

Line 1446: FND_MSG_PUB.Count_And_Get

1442: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end ' || x_return_status);
1443: END IF;
1444:
1445: -- Standard call to get message count and if count is 1, get message info.
1446: FND_MSG_PUB.Count_And_Get
1447: (p_encoded => FND_API.G_FALSE,
1448: p_count => x_msg_count,
1449: p_data => x_msg_data
1450: );

Line 1461: FND_MSG_PUB.Count_And_Get (

1457: WHEN FND_API.G_EXC_ERROR THEN
1458: ROLLBACK TO VALIDATE_Cnt_Point_;
1459: x_return_status := FND_API.G_RET_STS_ERROR;
1460: -- Standard call to get message count and if count=1, get the message
1461: FND_MSG_PUB.Count_And_Get (
1462: p_encoded => FND_API.G_FALSE,
1463: p_count => x_msg_count,
1464: p_data => x_msg_data
1465: );

Line 1471: FND_MSG_PUB.Count_And_Get (

1467: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1468: ROLLBACK TO VALIDATE_Cnt_Point_;
1469: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1470: -- Standard call to get message count and if count=1, get the message
1471: FND_MSG_PUB.Count_And_Get (
1472: p_encoded => FND_API.G_FALSE,
1473: p_count => x_msg_count,
1474: p_data => x_msg_data
1475: );

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

1476:
1477: WHEN OTHERS THEN
1478: ROLLBACK TO VALIDATE_Cnt_Point_;
1479: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1480: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1481: THEN
1482: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1483: END IF;
1484: -- Standard call to get message count and if count=1, get the message

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

1478: ROLLBACK TO VALIDATE_Cnt_Point_;
1479: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1480: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1481: THEN
1482: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1483: END IF;
1484: -- Standard call to get message count and if count=1, get the message
1485: FND_MSG_PUB.Count_And_Get (
1486: p_encoded => FND_API.G_FALSE,

Line 1485: FND_MSG_PUB.Count_And_Get (

1481: THEN
1482: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1483: END IF;
1484: -- Standard call to get message count and if count=1, get the message
1485: FND_MSG_PUB.Count_And_Get (
1486: p_encoded => FND_API.G_FALSE,
1487: p_count => x_msg_count,
1488: p_data => x_msg_data
1489: );

Line 1689: FND_MSG_PUB.initialize;

1685: BEGIN
1686: -- Initialize message list if p_init_msg_list is set to TRUE.
1687: IF FND_API.to_Boolean( p_init_msg_list )
1688: THEN
1689: FND_MSG_PUB.initialize;
1690: END IF;
1691:
1692: IF (AMS_DEBUG_HIGH_ON) THEN
1693: