2013-05-22 77 views

回答

3

最簡單的方法是爲該WMS位置創建一個手頭計數日誌。

這兩張表之間沒有直接關係。可發明表中的物品ID可用於連接到發明轉換表。 inventtrans表具有itemid,交易類型(庫存交易,轉賬,物品計數等)和InventDimID。 InventDim表格包含指向您要查找的特定維度組的鏈接(wmslocationid)。

所以SQL看起來像:

select distinct (itemid) from inventTrans where inventdimid in 
(select inventDimid from inventDim 
where wmslocationid = 'WMSLocationID you care about here') 
+1

感謝。我試圖做類似的事情(使用網站ID)。這工作得很好。 –