Dynamics AX 的新手,如何获取特定 wmslocation 中的所有项目以及 b/w wmslocation 和 inventTable 的关系是什么?
问问题
986 次
1 回答
3
最简单的方法是为该 WMS 位置创建一个现有盘点日志。
这两个表之间没有直接关系。inventtable 中的 item id 可用于连接到 inventtrans 表。invent trans 表具有 itemid、事务类型(库存事务、转移、项目计数等)和 InventDimID。InventDim 表有一个链接到您正在寻找的特定维度组 (wmslocationid)。
所以 SQL 看起来像:
select distinct (itemid) from inventTrans where inventdimid in
(select inventDimid from inventDim
where wmslocationid = 'WMSLocationID you care about here')
于 2013-05-22T13:10:11.203 回答