DBA Data[Home] [Help]

APPS.OZF_ADJ_NEW_LINE_PVT dependencies on FND_MSG_PUB

Line 70: FND_MSG_PUB.initialize;

66:
67: -- Initialize message list if p_init_msg_list is set to TRUE.
68: IF FND_API.to_Boolean( p_init_msg_list )
69: THEN
70: FND_MSG_PUB.initialize;
71: END IF;
72:
73: -- Debug Message
74: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');

Line 183: FND_MSG_PUB.Count_And_Get (

179: WHEN FND_API.G_EXC_ERROR THEN
180: ROLLBACK TO CREATE_Adj_New_Line_PVT;
181: x_return_status := FND_API.G_RET_STS_ERROR;
182: -- Standard call to get message count and if count=1, get the message
183: FND_MSG_PUB.Count_And_Get (
184: p_encoded => FND_API.G_FALSE,
185: p_count => x_msg_count,
186: p_data => x_msg_data
187: );

Line 193: FND_MSG_PUB.Count_And_Get (

189: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
190: ROLLBACK TO CREATE_Adj_New_Line_PVT;
191: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
192: -- Standard call to get message count and if count=1, get the message
193: FND_MSG_PUB.Count_And_Get (
194: p_encoded => FND_API.G_FALSE,
195: p_count => x_msg_count,
196: p_data => x_msg_data
197: );

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

198:
199: WHEN OTHERS THEN
200: ROLLBACK TO CREATE_Adj_New_Line_PVT;
201: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
202: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
203: THEN
204: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
205: END IF;
206: -- Standard call to get message count and if count=1, get the message

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

200: ROLLBACK TO CREATE_Adj_New_Line_PVT;
201: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
202: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
203: THEN
204: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
205: END IF;
206: -- Standard call to get message count and if count=1, get the message
207: FND_MSG_PUB.Count_And_Get (
208: p_encoded => FND_API.G_FALSE,

Line 207: FND_MSG_PUB.Count_And_Get (

203: THEN
204: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
205: END IF;
206: -- Standard call to get message count and if count=1, get the message
207: FND_MSG_PUB.Count_And_Get (
208: p_encoded => FND_API.G_FALSE,
209: p_count => x_msg_count,
210: p_data => x_msg_data
211: );

Line 262: FND_MSG_PUB.initialize;

258: END IF;
259: -- Initialize message list if p_init_msg_list is set to TRUE.
260: IF FND_API.to_Boolean( p_init_msg_list )
261: THEN
262: FND_MSG_PUB.initialize;
263: END IF;
264: -- Debug Message
265: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');
266: -- Initialize API return status to SUCCESS

Line 361: FND_MSG_PUB.Count_And_Get (

357: WHEN FND_API.G_EXC_ERROR THEN
358: ROLLBACK TO UPDATE_Adj_New_Line_PVT;
359: x_return_status := FND_API.G_RET_STS_ERROR;
360: -- Standard call to get message count and if count=1, get the message
361: FND_MSG_PUB.Count_And_Get (
362: p_encoded => FND_API.G_FALSE,
363: p_count => x_msg_count,
364: p_data => x_msg_data
365: );

Line 371: FND_MSG_PUB.Count_And_Get (

367: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
368: ROLLBACK TO UPDATE_Adj_New_Line_PVT;
369: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
370: -- Standard call to get message count and if count=1, get the message
371: FND_MSG_PUB.Count_And_Get (
372: p_encoded => FND_API.G_FALSE,
373: p_count => x_msg_count,
374: p_data => x_msg_data
375: );

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

376:
377: WHEN OTHERS THEN
378: ROLLBACK TO UPDATE_Adj_New_Line_PVT;
379: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
380: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
381: THEN
382: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
383: END IF;
384: -- Standard call to get message count and if count=1, get the message

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

378: ROLLBACK TO UPDATE_Adj_New_Line_PVT;
379: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
380: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
381: THEN
382: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
383: END IF;
384: -- Standard call to get message count and if count=1, get the message
385: FND_MSG_PUB.Count_And_Get (
386: p_encoded => FND_API.G_FALSE,

Line 385: FND_MSG_PUB.Count_And_Get (

381: THEN
382: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
383: END IF;
384: -- Standard call to get message count and if count=1, get the message
385: FND_MSG_PUB.Count_And_Get (
386: p_encoded => FND_API.G_FALSE,
387: p_count => x_msg_count,
388: p_data => x_msg_data
389: );

Line 436: FND_MSG_PUB.initialize;

432:
433: -- Initialize message list if p_init_msg_list is set to TRUE.
434: IF FND_API.to_Boolean( p_init_msg_list )
435: THEN
436: FND_MSG_PUB.initialize;
437: END IF;
438:
439: -- Debug Message
440: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');

Line 497: FND_MSG_PUB.Count_And_Get

493: -- Debug Message
494: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
495:
496: -- Standard call to get message count and if count is 1, get message info.
497: FND_MSG_PUB.Count_And_Get
498: (p_count => x_msg_count,
499: p_data => x_msg_data
500: );
501: EXCEPTION

Line 511: FND_MSG_PUB.Count_And_Get (

507: WHEN FND_API.G_EXC_ERROR THEN
508: ROLLBACK TO DELETE_Adj_New_Line_PVT;
509: x_return_status := FND_API.G_RET_STS_ERROR;
510: -- Standard call to get message count and if count=1, get the message
511: FND_MSG_PUB.Count_And_Get (
512: p_encoded => FND_API.G_FALSE,
513: p_count => x_msg_count,
514: p_data => x_msg_data
515: );

Line 521: FND_MSG_PUB.Count_And_Get (

517: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
518: ROLLBACK TO DELETE_Adj_New_Line_PVT;
519: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
520: -- Standard call to get message count and if count=1, get the message
521: FND_MSG_PUB.Count_And_Get (
522: p_encoded => FND_API.G_FALSE,
523: p_count => x_msg_count,
524: p_data => x_msg_data
525: );

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

526:
527: WHEN OTHERS THEN
528: ROLLBACK TO DELETE_Adj_New_Line_PVT;
529: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
530: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
531: THEN
532: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
533: END IF;
534: -- Standard call to get message count and if count=1, get the message

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

528: ROLLBACK TO DELETE_Adj_New_Line_PVT;
529: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
530: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
531: THEN
532: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
533: END IF;
534: -- Standard call to get message count and if count=1, get the message
535: FND_MSG_PUB.Count_And_Get (
536: p_encoded => FND_API.G_FALSE,

Line 535: FND_MSG_PUB.Count_And_Get (

531: THEN
532: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
533: END IF;
534: -- Standard call to get message count and if count=1, get the message
535: FND_MSG_PUB.Count_And_Get (
536: p_encoded => FND_API.G_FALSE,
537: p_count => x_msg_count,
538: p_data => x_msg_data
539: );

Line 578: FND_MSG_PUB.initialize;

574:
575: -- Initialize message list if p_init_msg_list is set to TRUE.
576: IF FND_API.to_Boolean( p_init_msg_list )
577: THEN
578: FND_MSG_PUB.initialize;
579: END IF;
580:
581: -- Standard call to check for call compatibility.
582: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

600: FETCH c_Adj_New_Line INTO l_OFFER_ADJ_NEW_LINE_ID;
601:
602: IF (c_Adj_New_Line%NOTFOUND) THEN
603: CLOSE c_Adj_New_Line;
604: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
605: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
606: FND_MSG_PUB.add;
607: END IF;
608: RAISE FND_API.g_exc_error;

Line 606: FND_MSG_PUB.add;

602: IF (c_Adj_New_Line%NOTFOUND) THEN
603: CLOSE c_Adj_New_Line;
604: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
605: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
606: FND_MSG_PUB.add;
607: END IF;
608: RAISE FND_API.g_exc_error;
609: END IF;
610:

Line 614: FND_MSG_PUB.count_and_get(

610:
611: CLOSE c_Adj_New_Line;
612:
613: -------------------- finish --------------------------
614: FND_MSG_PUB.count_and_get(
615: p_encoded => FND_API.g_false,
616: p_count => x_msg_count,
617: p_data => x_msg_data);
618: OZF_UTILITY_PVT.debug_message(l_full_name ||': end');

Line 629: FND_MSG_PUB.Count_And_Get (

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

Line 639: FND_MSG_PUB.Count_And_Get (

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

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

644:
645: WHEN OTHERS THEN
646: ROLLBACK TO LOCK_Adj_New_Line_PVT;
647: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
648: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
649: THEN
650: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
651: END IF;
652: -- Standard call to get message count and if count=1, get the message

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

646: ROLLBACK TO LOCK_Adj_New_Line_PVT;
647: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
648: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
649: THEN
650: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
651: END IF;
652: -- Standard call to get message count and if count=1, get the message
653: FND_MSG_PUB.Count_And_Get (
654: p_encoded => FND_API.G_FALSE,

Line 653: FND_MSG_PUB.Count_And_Get (

649: THEN
650: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
651: END IF;
652: -- Standard call to get message count and if count=1, get the message
653: FND_MSG_PUB.Count_And_Get (
654: p_encoded => FND_API.G_FALSE,
655: p_count => x_msg_count,
656: p_data => x_msg_data
657: );

Line 1185: FND_MSG_PUB.initialize;

1181:
1182: -- Initialize message list if p_init_msg_list is set to TRUE.
1183: IF FND_API.to_Boolean( p_init_msg_list )
1184: THEN
1185: FND_MSG_PUB.initialize;
1186: END IF;
1187: -- Debug Message
1188: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');
1189: -- Initialize API return status to SUCCESS

Line 1238: FND_MSG_PUB.Count_And_Get (

1234: WHEN FND_API.G_EXC_ERROR THEN
1235: ROLLBACK TO VALIDATE_Adj_New_Line_;
1236: x_return_status := FND_API.G_RET_STS_ERROR;
1237: -- Standard call to get message count and if count=1, get the message
1238: FND_MSG_PUB.Count_And_Get (
1239: p_encoded => FND_API.G_FALSE,
1240: p_count => x_msg_count,
1241: p_data => x_msg_data
1242: );

Line 1248: FND_MSG_PUB.Count_And_Get (

1244: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1245: ROLLBACK TO VALIDATE_Adj_New_Line_;
1246: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1247: -- Standard call to get message count and if count=1, get the message
1248: FND_MSG_PUB.Count_And_Get (
1249: p_encoded => FND_API.G_FALSE,
1250: p_count => x_msg_count,
1251: p_data => x_msg_data
1252: );

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

1253:
1254: WHEN OTHERS THEN
1255: ROLLBACK TO VALIDATE_Adj_New_Line_;
1256: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1257: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1258: THEN
1259: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1260: END IF;
1261: -- Standard call to get message count and if count=1, get the message

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

1255: ROLLBACK TO VALIDATE_Adj_New_Line_;
1256: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1257: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1258: THEN
1259: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1260: END IF;
1261: -- Standard call to get message count and if count=1, get the message
1262: FND_MSG_PUB.Count_And_Get (
1263: p_encoded => FND_API.G_FALSE,

Line 1262: FND_MSG_PUB.Count_And_Get (

1258: THEN
1259: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1260: END IF;
1261: -- Standard call to get message count and if count=1, get the message
1262: FND_MSG_PUB.Count_And_Get (
1263: p_encoded => FND_API.G_FALSE,
1264: p_count => x_msg_count,
1265: p_data => x_msg_data
1266: );

Line 1283: FND_MSG_PUB.initialize;

1279: BEGIN
1280: -- Initialize message list if p_init_msg_list is set to TRUE.
1281: IF FND_API.to_Boolean( p_init_msg_list )
1282: THEN
1283: FND_MSG_PUB.initialize;
1284: END IF;
1285:
1286: -- Initialize API return status to SUCCESS
1287: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1297: FND_MSG_PUB.Count_And_Get

1293:
1294: -- Debug Message
1295: OZF_UTILITY_PVT.debug_message('Private API: Validate_adj_new_line_rec');
1296: -- Standard call to get message count and if count is 1, get message info.
1297: FND_MSG_PUB.Count_And_Get
1298: (p_count => x_msg_count,
1299: p_data => x_msg_data
1300: );
1301: END Validate_adj_new_line_Rec;

Line 1399: FND_MSG_PUB.initialize;

1395:
1396: -- Initialize message list if p_init_msg_list is set to TRUE.
1397: IF FND_API.to_Boolean( p_init_msg_list )
1398: THEN
1399: FND_MSG_PUB.initialize;
1400: END IF;
1401: -- Debug Message
1402: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');
1403: -- Initialize API return status to SUCCESS

Line 1485: FND_MSG_PUB.Count_And_Get (

1481: WHEN FND_API.G_EXC_ERROR THEN
1482: ROLLBACK TO Create_Adj_New_Disc_Pvt;
1483: x_return_status := FND_API.G_RET_STS_ERROR;
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 1495: FND_MSG_PUB.Count_And_Get (

1491: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1492: ROLLBACK TO Create_Adj_New_Disc_Pvt;
1493: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1494: -- Standard call to get message count and if count=1, get the message
1495: FND_MSG_PUB.Count_And_Get (
1496: p_encoded => FND_API.G_FALSE,
1497: p_count => x_msg_count,
1498: p_data => x_msg_data
1499: );

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

1500:
1501: WHEN OTHERS THEN
1502: ROLLBACK TO Create_Adj_New_Disc_Pvt;
1503: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1504: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1505: THEN
1506: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1507: END IF;
1508: -- Standard call to get message count and if count=1, get the message

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

1502: ROLLBACK TO Create_Adj_New_Disc_Pvt;
1503: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1504: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1505: THEN
1506: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1507: END IF;
1508: -- Standard call to get message count and if count=1, get the message
1509: FND_MSG_PUB.Count_And_Get (
1510: p_encoded => FND_API.G_FALSE,

Line 1509: FND_MSG_PUB.Count_And_Get (

1505: THEN
1506: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1507: END IF;
1508: -- Standard call to get message count and if count=1, get the message
1509: FND_MSG_PUB.Count_And_Get (
1510: p_encoded => FND_API.G_FALSE,
1511: p_count => x_msg_count,
1512: p_data => x_msg_data
1513: );

Line 1551: FND_MSG_PUB.initialize;

1547: END IF;
1548: -- Initialize message list if p_init_msg_list is set to TRUE.
1549: IF FND_API.to_Boolean( p_init_msg_list )
1550: THEN
1551: FND_MSG_PUB.initialize;
1552: END IF;
1553: -- Debug Message
1554: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');
1555: -- Initialize API return status to SUCCESS

Line 1637: FND_MSG_PUB.Count_And_Get (

1633: WHEN FND_API.G_EXC_ERROR THEN
1634: ROLLBACK TO Update_Adj_New_Disc_Pvt;
1635: x_return_status := FND_API.G_RET_STS_ERROR;
1636: -- Standard call to get message count and if count=1, get the message
1637: FND_MSG_PUB.Count_And_Get (
1638: p_encoded => FND_API.G_FALSE,
1639: p_count => x_msg_count,
1640: p_data => x_msg_data
1641: );

Line 1647: FND_MSG_PUB.Count_And_Get (

1643: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1644: ROLLBACK TO Update_Adj_New_Disc_Pvt;
1645: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1646: -- Standard call to get message count and if count=1, get the message
1647: FND_MSG_PUB.Count_And_Get (
1648: p_encoded => FND_API.G_FALSE,
1649: p_count => x_msg_count,
1650: p_data => x_msg_data
1651: );

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

1652:
1653: WHEN OTHERS THEN
1654: ROLLBACK TO Update_Adj_New_Disc_Pvt;
1655: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1656: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1657: THEN
1658: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1659: END IF;
1660: -- Standard call to get message count and if count=1, get the message

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

1654: ROLLBACK TO Update_Adj_New_Disc_Pvt;
1655: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1656: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1657: THEN
1658: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1659: END IF;
1660: -- Standard call to get message count and if count=1, get the message
1661: FND_MSG_PUB.Count_And_Get (
1662: p_encoded => FND_API.G_FALSE,

Line 1661: FND_MSG_PUB.Count_And_Get (

1657: THEN
1658: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1659: END IF;
1660: -- Standard call to get message count and if count=1, get the message
1661: FND_MSG_PUB.Count_And_Get (
1662: p_encoded => FND_API.G_FALSE,
1663: p_count => x_msg_count,
1664: p_data => x_msg_data
1665: );