Dynamics AX,wmslocation上的项目

时间:2013-05-22 05:57:51

标签: dynamics-ax-2009 dynamics-ax-2012

Dynamics AX新手,如何获取特定wmslocation的所有项目以及b / w wmslocation和inventTable的关系是什么?

1 个答案:

答案 0 :(得分:3)

最简单的方法是为该WMS位置创建一个现有的计数日志。

这两个表之间没有直接关系。可以使用Inventtable中的item id连接到inventtrans表。 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')