|
4.5. Onhand Snapshot
快照现有量
N: INV/Counting/Physical Inventory/Physical Inventories……Tools/Perform SN
上图点击“Snapshot”按钮,系统自动提交请求“Freeze physical inventory”,快照所选子库内所有物料的当前现有量,按照子库、货位、批次、序列号、物料修订号分别统计。
查看快照结果
N: INV/Counting/Physical Inventory/Approve Adjustments
输入物理盘点名字,Find结果如下:
以第一行为例,可以看到当前系统的现有量是1,因为目前没有输入任何盘点结果,系统认为实际库存为0,所以需要吊证的数量为-1。
也可通过SQL查询:
SELECT mpd.subinventory_name,inventory_item_id,revision,
lot_number,locator_id,serial_number,system_quantity,
count_quantity,adjustment_quantity
FROM inv.mtl_physical_inventories mpi, inv.mtl_physical_adjustments mpd
WHERE mpi.physical_inventory_id = mpd.physical_inventory_id
AND mpi.organization_id = 104
AND mpi.physical_inventory_name = '2006年12月库存初始化' |
|