如何在InventItemLocation表上导入?

时间:2015-11-23 09:04:11

标签: import axapta dynamics-ax-2012 x++ aif

我知道某些类 AIF 要导入到标准表,如下所示:InventItem_InventTable; VendVendTable_VendTable等......

我必须导入到InventTable中,并且我也希望在 InventItemLocation 表中插入。

当我启动:

entityKeyList = InventItemService::construct().create(InventItemDocument);

发生在InventItemLocation自动填充。

是否有其他AIF类可以导入和填充InventItemLocation

我决定插入特定字段(与inventTable无关)。

1 个答案:

答案 0 :(得分:0)

我现在无法测试它,但我会试试AxInventItemLocation类(MSDN)。 像这样:

AxInventItemLocation axInventItemLocation;

axInventItemLocation = AxInventItemLocation::construct();

axInventItemLocation.parmItemId(someItemId);
axInventItemLocation.parmInventDimId(aInventDimId);

axInventItemLocation.save();