DBA Data[Home] [Help]

APPS.WMS_CARTNZN_PUB dependencies on WMS_DEVICE_INTEGRATION_PVT

Line 5429: IF wms_device_integration_pvt.wms_call_device_request = 1 THEN

5425:
5426: BEGIN
5427:
5428:
5429: IF wms_device_integration_pvt.wms_call_device_request = 1 THEN
5430: --set in INVPPICB.pls through call to is_device_set_up()
5431:
5432: l_bus_event_id :=
5433: WMS_Device_Integration_PVT.wms_be_pick_release;

Line 5433: WMS_Device_Integration_PVT.wms_be_pick_release;

5429: IF wms_device_integration_pvt.wms_call_device_request = 1 THEN
5430: --set in INVPPICB.pls through call to is_device_set_up()
5431:
5432: l_bus_event_id :=
5433: WMS_Device_Integration_PVT.wms_be_pick_release;
5434:
5435: ELSIF wms_device_integration_pvt.wms_call_device_request = 2 THEN
5436: --set in INVUTILB.pls/WMSTSKUB.pls through call to is_device_set_up()
5437:

Line 5435: ELSIF wms_device_integration_pvt.wms_call_device_request = 2 THEN

5431:
5432: l_bus_event_id :=
5433: WMS_Device_Integration_PVT.wms_be_pick_release;
5434:
5435: ELSIF wms_device_integration_pvt.wms_call_device_request = 2 THEN
5436: --set in INVUTILB.pls/WMSTSKUB.pls through call to is_device_set_up()
5437:
5438: l_bus_event_id :=
5439: WMS_Device_Integration_PVT.wms_be_mo_task_alloc;

Line 5439: WMS_Device_Integration_PVT.wms_be_mo_task_alloc;

5435: ELSIF wms_device_integration_pvt.wms_call_device_request = 2 THEN
5436: --set in INVUTILB.pls/WMSTSKUB.pls through call to is_device_set_up()
5437:
5438: l_bus_event_id :=
5439: WMS_Device_Integration_PVT.wms_be_mo_task_alloc;
5440:
5441: --START Added below elseif for 13702075
5442: ELSIF wms_device_integration_pvt.wms_call_device_request = 3 THEN
5443: --set in INVUTILB.pls/WMSTSKUB.pls through call to is_device_set_up()

Line 5442: ELSIF wms_device_integration_pvt.wms_call_device_request = 3 THEN

5438: l_bus_event_id :=
5439: WMS_Device_Integration_PVT.wms_be_mo_task_alloc;
5440:
5441: --START Added below elseif for 13702075
5442: ELSIF wms_device_integration_pvt.wms_call_device_request = 3 THEN
5443: --set in INVUTILB.pls/WMSTSKUB.pls through call to is_device_set_up()
5444:
5445: l_bus_event_id :=
5446: WMS_Device_Integration_PVT.WMS_BE_WIP_PICK_RELEASE;

Line 5446: WMS_Device_Integration_PVT.WMS_BE_WIP_PICK_RELEASE;

5442: ELSIF wms_device_integration_pvt.wms_call_device_request = 3 THEN
5443: --set in INVUTILB.pls/WMSTSKUB.pls through call to is_device_set_up()
5444:
5445: l_bus_event_id :=
5446: WMS_Device_Integration_PVT.WMS_BE_WIP_PICK_RELEASE;
5447: --set in INVVWPKB.pls inv_wip_picking_pvt through call to is_device_set_up()
5448:
5449: -- END Added elsif for bug 13702075
5450: END IF;

Line 5453: IF wms_device_integration_pvt.wms_call_device_request IS NOT NULL THEN

5449: -- END Added elsif for bug 13702075
5450: END IF;
5451:
5452:
5453: IF wms_device_integration_pvt.wms_call_device_request IS NOT NULL THEN
5454: --insert line for load operation
5455: INSERT INTO wms_device_requests (request_id,
5456: task_id,
5457: task_summary,

Line 5475: ( WMS_Device_Integration_PVT.wms_pkRel_dev_req_id, --global var so that for all lines in a pick release, it remains same

5471: transaction_quantity,
5472: last_update_date,
5473: last_updated_by) VALUES
5474:
5475: ( WMS_Device_Integration_PVT.wms_pkRel_dev_req_id, --global var so that for all lines in a pick release, it remains same
5476: p_mmtt_row.transaction_temp_id,
5477: 'Y',
5478: 1, --"LOAD"
5479: l_bus_event_id,

Line 5517: ( WMS_Device_Integration_PVT.wms_pkRel_dev_req_id, --global var so that for all lines in a pick release, it remains same

5513: transaction_quantity,
5514: last_update_date,
5515: last_updated_by) VALUES
5516:
5517: ( WMS_Device_Integration_PVT.wms_pkRel_dev_req_id, --global var so that for all lines in a pick release, it remains same
5518: p_mmtt_row.transaction_temp_id,
5519: 'Y',
5520: 2, --"DROP"
5521: l_bus_event_id,

Line 5537: wdrdata.request_id := WMS_Device_Integration_PVT.wms_pkrel_dev_req_id;

5533: p_mmtt_row.transaction_quantity,
5534: Sysdate,
5535: FND_GLOBAL.USER_ID);
5536:
5537: wdrdata.request_id := WMS_Device_Integration_PVT.wms_pkrel_dev_req_id;
5538: wdrData.organization_id := p_mmtt_row.organization_id;
5539: wdrData.subinventory_code := p_mmtt_row.subinventory_code ;
5540: wdrData.business_event_id := l_bus_event_id;
5541: wdrData.locator_id := p_mmtt_row.locator_id;

Line 5551: l_device_id := WMS_Device_Integration_PVT.SELECT_DEVICE(wdrData,'Y',NULL);

5547:
5548:
5549: --Call an api to get the device, this API also updates above
5550: --inserted records WITH found matching device id
5551: l_device_id := WMS_Device_Integration_PVT.SELECT_DEVICE(wdrData,'Y',NULL);
5552:
5553:
5554:
5555: IF l_device_id <> 0 THEN --process further only if device IS found

Line 5572: IF wms_device_integration_pvt.wms_insert_lotSer_rec_WDR = 1 THEN

5568:
5569: IF (l_lot_code >1 OR l_serial_code >1) THEN --LOT OR/AND SERIAL ITEMS
5570:
5571: --check to see whether need to insert lot/ser record
5572: IF wms_device_integration_pvt.wms_insert_lotSer_rec_WDR = 1 THEN
5573:
5574: FOR l_rec IN lot_ser_cursor(p_mmtt_row.transaction_temp_id) LOOP
5575: IF (l_rec.lot_num IS NOT NULL OR l_rec.ser_num IS NOT NULL) THEN
5576: IF (l_rec.ser_num IS NOT NULL) THEN

Line 5611: (WMS_Device_Integration_PVT.wms_pkRel_dev_req_id,

5607: last_update_date,
5608: last_updated_by,
5609: last_update_login)
5610: VALUES
5611: (WMS_Device_Integration_PVT.wms_pkRel_dev_req_id,
5612: p_mmtt_row.transaction_temp_id,
5613: NULL,
5614: NULL,
5615: 'N',