DBA Data[Home] [Help]

APPS.WMS_TASK_UTILS_PVT dependencies on FND_MESSAGE

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

1846: END IF;
1847:
1848:
1849: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1850: FND_MESSAGE.SET_NAME('WMS','WMS_TD_MO_ERROR' );
1851: FND_MSG_PUB.ADD;
1852: RAISE FND_API.g_exc_unexpected_error;
1853:
1854: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN

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

1851: FND_MSG_PUB.ADD;
1852: RAISE FND_API.g_exc_unexpected_error;
1853:
1854: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
1855: FND_MESSAGE.SET_NAME('WMS','WMS_TD_MO_ERROR');
1856: FND_MSG_PUB.ADD;
1857: RAISE FND_API.G_EXC_ERROR;
1858: END IF;
1859:

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

2495:
2496: RETURN 'Y';
2497: END;
2498:
2499: fnd_message.set_name('WMS', 'WMS_LPN_MULTIPLE_ALLOC_ERR');
2500: fnd_msg_pub.ADD;
2501: RETURN 'M';
2502: EXCEPTION
2503: WHEN fnd_api.g_exc_error THEN

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

2500: fnd_msg_pub.ADD;
2501: RETURN 'M';
2502: EXCEPTION
2503: WHEN fnd_api.g_exc_error THEN
2504: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');
2505: fnd_msg_pub.ADD;
2506: RETURN fnd_api.g_ret_sts_error;
2507: WHEN fnd_api.g_exc_unexpected_error THEN
2508: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');

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

2504: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');
2505: fnd_msg_pub.ADD;
2506: RETURN fnd_api.g_ret_sts_error;
2507: WHEN fnd_api.g_exc_unexpected_error THEN
2508: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');
2509: fnd_msg_pub.ADD;
2510: RETURN fnd_api.g_ret_sts_unexp_error;
2511: WHEN OTHERS THEN
2512: IF (l_debug = 1) THEN

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

2512: IF (l_debug = 1) THEN
2513: mydebug('Exception occurred in can_unload api' || SQLERRM);
2514: END IF;
2515:
2516: fnd_message.set_name('WMS', 'WMS_CAN_UNLOAD_ERROR');
2517: fnd_msg_pub.ADD;
2518: RETURN fnd_api.g_ret_sts_unexp_error;
2519: END can_unload;
2520: