Hello at all,
I have an issue with the inventory closing. In RU6 service items are marked as "closed" after an inventory closing, even if they have been marked to an open purchase order.
Cause is the query in the Class InventCostItemDim\updateService ItemTrans.
This issue has already been fixed in RU7 or RU8. The fix is:
while select forupdate inventTrans
index hint OpenItemIdx
where inventTrans.ValueOpen == InventTransOpen::Yes &&
inventTrans.ItemId == _itemId &&
(inventTrans.StatusIssue == StatusIssue::Sold ||
inventTrans.StatusReceipt == StatusReceipt::Purchased) &&
inventTrans.DateStatus <= inventClosing.TransDate &&
inventTrans.InventRefTransId == '' //marked service item transactions will be settled according to marking principle
But I can't find the hotfix for this. I have been going through the release notes for RU7 and RU8, but couldn't find it. Does anybody know what the hotfix I for this? I would prefer to install the whole hotfix instead of just adding a line in the CUS layer.
Thanks in advance