DBA Data[Home] [Help]

APPS.DPP_APPROVAL_PVT dependencies on STANDARD

Line 127: -- Standard begin of API savepoint Update_User_Action_PVT

123:
124:
125: BEGIN
126:
127: -- Standard begin of API savepoint Update_User_Action_PVT
128: SAVEPOINT Update_User_Action_PVT;
129: -- Standard call to check for call compatibility.
130: IF NOT FND_API.Compatible_API_Call (
131: l_api_version,

Line 129: -- Standard call to check for call compatibility.

125: BEGIN
126:
127: -- Standard begin of API savepoint Update_User_Action_PVT
128: SAVEPOINT Update_User_Action_PVT;
129: -- Standard call to check for call compatibility.
130: IF NOT FND_API.Compatible_API_Call (
131: l_api_version,
132: p_api_version,
133: l_api_name,

Line 297: --Standard call to get message count and if count=1, get the message

293: -- Debug Message
294:
295: dpp_utility_pvt.debug_message(FND_LOG.LEVEL_STATEMENT, l_module, l_api_name||': End');
296:
297: --Standard call to get message count and if count=1, get the message
298: FND_MSG_PUB.Count_And_Get (
299: p_encoded => FND_API.G_FALSE,
300: p_count => x_msg_count,
301: p_data => x_msg_data

Line 307: -- Standard call to get message count and if count=1, get the message

303: EXCEPTION
304: WHEN FND_API.G_EXC_ERROR THEN
305: ROLLBACK TO Update_User_Action_PVT;
306: x_return_status := FND_API.G_RET_STS_ERROR;
307: -- Standard call to get message count and if count=1, get the message
308: FND_MSG_PUB.Count_And_Get (
309: p_encoded => FND_API.G_FALSE,
310: p_count => x_msg_count,
311: p_data => x_msg_data

Line 321: -- Standard call to get message count and if count=1, get the message

317: END IF;
318: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
319: ROLLBACK TO Update_User_Action_PVT;
320: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
321: -- Standard call to get message count and if count=1, get the message
322: FND_MSG_PUB.Count_And_Get (
323: p_encoded => FND_API.G_FALSE,
324: p_count => x_msg_count,
325: p_data => x_msg_data

Line 339: -- Standard call to get message count and if count=1, get the message

335: IF DPP_UNEXP_ERROR_ON
336: THEN
337: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
338: END IF;
339: -- Standard call to get message count and if count=1, get the message
340: FND_MSG_PUB.Count_And_Get (
341: p_encoded => FND_API.G_FALSE,
342: p_count => x_msg_count,
343: p_data => x_msg_data

Line 396: -- Standard begin of API savepoint

392: AND object_id = p_object_id;
393:
394: BEGIN
395:
396: -- Standard begin of API savepoint
397: SAVEPOINT Get_Approvers_PVT;
398: -- Standard call to check for call compatibility.
399: IF NOT FND_API.Compatible_API_Call (
400: l_api_version,

Line 398: -- Standard call to check for call compatibility.

394: BEGIN
395:
396: -- Standard begin of API savepoint
397: SAVEPOINT Get_Approvers_PVT;
398: -- Standard call to check for call compatibility.
399: IF NOT FND_API.Compatible_API_Call (
400: l_api_version,
401: p_api_version,
402: l_api_name,

Line 531: --Standard call to get message count and if count=1, get the message

527: x_approvers(i).approver_level := l_currApprRec.approver_order_number;--l_approver_level;
528: END LOOP;
529: END IF;
530:
531: --Standard call to get message count and if count=1, get the message
532: FND_MSG_PUB.Count_And_Get (
533: p_encoded => FND_API.G_FALSE,
534: p_count => x_msg_count,
535: p_data => x_msg_data

Line 541: -- Standard call to get message count and if count=1, get the message

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

Line 555: -- Standard call to get message count and if count=1, get the message

551: END IF;
552: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
553: ROLLBACK TO Get_Approvers_PVT;
554: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
555: -- Standard call to get message count and if count=1, get the message
556: FND_MSG_PUB.Count_And_Get (
557: p_encoded => FND_API.G_FALSE,
558: p_count => x_msg_count,
559: p_data => x_msg_data

Line 573: -- Standard call to get message count and if count=1, get the message

569: IF DPP_UNEXP_ERROR_ON
570: THEN
571: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
572: END IF;
573: -- Standard call to get message count and if count=1, get the message
574: FND_MSG_PUB.Count_And_Get (
575: p_encoded => FND_API.G_FALSE,
576: p_count => x_msg_count,
577: p_data => x_msg_data

Line 621: -- Standard begin of API savepoint

617: l_approvalProcessCompleteYNOut VARCHAR2(100);
618: l_module CONSTANT VARCHAR2(100) := 'dpp.plsql.DPP_APPROVAL_PVT.GET_ALLAPPROVERS';
619:
620: BEGIN
621: -- Standard begin of API savepoint
622: SAVEPOINT Get_AllApprovers_PVT;
623: -- Standard call to check for call compatibility.
624: IF NOT FND_API.Compatible_API_Call (
625: l_api_version,

Line 623: -- Standard call to check for call compatibility.

619:
620: BEGIN
621: -- Standard begin of API savepoint
622: SAVEPOINT Get_AllApprovers_PVT;
623: -- Standard call to check for call compatibility.
624: IF NOT FND_API.Compatible_API_Call (
625: l_api_version,
626: p_api_version,
627: l_api_name,

Line 800: --Standard call to get message count and if count=1, get the message

796: -- Debug Message
797:
798: dpp_utility_pvt.debug_message(FND_LOG.LEVEL_STATEMENT, l_module, l_api_name||': End');
799:
800: --Standard call to get message count and if count=1, get the message
801: FND_MSG_PUB.Count_And_Get (
802: p_encoded => FND_API.G_FALSE,
803: p_count => x_msg_count,
804: p_data => x_msg_data

Line 810: -- Standard call to get message count and if count=1, get the message

806: EXCEPTION
807: WHEN FND_API.G_EXC_ERROR THEN
808: ROLLBACK TO Get_AllApprovers_PVT;
809: x_return_status := FND_API.G_RET_STS_ERROR;
810: -- Standard call to get message count and if count=1, get the message
811: FND_MSG_PUB.Count_And_Get (
812: p_encoded => FND_API.G_FALSE,
813: p_count => x_msg_count,
814: p_data => x_msg_data

Line 824: -- Standard call to get message count and if count=1, get the message

820: END IF;
821: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
822: ROLLBACK TO Get_AllApprovers_PVT;
823: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
824: -- Standard call to get message count and if count=1, get the message
825: FND_MSG_PUB.Count_And_Get (
826: p_encoded => FND_API.G_FALSE,
827: p_count => x_msg_count,
828: p_data => x_msg_data

Line 842: -- Standard call to get message count and if count=1, get the message

838: IF DPP_UNEXP_ERROR_ON
839: THEN
840: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
841: END IF;
842: -- Standard call to get message count and if count=1, get the message
843: FND_MSG_PUB.Count_And_Get (
844: p_encoded => FND_API.G_FALSE,
845: p_count => x_msg_count,
846: p_data => x_msg_data

Line 884: -- Standard begin of API savepoint Update_User_Action_PVT

880: l_object_type varchar2(30) := 'PRICE PROTECTION';
881: l_module CONSTANT VARCHAR2(100) := 'dpp.plsql.DPP_APPROVAL_PVT.CLEAR_ALL_APPROVALS';
882:
883: BEGIN
884: -- Standard begin of API savepoint Update_User_Action_PVT
885: SAVEPOINT Clear_All_Approvals_PVT;
886: -- Standard call to check for call compatibility.
887: IF NOT FND_API.Compatible_API_Call (
888: l_api_version,

Line 886: -- Standard call to check for call compatibility.

882:
883: BEGIN
884: -- Standard begin of API savepoint Update_User_Action_PVT
885: SAVEPOINT Clear_All_Approvals_PVT;
886: -- Standard call to check for call compatibility.
887: IF NOT FND_API.Compatible_API_Call (
888: l_api_version,
889: p_api_version,
890: l_api_name,

Line 916: --Standard call to get message count and if count=1, get the message

912: -- Debug Message
913:
914: dpp_utility_pvt.debug_message(FND_LOG.LEVEL_STATEMENT, l_module, l_api_name||': End');
915:
916: --Standard call to get message count and if count=1, get the message
917: FND_MSG_PUB.Count_And_Get (
918: p_encoded => FND_API.G_FALSE,
919: p_count => x_msg_count,
920: p_data => x_msg_data

Line 926: -- Standard call to get message count and if count=1, get the message

922: EXCEPTION
923: WHEN FND_API.G_EXC_ERROR THEN
924: ROLLBACK TO Clear_All_Approvals_PVT;
925: x_return_status := FND_API.G_RET_STS_ERROR;
926: -- Standard call to get message count and if count=1, get the message
927: FND_MSG_PUB.Count_And_Get (
928: p_encoded => FND_API.G_FALSE,
929: p_count => x_msg_count,
930: p_data => x_msg_data

Line 940: -- Standard call to get message count and if count=1, get the message

936: END IF;
937: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
938: ROLLBACK TO Clear_All_Approvals_PVT;
939: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
940: -- Standard call to get message count and if count=1, get the message
941: FND_MSG_PUB.Count_And_Get (
942: p_encoded => FND_API.G_FALSE,
943: p_count => x_msg_count,
944: p_data => x_msg_data

Line 958: -- Standard call to get message count and if count=1, get the message

954: IF DPP_UNEXP_ERROR_ON
955: THEN
956: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
957: END IF;
958: -- Standard call to get message count and if count=1, get the message
959: FND_MSG_PUB.Count_And_Get (
960: p_encoded => FND_API.G_FALSE,
961: p_count => x_msg_count,
962: p_data => x_msg_data

Line 1003: -- Standard begin of API savepoint

999: l_workflow_itemkey VARCHAR2(80);
1000: l_module CONSTANT VARCHAR2(100) := 'dpp.plsql.DPP_APPROVAL_PVT.ADD_ACCESS';
1001:
1002: BEGIN
1003: -- Standard begin of API savepoint
1004: SAVEPOINT Add_Access_PVT;
1005: -- Standard call to check for call compatibility.
1006: IF NOT FND_API.Compatible_API_Call (
1007: l_api_version,

Line 1005: -- Standard call to check for call compatibility.

1001:
1002: BEGIN
1003: -- Standard begin of API savepoint
1004: SAVEPOINT Add_Access_PVT;
1005: -- Standard call to check for call compatibility.
1006: IF NOT FND_API.Compatible_API_Call (
1007: l_api_version,
1008: p_api_version,
1009: l_api_name,

Line 1124: --Standard check of commit

1120: END IF;
1121: END;
1122: END LOOP;
1123:
1124: --Standard check of commit
1125: IF FND_API.To_Boolean ( p_commit ) THEN
1126: COMMIT WORK;
1127: END IF;
1128: -- Debug Message

Line 1132: --Standard call to get message count and if count=1, get the message

1128: -- Debug Message
1129:
1130: dpp_utility_pvt.debug_message(FND_LOG.LEVEL_STATEMENT, l_module, l_api_name||': End');
1131:
1132: --Standard call to get message count and if count=1, get the message
1133: FND_MSG_PUB.Count_And_Get (
1134: p_encoded => FND_API.G_FALSE,
1135: p_count => x_msg_count,
1136: p_data => x_msg_data

Line 1142: -- Standard call to get message count and if count=1, get the message

1138: EXCEPTION
1139: WHEN FND_API.G_EXC_ERROR THEN
1140: ROLLBACK TO Add_Access_PVT;
1141: x_return_status := FND_API.G_RET_STS_ERROR;
1142: -- Standard call to get message count and if count=1, get the message
1143: FND_MSG_PUB.Count_And_Get (
1144: p_encoded => FND_API.G_FALSE,
1145: p_count => x_msg_count,
1146: p_data => x_msg_data

Line 1156: -- Standard call to get message count and if count=1, get the message

1152: END IF;
1153: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1154: ROLLBACK TO Add_Access_PVT;
1155: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1156: -- Standard call to get message count and if count=1, get the message
1157: FND_MSG_PUB.Count_And_Get (
1158: p_encoded => FND_API.G_FALSE,
1159: p_count => x_msg_count,
1160: p_data => x_msg_data

Line 1174: -- Standard call to get message count and if count=1, get the message

1170: IF DPP_UNEXP_ERROR_ON
1171: THEN
1172: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1173: END IF;
1174: -- Standard call to get message count and if count=1, get the message
1175: FND_MSG_PUB.Count_And_Get (
1176: p_encoded => FND_API.G_FALSE,
1177: p_count => x_msg_count,
1178: p_data => x_msg_data

Line 1226: -- Standard begin of API savepoint

1222: AND object_id = p_object_id
1223: AND action_code is not null;
1224:
1225: BEGIN
1226: -- Standard begin of API savepoint
1227: SAVEPOINT Revoke_Access_PVT;
1228: -- Standard call to check for call compatibility.
1229: IF NOT FND_API.Compatible_API_Call (
1230: l_api_version,

Line 1228: -- Standard call to check for call compatibility.

1224:
1225: BEGIN
1226: -- Standard begin of API savepoint
1227: SAVEPOINT Revoke_Access_PVT;
1228: -- Standard call to check for call compatibility.
1229: IF NOT FND_API.Compatible_API_Call (
1230: l_api_version,
1231: p_api_version,
1232: l_api_name,

Line 1271: --Standard check of commit

1267: l_approval_access_id := null;
1268: END LOOP;
1269: CLOSE csr_curr_approvers;
1270:
1271: --Standard check of commit
1272: IF FND_API.To_Boolean ( p_commit ) THEN
1273:
1274: dpp_utility_pvt.debug_message(FND_LOG.LEVEL_STATEMENT, l_module, 'Inside Commit ');
1275:

Line 1282: --Standard call to get message count and if count=1, get the message

1278: -- Debug Message
1279:
1280: dpp_utility_pvt.debug_message(FND_LOG.LEVEL_STATEMENT, l_module, l_api_name||': End');
1281:
1282: --Standard call to get message count and if count=1, get the message
1283: FND_MSG_PUB.Count_And_Get (
1284: p_encoded => FND_API.G_FALSE,
1285: p_count => x_msg_count,
1286: p_data => x_msg_data

Line 1292: -- Standard call to get message count and if count=1, get the message

1288: EXCEPTION
1289: WHEN FND_API.G_EXC_ERROR THEN
1290: ROLLBACK TO Revoke_Access_PVT;
1291: x_return_status := FND_API.G_RET_STS_ERROR;
1292: -- Standard call to get message count and if count=1, get the message
1293: FND_MSG_PUB.Count_And_Get (
1294: p_encoded => FND_API.G_FALSE,
1295: p_count => x_msg_count,
1296: p_data => x_msg_data

Line 1306: -- Standard call to get message count and if count=1, get the message

1302: END IF;
1303: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1304: ROLLBACK TO Revoke_Access_PVT;
1305: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1306: -- Standard call to get message count and if count=1, get the message
1307: FND_MSG_PUB.Count_And_Get (
1308: p_encoded => FND_API.G_FALSE,
1309: p_count => x_msg_count,
1310: p_data => x_msg_data

Line 1324: -- Standard call to get message count and if count=1, get the message

1320: IF DPP_UNEXP_ERROR_ON
1321: THEN
1322: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1323: END IF;
1324: -- Standard call to get message count and if count=1, get the message
1325: FND_MSG_PUB.Count_And_Get (
1326: p_encoded => FND_API.G_FALSE,
1327: p_count => x_msg_count,
1328: p_data => x_msg_data

Line 1528: -- Standard call to get message count and if count=1, get the message

1524: EXCEPTION
1525: WHEN FND_API.G_EXC_ERROR THEN
1526: ROLLBACK TO Raise_Event_PVT;
1527: x_return_status := FND_API.G_RET_STS_ERROR;
1528: -- Standard call to get message count and if count=1, get the message
1529: FND_MSG_PUB.Count_And_Get (
1530: p_encoded => FND_API.G_FALSE,
1531: p_count => x_msg_count,
1532: p_data => x_msg_data

Line 1542: -- Standard call to get message count and if count=1, get the message

1538: END IF;
1539: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1540: ROLLBACK TO Raise_Event_PVT;
1541: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1542: -- Standard call to get message count and if count=1, get the message
1543: FND_MSG_PUB.Count_And_Get (
1544: p_encoded => FND_API.G_FALSE,
1545: p_count => x_msg_count,
1546: p_data => x_msg_data

Line 1560: -- Standard call to get message count and if count=1, get the message

1556: IF DPP_UNEXP_ERROR_ON
1557: THEN
1558: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1559: END IF;
1560: -- Standard call to get message count and if count=1, get the message
1561: FND_MSG_PUB.Count_And_Get (
1562: p_encoded => FND_API.G_FALSE,
1563: p_count => x_msg_count,
1564: p_data => x_msg_data

Line 1649: -- Standard begin of API savepoint

1645:
1646: l_execute_str varchar2(3000);
1647:
1648: BEGIN
1649: -- Standard begin of API savepoint
1650: SAVEPOINT Send_Notification_PVT;
1651: -- Standard call to check for call compatibility.
1652: IF NOT FND_API.Compatible_API_Call (
1653: l_api_version,

Line 1651: -- Standard call to check for call compatibility.

1647:
1648: BEGIN
1649: -- Standard begin of API savepoint
1650: SAVEPOINT Send_Notification_PVT;
1651: -- Standard call to check for call compatibility.
1652: IF NOT FND_API.Compatible_API_Call (
1653: l_api_version,
1654: p_api_version,
1655: l_api_name,

Line 1773: --Standard check of commit

1769: and approval_level = ( select max (approval_level)
1770: from DPP_APPROVAL_ACCESS
1771: where object_type = l_object_type
1772: and object_id = l_object_id);
1773: --Standard check of commit
1774: IF FND_API.To_Boolean ( p_commit ) THEN
1775: COMMIT WORK;
1776: END IF;
1777:

Line 1782: --Standard call to get message count and if count=1, get the message

1778: -- Debug Message
1779:
1780: dpp_utility_pvt.debug_message(FND_LOG.LEVEL_STATEMENT, l_module, l_api_name||': End');
1781:
1782: --Standard call to get message count and if count=1, get the message
1783: FND_MSG_PUB.Count_And_Get (
1784: p_encoded => FND_API.G_FALSE,
1785: p_count => x_msg_count,
1786: p_data => x_msg_data

Line 1792: -- Standard call to get message count and if count=1, get the message

1788: EXCEPTION
1789: WHEN FND_API.G_EXC_ERROR THEN
1790: ROLLBACK TO Send_Notification_PVT;
1791: x_return_status := FND_API.G_RET_STS_ERROR;
1792: -- Standard call to get message count and if count=1, get the message
1793: FND_MSG_PUB.Count_And_Get (
1794: p_encoded => FND_API.G_FALSE,
1795: p_count => x_msg_count,
1796: p_data => x_msg_data

Line 1806: -- Standard call to get message count and if count=1, get the message

1802: END IF;
1803: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1804: ROLLBACK TO Send_Notification_PVT;
1805: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1806: -- Standard call to get message count and if count=1, get the message
1807: FND_MSG_PUB.Count_And_Get (
1808: p_encoded => FND_API.G_FALSE,
1809: p_count => x_msg_count,
1810: p_data => x_msg_data

Line 1824: -- Standard call to get message count and if count=1, get the message

1820: IF DPP_UNEXP_ERROR_ON
1821: THEN
1822: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1823: END IF;
1824: -- Standard call to get message count and if count=1, get the message
1825: FND_MSG_PUB.Count_And_Get (
1826: p_encoded => FND_API.G_FALSE,
1827: p_count => x_msg_count,
1828: p_data => x_msg_data

Line 1885: -- Standard begin of API savepoint

1881: l_user_id NUMBER := FND_PROFILE.VALUE('USER_ID');
1882: l_module CONSTANT VARCHAR2(100) := 'dpp.plsql.DPP_APPROVAL_PVT.PROCESS_USER_ACTION';
1883:
1884: BEGIN
1885: -- Standard begin of API savepoint
1886: SAVEPOINT Process_User_Action_PVT;
1887: -- Standard call to check for call compatibility.
1888: IF NOT FND_API.Compatible_API_Call (
1889: l_api_version,

Line 1887: -- Standard call to check for call compatibility.

1883:
1884: BEGIN
1885: -- Standard begin of API savepoint
1886: SAVEPOINT Process_User_Action_PVT;
1887: -- Standard call to check for call compatibility.
1888: IF NOT FND_API.Compatible_API_Call (
1889: l_api_version,
1890: p_api_version,
1891: l_api_name,

Line 2137: --Standard check of commit

2133: dpp_utility_pvt.debug_message(FND_LOG.LEVEL_STATEMENT, l_module, 'Transaction is Future dated and hence not made Active ');
2134:
2135: END IF; --l_effective_date <= sysdate
2136: END IF; --x_final_approval_flag := 'Y'
2137: --Standard check of commit
2138: IF FND_API.To_Boolean ( p_commit ) THEN
2139: COMMIT WORK;
2140: END IF;
2141: -- Debug Message

Line 2145: --Standard call to get message count and if count=1, get the message

2141: -- Debug Message
2142:
2143: dpp_utility_pvt.debug_message(FND_LOG.LEVEL_STATEMENT, l_module, l_api_name||': End');
2144:
2145: --Standard call to get message count and if count=1, get the message
2146: FND_MSG_PUB.Count_And_Get (
2147: p_encoded => FND_API.G_FALSE,
2148: p_count => x_msg_count,
2149: p_data => x_msg_data

Line 2156: -- Standard call to get message count and if count=1, get the message

2152: EXCEPTION
2153: WHEN FND_API.G_EXC_ERROR THEN
2154: ROLLBACK TO Process_User_Action_PVT;
2155: x_return_status := FND_API.G_RET_STS_ERROR;
2156: -- Standard call to get message count and if count=1, get the message
2157: FND_MSG_PUB.Count_And_Get (
2158: p_encoded => FND_API.G_FALSE,
2159: p_count => x_msg_count,
2160: p_data => x_msg_data

Line 2170: -- Standard call to get message count and if count=1, get the message

2166: END IF;
2167: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2168: ROLLBACK TO Process_User_Action_PVT;
2169: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2170: -- Standard call to get message count and if count=1, get the message
2171: FND_MSG_PUB.Count_And_Get (
2172: p_encoded => FND_API.G_FALSE,
2173: p_count => x_msg_count,
2174: p_data => x_msg_data

Line 2188: -- Standard call to get message count and if count=1, get the message

2184: IF DPP_UNEXP_ERROR_ON
2185: THEN
2186: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
2187: END IF;
2188: -- Standard call to get message count and if count=1, get the message
2189: FND_MSG_PUB.Count_And_Get (
2190: p_encoded => FND_API.G_FALSE,
2191: p_count => x_msg_count,
2192: p_data => x_msg_data