I want to do Undo Receipt, but it raises error:
---------------------------
Microsoft Dynamics NAV Classic
---------------------------
You cannot undo line 10000 because warehouse put-away lines have already been posted.
---------------------------
OK
---------------------------
I have browse some blogs, and they suggested that I should delete the Posted Inventory Put-away. Hence, I have an idea to just remove the 'checking line code':
CU5817 - Undo Posting Management
...
IF NOT (UndoType IN [DATABASE::"Purch. Rcpt. Line",DATABASE::"Return Receipt Line"]) THEN
TestWarehouseReceiptLine(UndoLineNo,SourceType,SourceSubtype,SourceID,SourceRefNo);
TestWarehouseShipmentLine(UndoLineNo,SourceType,SourceSubtype,SourceID,SourceRefNo);
TestPostedWhseShipmentLine(UndoLineNo,SourceType,SourceSubtype,SourceID,SourceRefNo);
//TestPostedInvtPutAwayLine(UndoLineNo,SourceType,SourceSubtype,SourceID,SourceRefNo); --> remove this line
TestPostedInvtPickLine(UndoLineNo,SourceType,SourceSubtype,SourceID,SourceRefNo);
I want to ask you, whether this is a 'safe' solution?
Thanks in advance.
*This post is locked for comments