2
Dynamics AX的新功能,如何獲取特定wmslocation中的所有項目以及w/wmslocation和inventTable之間的關係是什麼?Dynamics AX,wmslocation上的項目
Dynamics AX的新功能,如何獲取特定wmslocation中的所有項目以及w/wmslocation和inventTable之間的關係是什麼?Dynamics AX,wmslocation上的項目
最簡單的方法是爲該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')
感謝。我試圖做類似的事情(使用網站ID)。這工作得很好。 –