Re: sales order not transferring to invoice GP10
Hello Ryan
I would recommend you to try this check. Open the Sales Order in question and check the Master number by clicking the expansion button for the Order Number field.
In SQL Server, execute the following query on the SOP tables.
SELECT * FROM SOP10100 WHERE MSTRNMBR = XXX and ORIGNUMB = 'YYY' AND ORIGTYPE = 2
SELECT * FROM SOP30200 WHERE MSTRNMBR = XXX and ORIGNUMB = 'YYY' AND ORIGTYPE = 2
where XXX = Master Number and YYY = Order Number.
Check if the above query returns any results. If it does, it means the order was successfully transferred to another document.
This could happen if the order was initially transferred to an invoice without selecting the option "Transfer Totals and Deposits", which causes the order to still exist in the work table, and when you try to transfer this order again, you get the same message as you had mentioned and nothing would get transferred to an invoice.
Let us know if you need further assistance.