‎2006 Nov 01 2:26 PM
I use the following "SUBMIT" syntax to submit a job that processes idocs.
"submit rbdagaie with selection-table t_rspar and return."
Works good, no problem, until I want to limit the amount of idocs it processes at once. Meaning it can process 100 then get more idocs and process another 100. The problem is that I get a result screen after the first 100 idocs process. This stops the other 100 from being processed.
Is there syntax I can use in my submit statement that will disable any result secreens from being displayed so processing can continue?
Thank-You.
‎2006 Nov 01 2:30 PM
Hi Tom,
Please try this.
submit rbdagaie with selection-table t_rspar
and return
exporting list to memory.
Regards,
Ferry Lianto
‎2006 Nov 01 2:29 PM
I don't there a command like that, however what you can do is to pass only 100 records to the selection criteria of the SUBMIT report.
So, you can loop in your calling program and call the submit after every 100 records.
Regards,
Ravi
Note : Please mark all the helpful answers
‎2006 Nov 01 2:29 PM
‎2006 Nov 01 2:30 PM
Hi Tom,
Please try this.
submit rbdagaie with selection-table t_rspar
and return
exporting list to memory.
Regards,
Ferry Lianto
‎2006 Nov 01 2:52 PM