DBA Data[Home] [Help]

APPS.WMS_TASK_UTILS_PVT dependencies on FND_MESSAGE

Line 1835: FND_MESSAGE.SET_NAME('WMS','WMS_TD_MO_ERROR' );

1831: END IF;
1832:
1833:
1834: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1835: FND_MESSAGE.SET_NAME('WMS','WMS_TD_MO_ERROR' );
1836: FND_MSG_PUB.ADD;
1837: RAISE FND_API.g_exc_unexpected_error;
1838:
1839: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN

Line 1840: FND_MESSAGE.SET_NAME('WMS','WMS_TD_MO_ERROR');

1836: FND_MSG_PUB.ADD;
1837: RAISE FND_API.g_exc_unexpected_error;
1838:
1839: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
1840: FND_MESSAGE.SET_NAME('WMS','WMS_TD_MO_ERROR');
1841: FND_MSG_PUB.ADD;
1842: RAISE FND_API.G_EXC_ERROR;
1843: END IF;
1844:

Line 2484: fnd_message.set_name('WMS', 'WMS_LPN_MULTIPLE_ALLOC_ERR');

2480:
2481: RETURN 'Y';
2482: END;
2483:
2484: fnd_message.set_name('WMS', 'WMS_LPN_MULTIPLE_ALLOC_ERR');
2485: fnd_msg_pub.ADD;
2486: RETURN 'M';
2487: EXCEPTION
2488: WHEN fnd_api.g_exc_error THEN

Line 2489: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');

2485: fnd_msg_pub.ADD;
2486: RETURN 'M';
2487: EXCEPTION
2488: WHEN fnd_api.g_exc_error THEN
2489: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');
2490: fnd_msg_pub.ADD;
2491: RETURN fnd_api.g_ret_sts_error;
2492: WHEN fnd_api.g_exc_unexpected_error THEN
2493: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');

Line 2493: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');

2489: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');
2490: fnd_msg_pub.ADD;
2491: RETURN fnd_api.g_ret_sts_error;
2492: WHEN fnd_api.g_exc_unexpected_error THEN
2493: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');
2494: fnd_msg_pub.ADD;
2495: RETURN fnd_api.g_ret_sts_unexp_error;
2496: WHEN OTHERS THEN
2497: IF (l_debug = 1) THEN

Line 2501: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');

2497: IF (l_debug = 1) THEN
2498: mydebug('Exception occurred in can_unload api' || SQLERRM);
2499: END IF;
2500:
2501: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');
2502: fnd_msg_pub.ADD;
2503: RETURN fnd_api.g_ret_sts_unexp_error;
2504: END can_unload;
2505: