Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Submit Program (With No Result screen)

Former Member
0 Likes
8,699

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.

1 ACCEPTED SOLUTION
Read only

ferry_lianto
Active Contributor
0 Likes
3,204

Hi Tom,

Please try this.


submit rbdagaie with selection-table t_rspar 
                and return
                exporting list to memory. 

Regards,

Ferry Lianto

4 REPLIES 4
Read only

Former Member
0 Likes
3,204

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

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
3,204

The only way to suppress the output screen is to run it in background or submit to SAP-SPOOLER, or even send the LIST to MEMORY.

Try this first.

submit rbdagaie with selection-table t_rspar 
          <b>  exporting list to memory</b>
                   and return.

Regards,

Rich Heilman

Read only

ferry_lianto
Active Contributor
0 Likes
3,205

Hi Tom,

Please try this.


submit rbdagaie with selection-table t_rspar 
                and return
                exporting list to memory. 

Regards,

Ferry Lianto

Read only

0 Likes
3,204

Thank-You ferry!