DBA Data[Home] [Help]

APPS.INV_UI_ITEM_SUB_LOC_LOVS dependencies on FND_API

Line 48: IF l_return_status <> fnd_api.g_ret_sts_success THEN

44: --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);
45:
46: 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);
47:
48: IF l_return_status <> fnd_api.g_ret_sts_success THEN
49: IF (l_debug = 1) THEN
50: DEBUG('Check if WMS installed');
51: END IF;
52: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 52: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

48: IF l_return_status <> fnd_api.g_ret_sts_success THEN
49: IF (l_debug = 1) THEN
50: DEBUG('Check if WMS installed');
51: END IF;
52: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
53: END IF;
54:
55: -- Bug 9572628: determine locator type based on physical locator
56: BEGIN

Line 3874: x_result := fnd_api.g_ret_sts_success;

3870: l_picking_order NUMBER;
3871: l_return_value BOOLEAN := FALSE;
3872: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
3873: BEGIN
3874: x_result := fnd_api.g_ret_sts_success;
3875:
3876: --
3877: -- The LocatorKFF does an autonomous commit
3878: -- so a record is always present in MIL

Line 3936: RAISE fnd_api.g_exc_unexpected_error;

3932: WHEN OTHERS THEN
3933: IF (L_DEBUG = 1) THEN
3934: DEBUG('Exception raised');
3935: END IF;
3936: RAISE fnd_api.g_exc_unexpected_error;
3937: END;
3938:
3939: l_return_value := inv_projectlocator_pub.get_physical_location(p_organization_id => p_org_id, p_locator_id => p_locator_id);
3940:

Line 3945: RAISE fnd_api.g_exc_unexpected_error;

3941: IF NOT l_return_value THEN
3942: IF (l_debug = 1) THEN
3943: DEBUG('GET_PHYSICAL_LOCATION: ERROR');
3944: END IF;
3945: RAISE fnd_api.g_exc_unexpected_error;
3946: END IF;
3947:
3948: update_locator(p_sub_code, p_org_id, p_locator_id);
3949: IF (l_debug = 1) THEN

Line 3982: x_result := fnd_api.g_ret_sts_success;

3978: --
3979:
3980: <>
3981: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
3982: x_result := fnd_api.g_ret_sts_success;
3983: COMMIT;
3984: EXCEPTION
3985: WHEN OTHERS THEN
3986: IF (l_debug = 1) THEN

Line 3989: x_result := fnd_api.g_ret_sts_unexp_error;

3985: WHEN OTHERS THEN
3986: IF (l_debug = 1) THEN
3987: DEBUG(SQLERRM);
3988: END IF;
3989: x_result := fnd_api.g_ret_sts_unexp_error;
3990: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
3991: ROLLBACK;
3992: END update_dynamic_locator;
3993: