DBA Data[Home] [Help]

APPS.GME_RELEASE_BATCH_PVT dependencies on FND_MSG_PUB

Line 283: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

279: WHEN error_unexp_phantom THEN
280: gme_common_pvt.log_message ('PM_UNEXPLODED_PHANTOMS');
281: x_return_status := FND_API.G_RET_STS_ERROR;
282: WHEN OTHERS THEN
283: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
284: IF g_debug <= gme_debug.g_log_procedure THEN
285: gme_debug.put_line ('Unexpected error: '||g_pkg_name||'.'||l_api_name||': '||SQLERRM);
286: END IF;
287: x_return_status := FND_API.g_ret_sts_unexp_error;

Line 457: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

453: WHEN error_dispense_non_reserve THEN
454: gme_common_pvt.log_message ('GME_DISPENSE_NON_RESERVE');
455: x_return_status := fnd_api.g_ret_sts_error;
456: WHEN OTHERS THEN
457: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
458: IF g_debug <= gme_debug.g_log_procedure THEN
459: gme_debug.put_line ('Unexpected error: '||g_pkg_name||'.'||l_api_name||': '||SQLERRM);
460: END IF;
461: x_return_status := FND_API.g_ret_sts_unexp_error;

Line 912: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

908: ,x_return_status => x_return_status);
909: WHEN error_unexpected THEN
910: x_return_status := FND_API.g_ret_sts_unexp_error;
911: WHEN OTHERS THEN
912: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
913: IF (NVL(G_DEBUG,-1) = GME_DEBUG.G_LOG_STATEMENT) THEN
914: gme_debug.put_line ('Unexpected error: '||g_pkg_name||'.'||l_api_name||': '||SQLERRM);
915: END IF;
916: x_return_status := FND_API.g_ret_sts_unexp_error;

Line 1237: fnd_msg_pub.ADD;

1233: fnd_message.set_name ('GMI', 'IC_API_UOM_CONVERSION_ERROR');
1234: fnd_message.set_token ('ITEM_NO', l_item_no);
1235: fnd_message.set_token ('FROM_UOM',l_from_um);
1236: fnd_message.set_token ('TO_UOM', l_to_um);
1237: fnd_msg_pub.ADD;
1238: x_return_status := FND_API.g_ret_sts_error;
1239: WHEN error_create_trxn OR error_build_mmti OR error_get_dtl_qty OR error_relieve_rsrv THEN
1240: NULL;
1241: WHEN dispense_error THEN

Line 1244: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

1240: NULL;
1241: WHEN dispense_error THEN
1242: x_return_status := fnd_api.g_ret_sts_error;
1243: WHEN OTHERS THEN
1244: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1245: IF (NVL(G_DEBUG,-1) = GME_DEBUG.G_LOG_STATEMENT) THEN
1246: gme_debug.put_line ('Unexpected error: '||g_pkg_name||'.'||l_api_name||': '||SQLERRM);
1247: END IF;
1248: x_return_status := FND_API.g_ret_sts_unexp_error;

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

1298: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1299:
1300: WHEN OTHERS THEN
1301: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1302: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME , l_api_name);
1303:
1304: END constr_mmti_from_reservation;
1305:
1306: PROCEDURE constr_mmti_from_qty_tree

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

1343: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1344:
1345: WHEN OTHERS THEN
1346: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1347: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME , l_api_name);
1348:
1349: END constr_mmti_from_qty_tree;
1350:
1351: PROCEDURE create_batch_exception

Line 1506: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);

1502: WHEN OTHERS THEN
1503: IF nvl(g_debug, gme_debug.g_log_unexpected + 1) <= gme_debug.g_log_unexpected THEN
1504: gme_debug.put_line('When others exception in '||g_pkg_name||'.'||l_api_name||' Error is ' || SQLERRM);
1505: END IF;
1506: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
1507: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1508: END create_batch_exception;
1509:
1510: /*************************************************************************************/

Line 1620: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);

1616: WHEN OTHERS THEN
1617: IF nvl(g_debug, gme_debug.g_log_unexpected + 1) <= gme_debug.g_log_unexpected THEN
1618: gme_debug.put_line('When others exception in '||g_pkg_name||'.'||l_api_name||' Error is ' || SQLERRM);
1619: END IF;
1620: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
1621: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1622: END check_unexploded_phantom;
1623:
1624: PROCEDURE validate_batch_for_release (p_batch_header_rec IN gme_batch_header%ROWTYPE

Line 1768: fnd_msg_pub.ADD;

1764: gme_common_pvt.log_message('GME_API_INVALID_BATCH_REL');
1765: x_return_status := fnd_api.g_ret_sts_error;
1766: WHEN error_future_date THEN
1767: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');
1768: fnd_msg_pub.ADD;
1769: x_return_status := fnd_api.g_ret_sts_error;
1770: WHEN OTHERS THEN
1771: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1772:

Line 1771: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

1767: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');
1768: fnd_msg_pub.ADD;
1769: x_return_status := fnd_api.g_ret_sts_error;
1770: WHEN OTHERS THEN
1771: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
1772:
1773: IF g_debug <= gme_debug.g_log_procedure THEN
1774: gme_debug.put_line ( 'Unexpected error: '
1775: || g_pkg_name