I have a General Entry batch with no batch header and no transactions either. I'd like to get rid of it but it won't let me select it. Any help would be appreciated.
*This post is locked for comments
You may get this corrected in one of two ways. Either to run check links for the financial series which will supposedly get rid of such batch, or get on the SQL level in order to delete this record manually as follows;
The script below will retrieve the GL batches with missing header;
SELECT *
FROM dbo.GL10001
WHERE BACHNUMB NOT IN ( SELECT DISTINCT BACHNUMB FROM dbo.GL10000 )
SELECT * FROM dbo.SY00500 WHERE BACHNUMB = '#BACH NUMBER' -- Enter the batch number within the double quotation
In case you have found any orphan, you may get them deleted manually. Consider the Dex_Row_ID field in order not to miss that specific record. Refer to the following post for further illustration on how to get them deleted;
try one of the automated solutions
mbs.microsoft.com/.../automatedsolutionsR10
System
Manager
Cannot Post Batch
Clears the Batch Activity Table (SY00800). If a batch is stuck, this will release the batch for processing.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,240 Super User 2024 Season 2
Martin Dráb 230,149 Most Valuable Professional
nmaenpaa 101,156