DBA Data[Home] [Help]

APPS.IEX_PROMISES_BATCH_PUB dependencies on FND_MSG_PUB

Line 186: FND_MSG_PUB.initialize;

182: END IF;
183:
184: -- Initialize message list if p_init_msg_list is set to TRUE
185: IF FND_API.To_Boolean(p_init_msg_list) THEN
186: FND_MSG_PUB.initialize;
187: END IF;
188:
189: -- Initialize API return status to success
190: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 267: FND_MSG_PUB.Count_And_Get(

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

Line 276: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

272: EXCEPTION
273: WHEN FND_API.G_EXC_ERROR THEN
274: ROLLBACK TO CLOSE_PROMISES_PVT;
275: x_return_status := FND_API.G_RET_STS_ERROR;
276: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
277: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
278: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
279: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
280: -- P_Procedure_name => G_PKG_NAME || '.' || l_api_name,

Line 290: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

286: END IF;
287: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
288: ROLLBACK TO CLOSE_PROMISES_PVT;
289: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
290: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
291: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
292: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
293: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
294: -- P_Procedure_name => G_PKG_NAME || '.' || l_api_name,

Line 303: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

299: END IF;
300: WHEN OTHERS THEN
301: ROLLBACK TO CLOSE_PROMISES_PVT;
302: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
303: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
304: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
305: END IF;
306: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
307: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

300: WHEN OTHERS THEN
301: ROLLBACK TO CLOSE_PROMISES_PVT;
302: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
303: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
304: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
305: END IF;
306: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
307: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
308: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(

Line 306: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

302: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
303: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
304: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
305: END IF;
306: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
307: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
308: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
309: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
310: -- P_Procedure_name => G_PKG_NAME || '.' || l_api_name,

Line 385: FND_MSG_PUB.initialize;

381: END IF;
382:
383: -- Initialize message list if p_init_msg_list is set to TRUE
384: IF FND_API.To_Boolean(p_init_msg_list) THEN
385: FND_MSG_PUB.initialize;
386: END IF;
387:
388: -- Initialize API return status to success
389: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 503: FND_MSG_PUB.Count_And_Get(

499: END IF;
500:
501: x_return_status := l_return_status;
502: -- Standard call to get message count and if count is 1, get message info
503: FND_MSG_PUB.Count_And_Get(
504: p_encoded => FND_API.G_FALSE,
505: p_count => x_msg_count,
506: p_data => x_msg_data);
507:

Line 515: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

511: iex_debug_pub.LogMessage(G_PKG_NAME || '.CLOSE_PROMISES: in FND_API.G_EXC_ERROR execption');
512: END IF;
513: ROLLBACK TO CLOSE_PROMISES_PVT;
514: x_return_status := FND_API.G_RET_STS_ERROR;
515: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
516: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
517: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
518: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
519: -- P_Procedure_name => 'IEX_PROMISES_BATCH_PUB.CLOSE_PROMISES',

Line 528: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

524: iex_debug_pub.LogMessage(G_PKG_NAME || '.CLOSE_PROMISES: in FND_API.G_EXC_UNEXPECTED_ERROR execption');
525: END IF;
526: ROLLBACK TO CLOSE_PROMISES_PVT;
527: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
528: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
529: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
530: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
531: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
532: -- P_Procedure_name => 'IEX_PROMISES_BATCH_PUB.CLOSE_PROMISES',

Line 541: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

537: iex_debug_pub.LogMessage(G_PKG_NAME || '.CLOSE_PROMISES: in OTHERS execption');
538: END IF;
539: ROLLBACK TO CLOSE_PROMISES_PVT;
540: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
541: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
542: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
543: END IF;
544: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
545: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

538: END IF;
539: ROLLBACK TO CLOSE_PROMISES_PVT;
540: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
541: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
542: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
543: END IF;
544: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
545: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
546: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(

Line 544: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

540: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
541: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
542: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
543: END IF;
544: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
545: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
546: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
547: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
548: -- P_Procedure_name => 'IEX_PROMISES_BATCH_PUB.CLOSE_PROMISES',

Line 750: FND_MSG_PUB.initialize;

746: END IF;
747:
748: -- Initialize message list if p_init_msg_list is set to TRUE
749: IF FND_API.To_Boolean(p_init_msg_list) THEN
750: FND_MSG_PUB.initialize;
751: END IF;
752:
753: -- Initialize API return status to success
754: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 846: FND_MSG_PUB.Count_And_Get(

842: END IF;
843:
844: x_return_status := l_return_status;
845: -- Standard call to get message count and if count is 1, get message info
846: FND_MSG_PUB.Count_And_Get(
847: p_encoded => FND_API.G_FALSE,
848: p_count => x_msg_count,
849: p_data => x_msg_data);
850:

Line 965: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

961: EXCEPTION
962: WHEN FND_API.G_EXC_ERROR THEN
963: ROLLBACK TO PROCESS_ALL_PROMISES_PVT;
964: x_return_status := FND_API.G_RET_STS_ERROR;
965: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
966: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
967: /*
968: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
969: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 980: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

976: END IF;
977: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
978: ROLLBACK TO PROCESS_ALL_PROMISES_PVT;
979: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
980: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
981: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
982: /*
983: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
984: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 995: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN

991: END IF;
992: WHEN OTHERS THEN
993: ROLLBACK TO PROCESS_ALL_PROMISES_PVT;
994: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
995: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
996: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
997: END IF;
998: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
999: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

992: WHEN OTHERS THEN
993: ROLLBACK TO PROCESS_ALL_PROMISES_PVT;
994: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
995: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
996: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
997: END IF;
998: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
999: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1000: /*

Line 998: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

994: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
995: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
996: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
997: END IF;
998: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
999: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1000: /*
1001: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1002: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 1067: FND_MSG_PUB.initialize;

1063: END IF;
1064:
1065: -- Initialize message list if p_init_msg_list is set to TRUE
1066: IF FND_API.To_Boolean(p_init_msg_list) THEN
1067: FND_MSG_PUB.initialize;
1068: END IF;
1069:
1070: -- Initialize API return status to success
1071: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1322: FND_MSG_PUB.Count_And_Get(

1318: END IF;
1319:
1320: x_return_status := l_return_status;
1321: -- Standard call to get message count and if count is 1, get message info
1322: FND_MSG_PUB.Count_And_Get(
1323: p_encoded => FND_API.G_FALSE,
1324: p_count => x_msg_count,
1325: p_data => x_msg_data);
1326:

Line 1332: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

1328:
1329: WHEN FND_API.G_EXC_ERROR THEN
1330: ROLLBACK TO PROCESS_REVERSALS_PVT;
1331: x_return_status := FND_API.G_RET_STS_ERROR;
1332: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1333: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1334: /*
1335: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1336: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 1347: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

1343: END IF;
1344: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1345: ROLLBACK TO PROCESS_REVERSALS_PVT;
1346: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1347: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1348: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1349: /*
1350: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1351: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 1362: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN

1358: END IF;
1359: WHEN OTHERS THEN
1360: ROLLBACK TO PROCESS_REVERSALS_PVT;
1361: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1362: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1363: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1364: END IF;
1365: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1366: /*

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

1359: WHEN OTHERS THEN
1360: ROLLBACK TO PROCESS_REVERSALS_PVT;
1361: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1362: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1363: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1364: END IF;
1365: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1366: /*
1367: IEX_CONC_REQUEST_MSG_PKG.Log_Error(

Line 1365: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

1361: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1362: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1363: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1364: END IF;
1365: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1366: /*
1367: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1368: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
1369: P_Procedure_name => G_PKG_NAME || '.' || l_api_name,

Line 1434: FND_MSG_PUB.initialize;

1430: END IF;
1431:
1432: -- Initialize message list if p_init_msg_list is set to TRUE
1433: IF FND_API.To_Boolean(p_init_msg_list) THEN
1434: FND_MSG_PUB.initialize;
1435: END IF;
1436:
1437: -- Initialize API return status to success
1438: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1729: FND_MSG_PUB.Count_And_Get(

1725: END IF;
1726:
1727: x_return_status := l_return_status;
1728: -- Standard call to get message count and if count is 1, get message info
1729: FND_MSG_PUB.Count_And_Get(
1730: p_encoded => FND_API.G_FALSE,
1731: p_count => x_msg_count,
1732: p_data => x_msg_data);
1733:

Line 1738: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

1734: EXCEPTION
1735: WHEN FND_API.G_EXC_ERROR THEN
1736: ROLLBACK TO PROCESS_PROMISES_PVT;
1737: x_return_status := FND_API.G_RET_STS_ERROR;
1738: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1739: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1740: /*
1741: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1742: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 1753: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

1749: END IF;
1750: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1751: ROLLBACK TO PROCESS_PROMISES_PVT;
1752: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1753: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1754: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1755: /*
1756: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1757: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 1768: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN

1764: END IF;
1765: WHEN OTHERS THEN
1766: ROLLBACK TO PROCESS_PROMISES_PVT;
1767: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1768: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1769: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1770: END IF;
1771: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1772: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

1765: WHEN OTHERS THEN
1766: ROLLBACK TO PROCESS_PROMISES_PVT;
1767: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1768: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1769: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1770: END IF;
1771: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1772: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1773: /*

Line 1771: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

1767: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1768: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1769: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1770: END IF;
1771: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1772: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1773: /*
1774: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1775: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 1850: FND_MSG_PUB.initialize;

1846: END IF;
1847:
1848: -- Initialize message list if p_init_msg_list is set to TRUE
1849: IF FND_API.To_Boolean(p_init_msg_list) THEN
1850: FND_MSG_PUB.initialize;
1851: END IF;
1852:
1853: -- Initialize API return status to success
1854: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 2481: FND_MSG_PUB.Count_And_Get(

2477: END IF;
2478:
2479: x_return_status := l_return_status;
2480: -- Standard call to get message count and if count is 1, get message info
2481: FND_MSG_PUB.Count_And_Get(
2482: p_encoded => FND_API.G_FALSE,
2483: p_count => x_msg_count,
2484: p_data => x_msg_data);
2485:

Line 2491: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

2487:
2488: WHEN FND_API.G_EXC_ERROR THEN
2489: ROLLBACK TO APPLY_PROMISES_FIFO_PVT;
2490: x_return_status := FND_API.G_RET_STS_ERROR;
2491: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2492: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2493: /*
2494: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
2495: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 2506: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

2502: END IF;
2503: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2504: ROLLBACK TO APPLY_PROMISES_FIFO_PVT;
2505: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2506: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2507: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2508: /*
2509: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
2510: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 2521: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN

2517: END IF;
2518: WHEN OTHERS THEN
2519: ROLLBACK TO APPLY_PROMISES_FIFO_PVT;
2520: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2521: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
2522: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
2523: END IF;
2524: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2525: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

2518: WHEN OTHERS THEN
2519: ROLLBACK TO APPLY_PROMISES_FIFO_PVT;
2520: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2521: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
2522: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
2523: END IF;
2524: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2525: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2526: /*

Line 2524: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

2520: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2521: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
2522: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
2523: END IF;
2524: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2525: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2526: /*
2527: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
2528: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 2730: FND_MSG_PUB.initialize;

2726: END IF;
2727:
2728: -- Initialize message list if p_init_msg_list is set to TRUE.
2729: IF FND_API.to_Boolean( p_init_msg_list ) THEN
2730: FND_MSG_PUB.initialize;
2731: END IF;
2732:
2733: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
2734: LogMessage( 'Start time: ' || TO_CHAR(SYSDATE, 'HH24:MI:SSSSS'));

Line 2944: FND_MSG_PUB.Count_And_Get(

2940: --End bug 7317666 21-Nov-2008 barathsr
2941:
2942: x_return_status := l_return_status;
2943: -- Standard call to get message count and if count is 1, get message info
2944: FND_MSG_PUB.Count_And_Get(
2945: p_encoded => FND_API.G_FALSE,
2946: p_count => x_msg_count,
2947: p_data => x_msg_data);
2948:

Line 2953: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

2949: EXCEPTION
2950: WHEN FND_API.G_EXC_ERROR THEN
2951: ROLLBACK TO PROCESS_PROMISE_CALLBACKS_PUB;
2952: x_return_status := FND_API.G_RET_STS_ERROR;
2953: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2954: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2955: /*
2956: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
2957: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 2965: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

2961: -- End - Andre Araujo - 09/30/2004- Remove obsolete logging
2962: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2963: ROLLBACK TO PROCESS_PROMISE_CALLBACKS_PUB;
2964: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2965: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2966: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2967: /*
2968: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
2969: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

2973: -- End - Andre Araujo - 09/30/2004- Remove obsolete logging
2974: WHEN OTHERS THEN
2975: ROLLBACK TO PROCESS_PROMISE_CALLBACKS_PUB;
2976: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2977: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2978: THEN
2979: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
2980: END IF;
2981: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

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

2975: ROLLBACK TO PROCESS_PROMISE_CALLBACKS_PUB;
2976: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2977: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2978: THEN
2979: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
2980: END IF;
2981: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2982: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2983: /*

Line 2981: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

2977: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
2978: THEN
2979: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
2980: END IF;
2981: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2982: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2983: /*
2984: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
2985: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 3042: FND_MSG_PUB.initialize;

3038: END IF;
3039:
3040: -- Initialize message list if p_init_msg_list is set to TRUE
3041: IF FND_API.To_Boolean(p_init_msg_list) THEN
3042: FND_MSG_PUB.initialize;
3043: END IF;
3044:
3045: -- Initialize API return status to success
3046: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 3147: FND_MSG_PUB.Count_And_Get(

3143: END IF;
3144:
3145: x_return_status := l_return_status;
3146: -- Standard call to get message count and if count is 1, get message info
3147: FND_MSG_PUB.Count_And_Get(
3148: p_encoded => FND_API.G_FALSE,
3149: p_count => x_msg_count,
3150: p_data => x_msg_data);
3151:

Line 3156: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

3152: EXCEPTION
3153: WHEN FND_API.G_EXC_ERROR THEN
3154: ROLLBACK TO REOPEN_PROMISES_PVT;
3155: x_return_status := FND_API.G_RET_STS_ERROR;
3156: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3157: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3158: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
3159: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
3160: -- P_Procedure_name => 'IEX_PROMISES_BATCH_PUB.REOPEN_PROMISES',

Line 3166: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

3162: -- End - Andre Araujo - 09/30/2004- Remove obsolete logging
3163: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
3164: ROLLBACK TO REOPEN_PROMISES_PVT;
3165: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3166: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3167: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3168: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
3169: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
3170: -- P_Procedure_name => 'IEX_PROMISES_BATCH_PUB.REOPEN_PROMISES',

Line 3176: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

3172: -- End - Andre Araujo - 09/30/2004- Remove obsolete logging
3173: WHEN OTHERS THEN
3174: ROLLBACK TO REOPEN_PROMISES_PVT;
3175: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3176: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
3177: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
3178: END IF;
3179: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3180: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

3173: WHEN OTHERS THEN
3174: ROLLBACK TO REOPEN_PROMISES_PVT;
3175: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3176: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
3177: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
3178: END IF;
3179: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3180: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3181: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(

Line 3179: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

3175: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3176: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
3177: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
3178: END IF;
3179: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3180: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3181: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
3182: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
3183: -- P_Procedure_name => 'IEX_PROMISES_BATCH_PUB.REOPEN_PROMISES',