Hey
What tables are you referring to?
When you checked these tables, what restriction did you use?
Do you know any of the Document Numbers that were in the batch that you can use to search through the tables?
If you do not see any records in the Worktables for the transactions in the batch, then the batch totals are wrong. You would need to recreate the transactions if they need to be posted.
If you do not see any records in the History Table for the Transactions, then it means that the transactions that were in the batch have not been posted. But if none in work as well, then the transaction do not exist.
If nothing exists in work or history, then you can recreate the transactions. I suggest using a new batch, with a different name as the batch could have become corrupt. It should likely be deleted (Assuming there are no transactions in the batch).
If this is something that you can recreate where transactions saved to batch are being deleted, it would be best to reach out to your partner and ask for assistance with reviewing the issue to troubleshoot this in occurring in real time.
Based on your response, no data exists for this batch other than the batch record. That means that the transactions do not exist and if you need them to exist, you will need to recreate them.
Below are sample scripts you can use to modify with the Document Number of a transaction that is to be in the batch. If no results are found, it does not exist. Change yyy to a document number of a transaction in the batch
select * from SOP10200 where SOPNUMBE = 'yyy' --Trx Amounts
select * from SOP10100 where SOPNUMBE = 'yyy' --TRX Work
select * from SOP30200 where SOPNUMBE = 'yyy' -- TRX History
Sample scripts below for if a batch exists that says it has transactions in it, then the transaction records should exist in the SOP101011. Change yyyy to Batch ID.
select * from SOP10100 where BACHNUMB = 'yyy' -- If there is a batch with transactions save, there would be a record in this table for the Transaction
select * from SY00500 where BACHNUMB = 'yyy' and series = '3'-- Batch Header
NOTE : Batch Totals can be wrong if there was an interruption.
I hope that helps!
Thank you!