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 788: FND_MSG_PUB.initialize;

784: END IF;
785:
786: -- Initialize message list if p_init_msg_list is set to TRUE
787: IF FND_API.To_Boolean(p_init_msg_list) THEN
788: FND_MSG_PUB.initialize;
789: END IF;
790:
791: -- Initialize API return status to success
792: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 884: FND_MSG_PUB.Count_And_Get(

880: END IF;
881:
882: x_return_status := l_return_status;
883: -- Standard call to get message count and if count is 1, get message info
884: FND_MSG_PUB.Count_And_Get(
885: p_encoded => FND_API.G_FALSE,
886: p_count => x_msg_count,
887: p_data => x_msg_data);
888:

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

1075: EXCEPTION
1076: WHEN FND_API.G_EXC_ERROR THEN
1077: ROLLBACK TO PROCESS_ALL_PROMISES_PVT;
1078: x_return_status := FND_API.G_RET_STS_ERROR;
1079: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1080: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1081: /*
1082: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1083: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

1090: END IF;
1091: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1092: ROLLBACK TO PROCESS_ALL_PROMISES_PVT;
1093: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1094: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1095: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1096: /*
1097: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1098: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

1105: END IF;
1106: WHEN OTHERS THEN
1107: ROLLBACK TO PROCESS_ALL_PROMISES_PVT;
1108: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1109: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1110: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1111: END IF;
1112: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1113: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

1106: WHEN OTHERS THEN
1107: ROLLBACK TO PROCESS_ALL_PROMISES_PVT;
1108: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1109: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1110: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1111: END IF;
1112: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1113: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1114: /*

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

1108: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1109: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1110: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1111: END IF;
1112: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1113: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1114: /*
1115: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1116: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 1181: FND_MSG_PUB.initialize;

1177: END IF;
1178:
1179: -- Initialize message list if p_init_msg_list is set to TRUE
1180: IF FND_API.To_Boolean(p_init_msg_list) THEN
1181: FND_MSG_PUB.initialize;
1182: END IF;
1183:
1184: -- Initialize API return status to success
1185: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1462: FND_MSG_PUB.Count_And_Get(

1458: END IF;
1459:
1460: x_return_status := l_return_status;
1461: -- Standard call to get message count and if count is 1, get message info
1462: FND_MSG_PUB.Count_And_Get(
1463: p_encoded => FND_API.G_FALSE,
1464: p_count => x_msg_count,
1465: p_data => x_msg_data);
1466:

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

1468:
1469: WHEN FND_API.G_EXC_ERROR THEN
1470: ROLLBACK TO PROCESS_REVERSALS_PVT;
1471: x_return_status := FND_API.G_RET_STS_ERROR;
1472: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1473: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1474: /*
1475: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1476: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

1483: END IF;
1484: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1485: ROLLBACK TO PROCESS_REVERSALS_PVT;
1486: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1487: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1488: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1489: /*
1490: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1491: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

1498: END IF;
1499: WHEN OTHERS THEN
1500: ROLLBACK TO PROCESS_REVERSALS_PVT;
1501: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1502: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1503: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1504: END IF;
1505: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1506: /*

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

1499: WHEN OTHERS THEN
1500: ROLLBACK TO PROCESS_REVERSALS_PVT;
1501: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1502: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1503: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1504: END IF;
1505: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1506: /*
1507: IEX_CONC_REQUEST_MSG_PKG.Log_Error(

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

1501: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1502: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1503: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1504: END IF;
1505: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1506: /*
1507: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1508: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
1509: P_Procedure_name => G_PKG_NAME || '.' || l_api_name,

Line 1574: FND_MSG_PUB.initialize;

1570: END IF;
1571:
1572: -- Initialize message list if p_init_msg_list is set to TRUE
1573: IF FND_API.To_Boolean(p_init_msg_list) THEN
1574: FND_MSG_PUB.initialize;
1575: END IF;
1576:
1577: -- Initialize API return status to success
1578: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1869: FND_MSG_PUB.Count_And_Get(

1865: END IF;
1866:
1867: x_return_status := l_return_status;
1868: -- Standard call to get message count and if count is 1, get message info
1869: FND_MSG_PUB.Count_And_Get(
1870: p_encoded => FND_API.G_FALSE,
1871: p_count => x_msg_count,
1872: p_data => x_msg_data);
1873:

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

1874: EXCEPTION
1875: WHEN FND_API.G_EXC_ERROR THEN
1876: ROLLBACK TO PROCESS_PROMISES_PVT;
1877: x_return_status := FND_API.G_RET_STS_ERROR;
1878: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1879: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1880: /*
1881: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1882: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

1889: END IF;
1890: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1891: ROLLBACK TO PROCESS_PROMISES_PVT;
1892: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1893: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1894: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1895: /*
1896: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1897: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

1904: END IF;
1905: WHEN OTHERS THEN
1906: ROLLBACK TO PROCESS_PROMISES_PVT;
1907: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1908: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1909: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1910: END IF;
1911: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1912: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

1905: WHEN OTHERS THEN
1906: ROLLBACK TO PROCESS_PROMISES_PVT;
1907: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1908: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1909: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1910: END IF;
1911: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1912: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1913: /*

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

1907: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1908: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
1909: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
1910: END IF;
1911: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1912: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
1913: /*
1914: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
1915: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 1990: FND_MSG_PUB.initialize;

1986: END IF;
1987:
1988: -- Initialize message list if p_init_msg_list is set to TRUE
1989: IF FND_API.To_Boolean(p_init_msg_list) THEN
1990: FND_MSG_PUB.initialize;
1991: END IF;
1992:
1993: -- Initialize API return status to success
1994: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 2621: FND_MSG_PUB.Count_And_Get(

2617: END IF;
2618:
2619: x_return_status := l_return_status;
2620: -- Standard call to get message count and if count is 1, get message info
2621: FND_MSG_PUB.Count_And_Get(
2622: p_encoded => FND_API.G_FALSE,
2623: p_count => x_msg_count,
2624: p_data => x_msg_data);
2625:

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

2627:
2628: WHEN FND_API.G_EXC_ERROR THEN
2629: ROLLBACK TO APPLY_PROMISES_FIFO_PVT;
2630: x_return_status := FND_API.G_RET_STS_ERROR;
2631: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2632: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2633: /*
2634: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
2635: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

2642: END IF;
2643: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2644: ROLLBACK TO APPLY_PROMISES_FIFO_PVT;
2645: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2646: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2647: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2648: /*
2649: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
2650: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

2657: END IF;
2658: WHEN OTHERS THEN
2659: ROLLBACK TO APPLY_PROMISES_FIFO_PVT;
2660: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2661: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
2662: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
2663: END IF;
2664: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2665: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

2658: WHEN OTHERS THEN
2659: ROLLBACK TO APPLY_PROMISES_FIFO_PVT;
2660: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2661: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
2662: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
2663: END IF;
2664: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2665: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2666: /*

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

2660: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2661: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)THEN
2662: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
2663: END IF;
2664: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
2665: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
2666: /*
2667: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
2668: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 2880: FND_MSG_PUB.initialize;

2876: END IF;
2877:
2878: -- Initialize message list if p_init_msg_list is set to TRUE.
2879: IF FND_API.to_Boolean( p_init_msg_list ) THEN
2880: FND_MSG_PUB.initialize;
2881: END IF;
2882:
2883: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
2884: LogMessage( 'Start time: ' || TO_CHAR(SYSDATE, 'HH24:MI:SSSSS'));

Line 3121: FND_MSG_PUB.Count_And_Get(

3117: --End bug 7317666 21-Nov-2008 barathsr
3118:
3119: x_return_status := l_return_status;
3120: -- Standard call to get message count and if count is 1, get message info
3121: FND_MSG_PUB.Count_And_Get(
3122: p_encoded => FND_API.G_FALSE,
3123: p_count => x_msg_count,
3124: p_data => x_msg_data);
3125:

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

3126: EXCEPTION
3127: WHEN FND_API.G_EXC_ERROR THEN
3128: ROLLBACK TO PROCESS_PROMISE_CALLBACKS_PUB;
3129: x_return_status := FND_API.G_RET_STS_ERROR;
3130: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3131: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3132: /*
3133: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
3134: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

3138: -- End - Andre Araujo - 09/30/2004- Remove obsolete logging
3139: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
3140: ROLLBACK TO PROCESS_PROMISE_CALLBACKS_PUB;
3141: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3142: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3143: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3144: /*
3145: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
3146: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

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

3150: -- End - Andre Araujo - 09/30/2004- Remove obsolete logging
3151: WHEN OTHERS THEN
3152: ROLLBACK TO PROCESS_PROMISE_CALLBACKS_PUB;
3153: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3154: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
3155: THEN
3156: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
3157: END IF;
3158: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

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

3152: ROLLBACK TO PROCESS_PROMISE_CALLBACKS_PUB;
3153: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3154: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
3155: THEN
3156: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
3157: END IF;
3158: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3159: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3160: /*

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

3154: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
3155: THEN
3156: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
3157: END IF;
3158: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3159: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3160: /*
3161: IEX_CONC_REQUEST_MSG_PKG.Log_Error(
3162: P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,

Line 3219: FND_MSG_PUB.initialize;

3215: END IF;
3216:
3217: -- Initialize message list if p_init_msg_list is set to TRUE
3218: IF FND_API.To_Boolean(p_init_msg_list) THEN
3219: FND_MSG_PUB.initialize;
3220: END IF;
3221:
3222: -- Initialize API return status to success
3223: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 3324: FND_MSG_PUB.Count_And_Get(

3320: END IF;
3321:
3322: x_return_status := l_return_status;
3323: -- Standard call to get message count and if count is 1, get message info
3324: FND_MSG_PUB.Count_And_Get(
3325: p_encoded => FND_API.G_FALSE,
3326: p_count => x_msg_count,
3327: p_data => x_msg_data);
3328:

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

3329: EXCEPTION
3330: WHEN FND_API.G_EXC_ERROR THEN
3331: ROLLBACK TO REOPEN_PROMISES_PVT;
3332: x_return_status := FND_API.G_RET_STS_ERROR;
3333: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3334: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3335: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
3336: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
3337: -- P_Procedure_name => 'IEX_PROMISES_BATCH_PUB.REOPEN_PROMISES',

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

3339: -- End - Andre Araujo - 09/30/2004- Remove obsolete logging
3340: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
3341: ROLLBACK TO REOPEN_PROMISES_PVT;
3342: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3343: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3344: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3345: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
3346: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
3347: -- P_Procedure_name => 'IEX_PROMISES_BATCH_PUB.REOPEN_PROMISES',

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

3349: -- End - Andre Araujo - 09/30/2004- Remove obsolete logging
3350: WHEN OTHERS THEN
3351: ROLLBACK TO REOPEN_PROMISES_PVT;
3352: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3353: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
3354: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
3355: END IF;
3356: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3357: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging

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

3350: WHEN OTHERS THEN
3351: ROLLBACK TO REOPEN_PROMISES_PVT;
3352: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3353: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
3354: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
3355: END IF;
3356: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3357: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3358: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(

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

3352: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3353: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
3354: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME, l_api_name);
3355: END IF;
3356: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
3357: -- Begin - Andre Araujo - 09/30/2004- Remove obsolete logging
3358: --IEX_CONC_REQUEST_MSG_PKG.Log_Error(
3359: -- P_Concurrent_Request_ID => FND_GLOBAL.CONC_REQUEST_ID,
3360: -- P_Procedure_name => 'IEX_PROMISES_BATCH_PUB.REOPEN_PROMISES',