Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在生成一个包含维度字段的表单,包括Itemid.
Itemid
我有一个表格,其中只有ItemId,我需要找到inventDimID它。
ItemId
inventDimID
我怎么做?
我认为您在这里寻找的是物品的尺寸,不一定是inventDimId. 为了获得维度,您可以执行以下操作(出于本示例的目的,我们有维度 [1] = 部门:
inventDimId
static void Job8(Args _args) { Dimension dim; SysDim department; ; dim = InventTable::find('3t80').Dimension; department = dim[1]; }