RE: shipper whitout INTRAN records
Most likely what occurred is when the SJ was interrupted or aborted, it left the AR & IN Batches in a Voided Status. Run the following SQL scripts to locate and correct the batches, then you can release the from the Release AR/IN Batches screens.
select * from Batch where Module = 'IN' and Status = 'V' and Crtd_Prog = '40690' and Crtd_DateTime >= 'mm/dd/yyyy'
order by Crtd_DateTime desc
--update Batch set Status = 'B' where Module = 'IN' and Status = 'V' and BatNbr = 'XXXXXX'
select * from Batch where Module = 'AR' and Status = 'V' and Crtd_Prog = '40690' and Crtd_DateTime >= 'mm/dd/yyyy'
order by Crtd_DateTime desc
--update Batch set Status = 'B' where Module = 'AR' and Status = 'V' and BatNbr = 'XXXXXX'
Change mm/dd/yyyy to the date your SJ was run, then execute the select query
Once you have a BatNbr identified, replace XXXXXX with the value and run the update query.
Repeat for each batch type.
Once each batch has been changed to Balanced, release it from the appropriate Release Batches screen