DBA Data[Home] [Help]

APPS.INV_PICK_RELEASE_PUB dependencies on WMS_DEVICE_INTEGRATION_PVT

Line 3102: IF wms_device_integration_pvt.wms_call_device_request IS NULL THEN

3098: 'Inv_Pick_Release_pub.Pick_Release');
3099: END IF;
3100: -- Calling device integration api to set global var which will decide
3101: -- whether to process device request or not, if it is a WMS organization.
3102: IF wms_device_integration_pvt.wms_call_device_request IS NULL THEN
3103: -- Bug# 4491974
3104: -- Changed l_mo_line_tbl(1).organization_id to l_mo_line_tbl(l_line_index).organization_id
3105: -- since it is possible to have null value at 1 which will lead to ORA-1403 error.
3106: wms_device_integration_pvt.is_device_set_up(

Line 3106: wms_device_integration_pvt.is_device_set_up(

3102: IF wms_device_integration_pvt.wms_call_device_request IS NULL THEN
3103: -- Bug# 4491974
3104: -- Changed l_mo_line_tbl(1).organization_id to l_mo_line_tbl(l_line_index).organization_id
3105: -- since it is possible to have null value at 1 which will lead to ORA-1403 error.
3106: wms_device_integration_pvt.is_device_set_up(
3107: --l_mo_line_tbl(1).organization_id,
3108: l_mo_line_tbl(l_line_index).organization_id,
3109: 11,
3110: l_api_return_status);

Line 3349: -- bug 9130704: WMS_DEVICE_INTEGRATION_PVT.device_request should not

3345: -- Note: We don't check for the return condition of this API as
3346: -- we let the PickRelease process succeed whether DeviceIntegration
3347: -- succeeds or fails.
3348: --
3349: -- bug 9130704: WMS_DEVICE_INTEGRATION_PVT.device_request should not
3350: -- be called for parallel pick release
3351:
3352: IF (l_wms_installed AND NOT p_skip_cartonization) THEN
3353: WMS_DEVICE_INTEGRATION_PVT.device_request

Line 3353: WMS_DEVICE_INTEGRATION_PVT.device_request

3349: -- bug 9130704: WMS_DEVICE_INTEGRATION_PVT.device_request should not
3350: -- be called for parallel pick release
3351:
3352: IF (l_wms_installed AND NOT p_skip_cartonization) THEN
3353: WMS_DEVICE_INTEGRATION_PVT.device_request
3354: (p_bus_event => WMS_DEVICE_INTEGRATION_PVT.WMS_BE_PICK_RELEASE,
3355: p_call_ctx => WMS_Device_integration_pvt.DEV_REQ_AUTO,
3356: p_task_trx_id => l_mo_line_tbl(l_mo_line_tbl.FIRST).header_id,
3357: -- Bug 6401204 Passing the Organization id as WCS API isn't called correctly

Line 3354: (p_bus_event => WMS_DEVICE_INTEGRATION_PVT.WMS_BE_PICK_RELEASE,

3350: -- be called for parallel pick release
3351:
3352: IF (l_wms_installed AND NOT p_skip_cartonization) THEN
3353: WMS_DEVICE_INTEGRATION_PVT.device_request
3354: (p_bus_event => WMS_DEVICE_INTEGRATION_PVT.WMS_BE_PICK_RELEASE,
3355: p_call_ctx => WMS_Device_integration_pvt.DEV_REQ_AUTO,
3356: p_task_trx_id => l_mo_line_tbl(l_mo_line_tbl.FIRST).header_id,
3357: -- Bug 6401204 Passing the Organization id as WCS API isn't called correctly
3358: p_org_id => l_mo_line_tbl(l_mo_line_tbl.FIRST).organization_id,

Line 3355: p_call_ctx => WMS_Device_integration_pvt.DEV_REQ_AUTO,

3351:
3352: IF (l_wms_installed AND NOT p_skip_cartonization) THEN
3353: WMS_DEVICE_INTEGRATION_PVT.device_request
3354: (p_bus_event => WMS_DEVICE_INTEGRATION_PVT.WMS_BE_PICK_RELEASE,
3355: p_call_ctx => WMS_Device_integration_pvt.DEV_REQ_AUTO,
3356: p_task_trx_id => l_mo_line_tbl(l_mo_line_tbl.FIRST).header_id,
3357: -- Bug 6401204 Passing the Organization id as WCS API isn't called correctly
3358: p_org_id => l_mo_line_tbl(l_mo_line_tbl.FIRST).organization_id,
3359: x_request_msg => l_req_msg,