DBA Data[Home] [Help]

APPS.PV_GE_CHKLST_PVT dependencies on FND_MSG_PUB

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

68: --
69: -- End of Comments
70: -- ==============================================================================
71:
72: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
73: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
74: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
75:
76: PROCEDURE Create_Ge_Chklst(

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

69: -- End of Comments
70: -- ==============================================================================
71:
72: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
73: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
74: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
75:
76: PROCEDURE Create_Ge_Chklst(
77: p_api_version_number IN NUMBER,

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

70: -- ==============================================================================
71:
72: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
73: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
74: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
75:
76: PROCEDURE Create_Ge_Chklst(
77: p_api_version_number IN NUMBER,
78: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

Line 125: FND_MSG_PUB.initialize;

121:
122: -- Initialize message list if p_init_msg_list is set to TRUE.
123: IF FND_API.to_Boolean( p_init_msg_list )
124: THEN
125: FND_MSG_PUB.initialize;
126: END IF;
127:
128:
129:

Line 266: FND_MSG_PUB.Count_And_Get

262: END IF;
263:
264:
265: -- Standard call to get message count and if count is 1, get message info.
266: FND_MSG_PUB.Count_And_Get
267: (p_count => x_msg_count,
268: p_data => x_msg_data
269: );
270: EXCEPTION

Line 280: FND_MSG_PUB.Count_And_Get (

276: WHEN FND_API.G_EXC_ERROR THEN
277: ROLLBACK TO CREATE_Ge_Chklst_PVT;
278: x_return_status := FND_API.G_RET_STS_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 290: FND_MSG_PUB.Count_And_Get (

286: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
287: ROLLBACK TO CREATE_Ge_Chklst_PVT;
288: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
289: -- Standard call to get message count and if count=1, get the message
290: FND_MSG_PUB.Count_And_Get (
291: p_encoded => FND_API.G_FALSE,
292: p_count => x_msg_count,
293: p_data => x_msg_data
294: );

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

295:
296: WHEN OTHERS THEN
297: ROLLBACK TO CREATE_Ge_Chklst_PVT;
298: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
299: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
300: THEN
301: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
302: END IF;
303: -- Standard call to get message count and if count=1, get the message

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

297: ROLLBACK TO CREATE_Ge_Chklst_PVT;
298: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
299: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
300: THEN
301: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
302: END IF;
303: -- Standard call to get message count and if count=1, get the message
304: FND_MSG_PUB.Count_And_Get (
305: p_encoded => FND_API.G_FALSE,

Line 304: FND_MSG_PUB.Count_And_Get (

300: THEN
301: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
302: END IF;
303: -- Standard call to get message count and if count=1, get the message
304: FND_MSG_PUB.Count_And_Get (
305: p_encoded => FND_API.G_FALSE,
306: p_count => x_msg_count,
307: p_data => x_msg_data
308: );

Line 395: FND_MSG_PUB.initialize;

391:
392: -- Initialize message list if p_init_msg_list is set to TRUE.
393: IF FND_API.to_Boolean( p_init_msg_list )
394: THEN
395: FND_MSG_PUB.initialize;
396: END IF;
397:
398: -- Debug Message
399: IF (PV_DEBUG_HIGH_ON) THEN

Line 525: FND_MSG_PUB.count_and_get(

521: IF FND_API.to_boolean(p_commit) THEN
522: COMMIT;
523: END IF;
524:
525: FND_MSG_PUB.count_and_get(
526: p_encoded => FND_API.g_false
527: ,p_count => x_msg_count
528: ,p_data => x_msg_data
529: );

Line 541: FND_MSG_PUB.Count_And_Get (

537: WHEN FND_API.G_EXC_ERROR THEN
538: ROLLBACK TO Copy_Row;
539: x_return_status := FND_API.G_RET_STS_ERROR;
540: -- Standard call to get message count and if count=1, get the message
541: FND_MSG_PUB.Count_And_Get (
542: p_encoded => FND_API.G_FALSE,
543: p_count => x_msg_count,
544: p_data => x_msg_data
545: );

Line 551: FND_MSG_PUB.Count_And_Get (

547: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
548: ROLLBACK TO Copy_Row;
549: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
550: -- Standard call to get message count and if count=1, get the message
551: FND_MSG_PUB.Count_And_Get (
552: p_encoded => FND_API.G_FALSE,
553: p_count => x_msg_count,
554: p_data => x_msg_data
555: );

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

556:
557: WHEN OTHERS THEN
558: ROLLBACK TO Copy_Row;
559: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
560: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
561: THEN
562: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
563: END IF;
564: -- Standard call to get message count and if count=1, get the message

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

558: ROLLBACK TO Copy_Row;
559: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
560: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
561: THEN
562: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
563: END IF;
564: -- Standard call to get message count and if count=1, get the message
565: FND_MSG_PUB.Count_And_Get (
566: p_encoded => FND_API.G_FALSE,

Line 565: FND_MSG_PUB.Count_And_Get (

561: THEN
562: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
563: END IF;
564: -- Standard call to get message count and if count=1, get the message
565: FND_MSG_PUB.Count_And_Get (
566: p_encoded => FND_API.G_FALSE,
567: p_count => x_msg_count,
568: p_data => x_msg_data
569: );

Line 655: FND_MSG_PUB.initialize;

651:
652: -- Initialize message list if p_init_msg_list is set to TRUE.
653: IF FND_API.to_Boolean( p_init_msg_list )
654: THEN
655: FND_MSG_PUB.initialize;
656: END IF;
657:
658:
659:

Line 737: --IF (PV_DEBUG_HIGH_ON) THENPVX_UTILITY_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler');END IF;

733: END IF;
734:
735:
736: -- Debug Message
737: --IF (PV_DEBUG_HIGH_ON) THENPVX_UTILITY_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler');END IF;
738:
739: -- Invoke table handler(Pv_Ge_Chklst_Pkg.Update_Row)
740: Pv_Ge_Chklst_Pkg.Update_Row(
741: p_checklist_item_id => p_ge_chklst_rec.checklist_item_id,

Line 772: FND_MSG_PUB.Count_And_Get

768: END IF;
769:
770:
771: -- Standard call to get message count and if count is 1, get message info.
772: FND_MSG_PUB.Count_And_Get
773: (p_count => x_msg_count,
774: p_data => x_msg_data
775: );
776: EXCEPTION

Line 786: FND_MSG_PUB.Count_And_Get (

782: WHEN FND_API.G_EXC_ERROR THEN
783: ROLLBACK TO UPDATE_Ge_Chklst_PVT;
784: x_return_status := FND_API.G_RET_STS_ERROR;
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 796: FND_MSG_PUB.Count_And_Get (

792: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
793: ROLLBACK TO UPDATE_Ge_Chklst_PVT;
794: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
795: -- Standard call to get message count and if count=1, get the message
796: FND_MSG_PUB.Count_And_Get (
797: p_encoded => FND_API.G_FALSE,
798: p_count => x_msg_count,
799: p_data => x_msg_data
800: );

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

801:
802: WHEN OTHERS THEN
803: ROLLBACK TO UPDATE_Ge_Chklst_PVT;
804: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
805: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
806: THEN
807: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
808: END IF;
809: -- Standard call to get message count and if count=1, get the message

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

803: ROLLBACK TO UPDATE_Ge_Chklst_PVT;
804: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
805: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
806: THEN
807: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
808: END IF;
809: -- Standard call to get message count and if count=1, get the message
810: FND_MSG_PUB.Count_And_Get (
811: p_encoded => FND_API.G_FALSE,

Line 810: FND_MSG_PUB.Count_And_Get (

806: THEN
807: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
808: END IF;
809: -- Standard call to get message count and if count=1, get the message
810: FND_MSG_PUB.Count_And_Get (
811: p_encoded => FND_API.G_FALSE,
812: p_count => x_msg_count,
813: p_data => x_msg_data
814: );

Line 886: FND_MSG_PUB.initialize;

882:
883: -- Initialize message list if p_init_msg_list is set to TRUE.
884: IF FND_API.to_Boolean( p_init_msg_list )
885: THEN
886: FND_MSG_PUB.initialize;
887: END IF;
888:
889:
890:

Line 934: FND_MSG_PUB.Count_And_Get

930: END IF;
931:
932:
933: -- Standard call to get message count and if count is 1, get message info.
934: FND_MSG_PUB.Count_And_Get
935: (p_count => x_msg_count,
936: p_data => x_msg_data
937: );
938: EXCEPTION

Line 948: FND_MSG_PUB.Count_And_Get (

944: WHEN FND_API.G_EXC_ERROR THEN
945: ROLLBACK TO DELETE_Ge_Chklst_PVT;
946: x_return_status := FND_API.G_RET_STS_ERROR;
947: -- Standard call to get message count and if count=1, get the message
948: FND_MSG_PUB.Count_And_Get (
949: p_encoded => FND_API.G_FALSE,
950: p_count => x_msg_count,
951: p_data => x_msg_data
952: );

Line 958: FND_MSG_PUB.Count_And_Get (

954: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
955: ROLLBACK TO DELETE_Ge_Chklst_PVT;
956: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
957: -- Standard call to get message count and if count=1, get the message
958: FND_MSG_PUB.Count_And_Get (
959: p_encoded => FND_API.G_FALSE,
960: p_count => x_msg_count,
961: p_data => x_msg_data
962: );

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

963:
964: WHEN OTHERS THEN
965: ROLLBACK TO DELETE_Ge_Chklst_PVT;
966: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
967: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
968: THEN
969: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
970: END IF;
971: -- Standard call to get message count and if count=1, get the message

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

965: ROLLBACK TO DELETE_Ge_Chklst_PVT;
966: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
967: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
968: THEN
969: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
970: END IF;
971: -- Standard call to get message count and if count=1, get the message
972: FND_MSG_PUB.Count_And_Get (
973: p_encoded => FND_API.G_FALSE,

Line 972: FND_MSG_PUB.Count_And_Get (

968: THEN
969: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
970: END IF;
971: -- Standard call to get message count and if count=1, get the message
972: FND_MSG_PUB.Count_And_Get (
973: p_encoded => FND_API.G_FALSE,
974: p_count => x_msg_count,
975: p_data => x_msg_data
976: );

Line 1045: FND_MSG_PUB.initialize;

1041:
1042: -- Initialize message list if p_init_msg_list is set to TRUE.
1043: IF FND_API.to_Boolean( p_init_msg_list )
1044: THEN
1045: FND_MSG_PUB.initialize;
1046: END IF;
1047:
1048:
1049:

Line 1070: FND_MSG_PUB.count_and_get(

1066: Pv_Ge_Chklst_Pkg.Lock_Row(l_checklist_item_id,p_object_version);
1067:
1068:
1069: -------------------- finish --------------------------
1070: FND_MSG_PUB.count_and_get(
1071: p_encoded => FND_API.g_false,
1072: p_count => x_msg_count,
1073: p_data => x_msg_data);
1074: IF (PV_DEBUG_HIGH_ON) THEN

Line 1088: FND_MSG_PUB.Count_And_Get (

1084: WHEN FND_API.G_EXC_ERROR THEN
1085: ROLLBACK TO LOCK_Ge_Chklst_PVT;
1086: x_return_status := FND_API.G_RET_STS_ERROR;
1087: -- Standard call to get message count and if count=1, get the message
1088: FND_MSG_PUB.Count_And_Get (
1089: p_encoded => FND_API.G_FALSE,
1090: p_count => x_msg_count,
1091: p_data => x_msg_data
1092: );

Line 1098: FND_MSG_PUB.Count_And_Get (

1094: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1095: ROLLBACK TO LOCK_Ge_Chklst_PVT;
1096: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1097: -- Standard call to get message count and if count=1, get the message
1098: FND_MSG_PUB.Count_And_Get (
1099: p_encoded => FND_API.G_FALSE,
1100: p_count => x_msg_count,
1101: p_data => x_msg_data
1102: );

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

1103:
1104: WHEN OTHERS THEN
1105: ROLLBACK TO LOCK_Ge_Chklst_PVT;
1106: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1107: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1108: THEN
1109: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1110: END IF;
1111: -- Standard call to get message count and if count=1, get the message

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

1105: ROLLBACK TO LOCK_Ge_Chklst_PVT;
1106: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1107: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1108: THEN
1109: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1110: END IF;
1111: -- Standard call to get message count and if count=1, get the message
1112: FND_MSG_PUB.Count_And_Get (
1113: p_encoded => FND_API.G_FALSE,

Line 1112: FND_MSG_PUB.Count_And_Get (

1108: THEN
1109: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1110: END IF;
1111: -- Standard call to get message count and if count=1, get the message
1112: FND_MSG_PUB.Count_And_Get (
1113: p_encoded => FND_API.G_FALSE,
1114: p_count => x_msg_count,
1115: p_data => x_msg_data
1116: );

Line 1470: FND_MSG_PUB.initialize;

1466:
1467: -- Initialize message list if p_init_msg_list is set to TRUE.
1468: IF FND_API.to_Boolean( p_init_msg_list )
1469: THEN
1470: FND_MSG_PUB.initialize;
1471: END IF;
1472:
1473:
1474: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN

Line 1538: FND_MSG_PUB.Count_And_Get

1534: END IF;
1535:
1536:
1537: -- Standard call to get message count and if count is 1, get message info.
1538: FND_MSG_PUB.Count_And_Get
1539: (p_count => x_msg_count,
1540: p_data => x_msg_data
1541: );
1542: EXCEPTION

Line 1552: FND_MSG_PUB.Count_And_Get (

1548: WHEN FND_API.G_EXC_ERROR THEN
1549: ROLLBACK TO VALIDATE_Ge_Chklst_;
1550: x_return_status := FND_API.G_RET_STS_ERROR;
1551: -- Standard call to get message count and if count=1, get the message
1552: FND_MSG_PUB.Count_And_Get (
1553: p_encoded => FND_API.G_FALSE,
1554: p_count => x_msg_count,
1555: p_data => x_msg_data
1556: );

Line 1562: FND_MSG_PUB.Count_And_Get (

1558: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1559: ROLLBACK TO VALIDATE_Ge_Chklst_;
1560: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1561: -- Standard call to get message count and if count=1, get the message
1562: FND_MSG_PUB.Count_And_Get (
1563: p_encoded => FND_API.G_FALSE,
1564: p_count => x_msg_count,
1565: p_data => x_msg_data
1566: );

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

1567:
1568: WHEN OTHERS THEN
1569: ROLLBACK TO VALIDATE_Ge_Chklst_;
1570: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1571: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1572: THEN
1573: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1574: END IF;
1575: -- Standard call to get message count and if count=1, get the message

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

1569: ROLLBACK TO VALIDATE_Ge_Chklst_;
1570: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1571: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1572: THEN
1573: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1574: END IF;
1575: -- Standard call to get message count and if count=1, get the message
1576: FND_MSG_PUB.Count_And_Get (
1577: p_encoded => FND_API.G_FALSE,

Line 1576: FND_MSG_PUB.Count_And_Get (

1572: THEN
1573: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1574: END IF;
1575: -- Standard call to get message count and if count=1, get the message
1576: FND_MSG_PUB.Count_And_Get (
1577: p_encoded => FND_API.G_FALSE,
1578: p_count => x_msg_count,
1579: p_data => x_msg_data
1580: );

Line 1597: FND_MSG_PUB.initialize;

1593: BEGIN
1594: -- Initialize message list if p_init_msg_list is set to TRUE.
1595: IF FND_API.to_Boolean( p_init_msg_list )
1596: THEN
1597: FND_MSG_PUB.initialize;
1598: END IF;
1599:
1600:
1601:

Line 1616: FND_MSG_PUB.Count_And_Get

1612:
1613: PVX_UTILITY_PVT.debug_message('Private API: Validate_dm_model_rec');
1614: END IF;
1615: -- Standard call to get message count and if count is 1, get message info.
1616: FND_MSG_PUB.Count_And_Get
1617: (p_count => x_msg_count,
1618: p_data => x_msg_data
1619: );
1620: END Validate_ge_chklst_Rec;