DBA Data[Home] [Help]

APPS.POS_EXCELASN_PVT dependencies on MTL_SYSTEM_ITEMS

Line 3604: select /*+ INDEX (msi, mtl_system_items_b_u1) */

3600: BEGIN
3601: update pos_exasn_lines plnt
3602: set plnt.lls_Code = 'LAS'
3603: where exists(
3604: select /*+ INDEX (msi, mtl_system_items_b_u1) */
3605: 1 from mtl_system_items msi
3606: where msi.inventory_item_id = plnt.item_id
3607: and msi.organization_id = plnt.ship_to_org_id
3608: and msi.lot_control_code = 2

Line 3605: 1 from mtl_system_items msi

3601: update pos_exasn_lines plnt
3602: set plnt.lls_Code = 'LAS'
3603: where exists(
3604: select /*+ INDEX (msi, mtl_system_items_b_u1) */
3605: 1 from mtl_system_items msi
3606: where msi.inventory_item_id = plnt.item_id
3607: and msi.organization_id = plnt.ship_to_org_id
3608: and msi.lot_control_code = 2
3609: and msi.serial_number_control_code in (2,5));

Line 3615: select /*+ INDEX (msi, mtl_system_items_b_u1) */

3611: update pos_exasn_lines plnt
3612: set plnt.lls_Code = 'LOT'
3613: where plnt.lls_code is null
3614: and exists(
3615: select /*+ INDEX (msi, mtl_system_items_b_u1) */
3616: 1 from mtl_system_items msi
3617: where msi.inventory_item_id = plnt.item_id
3618: and msi.organization_id = plnt.ship_to_org_id
3619: and msi.lot_control_code = 2

Line 3616: 1 from mtl_system_items msi

3612: set plnt.lls_Code = 'LOT'
3613: where plnt.lls_code is null
3614: and exists(
3615: select /*+ INDEX (msi, mtl_system_items_b_u1) */
3616: 1 from mtl_system_items msi
3617: where msi.inventory_item_id = plnt.item_id
3618: and msi.organization_id = plnt.ship_to_org_id
3619: and msi.lot_control_code = 2
3620: and msi.serial_number_control_code not in (2,5));

Line 3626: select /*+ INDEX (msi, mtl_system_items_b_u1) */

3622: update pos_exasn_lines plnt
3623: set plnt.lls_Code = 'SER'
3624: where plnt.lls_code is null
3625: and exists(
3626: select /*+ INDEX (msi, mtl_system_items_b_u1) */
3627: 1 from mtl_system_items msi
3628: where msi.inventory_item_id = plnt.item_id
3629: and msi.organization_id = plnt.ship_to_org_id
3630: and msi.lot_control_code = 1

Line 3627: 1 from mtl_system_items msi

3623: set plnt.lls_Code = 'SER'
3624: where plnt.lls_code is null
3625: and exists(
3626: select /*+ INDEX (msi, mtl_system_items_b_u1) */
3627: 1 from mtl_system_items msi
3628: where msi.inventory_item_id = plnt.item_id
3629: and msi.organization_id = plnt.ship_to_org_id
3630: and msi.lot_control_code = 1
3631: and msi.serial_number_control_code in (2,5));