axapta 2009年完成日志
我需要通过 x++ 将完成日志插入到工单中。 如何正确设置尺寸,首先是位置?
完成日志并创建引用行,但未设置位置,因此预订会出现错误:
“Lagerungsdimension 'Lagerort' ist eine primäre Ein-/Ausgabedimension und muss daher festgelegt werden。”
应该类似于英语中的“维度‘位置’是主要维度,必须进行设置”。
我尝试过:
prodJournalProd.InventDimId = ProdTable::find( myProdID ).InventDimId;
没有成功。
非常感谢您的提前帮助!
i need to insert a finish journal to a workorder by x++.
how to set the dimensions, first of all location correctly?
finish journal and referring line is created, but location isn't set, so booking gives an error:
"Lagerungsdimension 'Lagerort' ist eine primäre Ein-/Ausgabedimension und muss daher festgelegt werden."
should be something like "dimension 'location' is a primary dimension and has to be set" in english.
i tried:
prodJournalProd.InventDimId = ProdTable::find( myProdID ).InventDimId;
without success.
thanks so much for help in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
英语错误:“库存维度仓库是主要输入/输出维度,因此必须指定。”
我认为有问题的维度 (InventDim.InventLocationId) 已留空,但必须填写。
The error in English: "Stock dimension Warehouse is a primary input/output dimension and must consequently be specified."
I suppose the dimension in question (InventDim.InventLocationId) has been left empty though it must be filled in.