DBA Data[Home] [Help]

APPS.PV_GE_NOTIF_RULES_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_Notif_Rules(

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_Notif_Rules(
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_Notif_Rules(
77: p_api_version_number IN NUMBER,
78: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

Line 127: FND_MSG_PUB.initialize;

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

Line 279: FND_MSG_PUB.Count_And_Get

275: END IF;
276:
277:
278: -- Standard call to get message count and if count is 1, get message info.
279: FND_MSG_PUB.Count_And_Get
280: (p_count => x_msg_count,
281: p_data => x_msg_data
282: );
283: EXCEPTION

Line 293: FND_MSG_PUB.Count_And_Get (

289: WHEN FND_API.G_EXC_ERROR THEN
290: ROLLBACK TO CREATE_Ge_Notif_Rules_PVT;
291: x_return_status := FND_API.G_RET_STS_ERROR;
292: -- Standard call to get message count and if count=1, get the message
293: FND_MSG_PUB.Count_And_Get (
294: p_encoded => FND_API.G_FALSE,
295: p_count => x_msg_count,
296: p_data => x_msg_data
297: );

Line 303: FND_MSG_PUB.Count_And_Get (

299: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
300: ROLLBACK TO CREATE_Ge_Notif_Rules_PVT;
301: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
302: -- Standard call to get message count and if count=1, get the message
303: FND_MSG_PUB.Count_And_Get (
304: p_encoded => FND_API.G_FALSE,
305: p_count => x_msg_count,
306: p_data => x_msg_data
307: );

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

308:
309: WHEN OTHERS THEN
310: ROLLBACK TO CREATE_Ge_Notif_Rules_PVT;
311: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
312: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
313: THEN
314: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
315: END IF;
316: -- Standard call to get message count and if count=1, get the message

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

310: ROLLBACK TO CREATE_Ge_Notif_Rules_PVT;
311: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
312: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
313: THEN
314: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
315: END IF;
316: -- Standard call to get message count and if count=1, get the message
317: FND_MSG_PUB.Count_And_Get (
318: p_encoded => FND_API.G_FALSE,

Line 317: FND_MSG_PUB.Count_And_Get (

313: THEN
314: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
315: END IF;
316: -- Standard call to get message count and if count=1, get the message
317: FND_MSG_PUB.Count_And_Get (
318: p_encoded => FND_API.G_FALSE,
319: p_count => x_msg_count,
320: p_data => x_msg_data
321: );

Line 419: FND_MSG_PUB.initialize;

415:
416: -- Initialize message list if p_init_msg_list is set to TRUE.
417: IF FND_API.to_Boolean( p_init_msg_list )
418: THEN
419: FND_MSG_PUB.initialize;
420: END IF;
421:
422: -- Debug Message
423: IF (PV_DEBUG_HIGH_ON) THEN

Line 518: FND_MSG_PUB.count_and_get(

514: IF FND_API.to_boolean(p_commit) THEN
515: COMMIT;
516: END IF;
517:
518: FND_MSG_PUB.count_and_get(
519: p_encoded => FND_API.g_false
520: ,p_count => x_msg_count
521: ,p_data => x_msg_data
522: );

Line 534: FND_MSG_PUB.Count_And_Get (

530: WHEN FND_API.G_EXC_ERROR THEN
531: ROLLBACK TO Copy_Row;
532: x_return_status := FND_API.G_RET_STS_ERROR;
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 544: FND_MSG_PUB.Count_And_Get (

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

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

549:
550: WHEN OTHERS THEN
551: ROLLBACK TO Copy_Row;
552: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
553: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
554: THEN
555: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
556: END IF;
557: -- Standard call to get message count and if count=1, get the message

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

551: ROLLBACK TO Copy_Row;
552: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
553: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
554: THEN
555: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
556: END IF;
557: -- Standard call to get message count and if count=1, get the message
558: FND_MSG_PUB.Count_And_Get (
559: p_encoded => FND_API.G_FALSE,

Line 558: FND_MSG_PUB.Count_And_Get (

554: THEN
555: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
556: END IF;
557: -- Standard call to get message count and if count=1, get the message
558: FND_MSG_PUB.Count_And_Get (
559: p_encoded => FND_API.G_FALSE,
560: p_count => x_msg_count,
561: p_data => x_msg_data
562: );

Line 649: FND_MSG_PUB.initialize;

645:
646: -- Initialize message list if p_init_msg_list is set to TRUE.
647: IF FND_API.to_Boolean( p_init_msg_list )
648: THEN
649: FND_MSG_PUB.initialize;
650: END IF;
651:
652:
653:

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

727: END IF;
728:
729:
730: -- Debug Message
731: --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;
732:
733: -- Invoke table handler(Pv_Ge_Notif_Rules_Pkg.Update_Row)
734: Pv_Ge_Notif_Rules_Pkg.Update_Row(
735: p_notif_rule_id => p_ge_notif_rules_rec.notif_rule_id,

Line 776: FND_MSG_PUB.Count_And_Get

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

Line 790: FND_MSG_PUB.Count_And_Get (

786: WHEN FND_API.G_EXC_ERROR THEN
787: ROLLBACK TO UPDATE_Ge_Notif_Rules_PVT;
788: x_return_status := FND_API.G_RET_STS_ERROR;
789: -- Standard call to get message count and if count=1, get the message
790: FND_MSG_PUB.Count_And_Get (
791: p_encoded => FND_API.G_FALSE,
792: p_count => x_msg_count,
793: p_data => x_msg_data
794: );

Line 800: FND_MSG_PUB.Count_And_Get (

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

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

805:
806: WHEN OTHERS THEN
807: ROLLBACK TO UPDATE_Ge_Notif_Rules_PVT;
808: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
809: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
810: THEN
811: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
812: END IF;
813: -- Standard call to get message count and if count=1, get the message

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

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

Line 814: FND_MSG_PUB.Count_And_Get (

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

Line 890: FND_MSG_PUB.initialize;

886:
887: -- Initialize message list if p_init_msg_list is set to TRUE.
888: IF FND_API.to_Boolean( p_init_msg_list )
889: THEN
890: FND_MSG_PUB.initialize;
891: END IF;
892:
893:
894:

Line 938: FND_MSG_PUB.Count_And_Get

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

Line 952: FND_MSG_PUB.Count_And_Get (

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

Line 962: FND_MSG_PUB.Count_And_Get (

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

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

967:
968: WHEN OTHERS THEN
969: ROLLBACK TO DELETE_Ge_Notif_Rules_PVT;
970: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
971: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
972: THEN
973: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
974: END IF;
975: -- Standard call to get message count and if count=1, get the message

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

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

Line 976: FND_MSG_PUB.Count_And_Get (

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

Line 1049: FND_MSG_PUB.initialize;

1045:
1046: -- Initialize message list if p_init_msg_list is set to TRUE.
1047: IF FND_API.to_Boolean( p_init_msg_list )
1048: THEN
1049: FND_MSG_PUB.initialize;
1050: END IF;
1051:
1052:
1053:

Line 1074: FND_MSG_PUB.count_and_get(

1070: Pv_Ge_Notif_Rules_Pkg.Lock_Row(l_notif_rule_id,p_object_version);
1071:
1072:
1073: -------------------- finish --------------------------
1074: FND_MSG_PUB.count_and_get(
1075: p_encoded => FND_API.g_false,
1076: p_count => x_msg_count,
1077: p_data => x_msg_data);
1078: IF (PV_DEBUG_HIGH_ON) THEN

Line 1092: FND_MSG_PUB.Count_And_Get (

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

Line 1102: FND_MSG_PUB.Count_And_Get (

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

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

1107:
1108: WHEN OTHERS THEN
1109: ROLLBACK TO LOCK_Ge_Notif_Rules_PVT;
1110: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1111: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1112: THEN
1113: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1114: END IF;
1115: -- Standard call to get message count and if count=1, get the message

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

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

Line 1116: FND_MSG_PUB.Count_And_Get (

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

Line 1502: FND_MSG_PUB.initialize;

1498:
1499: -- Initialize message list if p_init_msg_list is set to TRUE.
1500: IF FND_API.to_Boolean( p_init_msg_list )
1501: THEN
1502: FND_MSG_PUB.initialize;
1503: END IF;
1504:
1505:
1506: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN

Line 1570: FND_MSG_PUB.Count_And_Get

1566: END IF;
1567:
1568:
1569: -- Standard call to get message count and if count is 1, get message info.
1570: FND_MSG_PUB.Count_And_Get
1571: (p_count => x_msg_count,
1572: p_data => x_msg_data
1573: );
1574: EXCEPTION

Line 1584: FND_MSG_PUB.Count_And_Get (

1580: WHEN FND_API.G_EXC_ERROR THEN
1581: ROLLBACK TO VALIDATE_Ge_Notif_Rules_;
1582: x_return_status := FND_API.G_RET_STS_ERROR;
1583: -- Standard call to get message count and if count=1, get the message
1584: FND_MSG_PUB.Count_And_Get (
1585: p_encoded => FND_API.G_FALSE,
1586: p_count => x_msg_count,
1587: p_data => x_msg_data
1588: );

Line 1594: FND_MSG_PUB.Count_And_Get (

1590: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1591: ROLLBACK TO VALIDATE_Ge_Notif_Rules_;
1592: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1593: -- Standard call to get message count and if count=1, get the message
1594: FND_MSG_PUB.Count_And_Get (
1595: p_encoded => FND_API.G_FALSE,
1596: p_count => x_msg_count,
1597: p_data => x_msg_data
1598: );

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

1599:
1600: WHEN OTHERS THEN
1601: ROLLBACK TO VALIDATE_Ge_Notif_Rules_;
1602: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1603: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1604: THEN
1605: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1606: END IF;
1607: -- Standard call to get message count and if count=1, get the message

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

1601: ROLLBACK TO VALIDATE_Ge_Notif_Rules_;
1602: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1603: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1604: THEN
1605: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1606: END IF;
1607: -- Standard call to get message count and if count=1, get the message
1608: FND_MSG_PUB.Count_And_Get (
1609: p_encoded => FND_API.G_FALSE,

Line 1608: FND_MSG_PUB.Count_And_Get (

1604: THEN
1605: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1606: END IF;
1607: -- Standard call to get message count and if count=1, get the message
1608: FND_MSG_PUB.Count_And_Get (
1609: p_encoded => FND_API.G_FALSE,
1610: p_count => x_msg_count,
1611: p_data => x_msg_data
1612: );

Line 1629: FND_MSG_PUB.initialize;

1625: BEGIN
1626: -- Initialize message list if p_init_msg_list is set to TRUE.
1627: IF FND_API.to_Boolean( p_init_msg_list )
1628: THEN
1629: FND_MSG_PUB.initialize;
1630: END IF;
1631:
1632:
1633:

Line 1648: FND_MSG_PUB.Count_And_Get

1644:
1645: PVX_UTILITY_PVT.debug_message('Private API: Validate_dm_model_rec');
1646: END IF;
1647: -- Standard call to get message count and if count is 1, get message info.
1648: FND_MSG_PUB.Count_And_Get
1649: (p_count => x_msg_count,
1650: p_data => x_msg_data
1651: );
1652: END Validate_ge_notif_rules_Rec;

Line 1677: FND_MSG_PUB.initialize;

1673:
1674: -- Initialize message list if p_init_msg_list is set to TRUE.
1675: IF FND_API.to_Boolean( p_init_msg_list )
1676: THEN
1677: FND_MSG_PUB.initialize;
1678: END IF;
1679:
1680: -- Initialize API return status to SUCCESS
1681: x_return_status := FND_API.G_RET_STS_SUCCESS;