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

Execute a Parameter Transaction in Background

Former Member
0 Likes
700

Hi, I have a parameter transaction based on a standard SAP report and I want SUBMIT the report so that it can execute in background. I select the varaint option in Parameter transaction with SELECTION-SET how do I represent the MODE option while SUBMIT? Thanks in advance.

1 ACCEPTED SOLUTION
Read only

Sandra_Rossi
Active Contributor
0 Likes
662

If I have well understood your question, SUBMIT means that you call directly the program, so you can't refer to the transaction (which calls the program). If you want to pass values to screen fields (of the selection screen), you have to enter these values either in the program variant, or directly using WITH keyword of SUBMIT statement.

5 REPLIES 5
Read only

Sandra_Rossi
Active Contributor
0 Likes
663

If I have well understood your question, SUBMIT means that you call directly the program, so you can't refer to the transaction (which calls the program). If you want to pass values to screen fields (of the selection screen), you have to enter these values either in the program variant, or directly using WITH keyword of SUBMIT statement.

Read only

former_member156446
Active Contributor
0 Likes
662

Check Vin's reponce in this discussion:

Read only

0 Likes
662

The problem is when I cook up my own SUBMIT along with "WITH" statement to mimick Parameter transaction, it works similar online. But I really want it to run in background. In background, the "Execture Background" option using Parameter transaction works in a different way and SUBMIT with spool request functions in a different way. You'd think they should behave in same way... but they don't

Read only

0 Likes
662

Thanks for your time and advice fellas. I bit the bullet. Doing a BDC to the transaction instead of a SUBMIT program.

Read only

Former Member
0 Likes
662

Pursuing BDC transaction instead of SUBMIT.