Announcements
No record found.
Is there an eConnect method to delete a batch? The batch is empty and I just want to remove the record from SY00500 gracefully.
*This post is locked for comments
It is not possible to delete empty batches using eConnect.
Thanks for the reply Andrew. I decided to use a stored proc to clear out the batch I am working with if available.
Create PROCEDURE ASIM_RemoveEmptyBatch @BatchName varchar(75) ASBEGIN SET NOCOUNT ON; delete btcTable from SY00500 btcTable left outer join SOP10100 SopHdr on btcTable.BACHNUMB = sophdr.BACHNUMB where btcTable.BACHNUMB = @BatchName and btcTable.Series = 3 and sophdr.SOPNUMBE is null ENDGO
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.