DBA Data[Home] [Help]

APPS.INV_UI_ITEM_SUB_LOC_LOVS dependencies on FND_API

Line 41: IF l_return_status <> fnd_api.g_ret_sts_success THEN

37: --l_wms_org := wms_install.check_install(x_return_status => l_return_status, x_msg_count => l_msg_count, x_msg_data => l_msg_data, p_organization_id => p_org_id);
38:
39: l_wms_org := wms_install.check_install(x_return_status => l_return_status, x_msg_count => l_msg_count, x_msg_data => l_msg_data, p_organization_id => NULL);
40:
41: IF l_return_status <> fnd_api.g_ret_sts_success THEN
42: IF (l_debug = 1) THEN
43: DEBUG('Check if WMS installed');
44: END IF;
45: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 45: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

41: IF l_return_status <> fnd_api.g_ret_sts_success THEN
42: IF (l_debug = 1) THEN
43: DEBUG('Check if WMS installed');
44: END IF;
45: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
46:
47: END IF;
48:
49: --If it is a WMS org get the default status ,picking order and set the locator type and insert status history

Line 3473: x_result := fnd_api.g_ret_sts_success;

3469: l_picking_order NUMBER;
3470: l_return_value BOOLEAN := FALSE;
3471: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
3472: BEGIN
3473: x_result := fnd_api.g_ret_sts_success;
3474:
3475: --
3476: -- The LocatorKFF does an autonomous commit
3477: -- so a record is always present in MIL

Line 3533: RAISE fnd_api.g_exc_unexpected_error;

3529: IF NOT l_return_value THEN
3530: IF (l_debug = 1) THEN
3531: DEBUG('GET_PHYSICAL_LOCATION: ERROR');
3532: END IF;
3533: RAISE fnd_api.g_exc_unexpected_error;
3534: END IF;
3535:
3536: --
3537: -- Print the Label for the new Locator

Line 3564: x_result := fnd_api.g_ret_sts_success;

3560: --
3561:
3562: <>
3563: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
3564: x_result := fnd_api.g_ret_sts_success;
3565: COMMIT;
3566: EXCEPTION
3567: WHEN OTHERS THEN
3568: IF (l_debug = 1) THEN

Line 3571: x_result := fnd_api.g_ret_sts_unexp_error;

3567: WHEN OTHERS THEN
3568: IF (l_debug = 1) THEN
3569: DEBUG(SQLERRM);
3570: END IF;
3571: x_result := fnd_api.g_ret_sts_unexp_error;
3572: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
3573: ROLLBACK;
3574: END update_dynamic_locator;
3575: