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

How to Stop at called screen using SUBMIT?

Former Member
0 Likes
2,026

Hello friends,

I am using SUBMIT in my custom prog. to SUBMIT standard program (SAPF080 :tcode- f.80). Is it possible to stop at called screen rather then seeing final output.

I have to use SUBMIT option as i am passing SELECT-OPTIONS data to standard program.

for instance:-

SUBMIT sapf080 USING SELECTION-SCREEN '1000'

WITH SELECTION-TABLE rspar_tab.

now i want it should display me (tcode f.80 screen) not the result of executed f.80.

Any suggestaion..!!

Thanks

Sunil.

Hello friends,

I am using SUBMIT in my custom prog. to SUBMIT standard program (SAPF080 :tcode- f.80). Is it possible to stop at called screen rather then seeing final output.

I have to use SUBMIT option as i am passing SELECT-OPTIONS data to standard program.

for instance:-

SUBMIT sapf080 USING SELECTION-SCREEN '1000'

WITH SELECTION-TABLE rspar_tab.

now i want it should display me (tcode f.80 screen) not the result of executed f.80.

Any suggestaion..!!

Thanks

Sunil.

4 REPLIES 4
Read only

Former Member
0 Likes
1,306

Hi,

You can use SUBMIT .. VIA SELECTION_SCREEN USING SELECTION-SET (input to selection screen) ...AND RETURN.

Best Regards,

Suresh

Read only

Former Member
0 Likes
1,306

Helo,

Then instead of SUBMIT you need to use


SET PARAMETER ID 'ZABCD' FIELD V_FIELDA "ALL FIELDS WHICH YOU NEED TO SET FOR VARAINT.
CALL TRANSACTION 'F-80'

Edited by: SAP USER on Apr 23, 2009 12:58 PM

Read only

Former Member
0 Likes
1,306

Just F1 on Submit statement and Read the Option Exporting list to memory

also read the Submit F1 help documentation.

Read only

Former Member
0 Likes
1,306

Hi Sunil,

If your purpous is to stop at the initial screen of the called program it can be done in two ways:

1. CALL TRANSACTION .... without the skip first screen option

2. SUBMIT <Program Name> without selection screen options - the program would stop at the initial screen as it has mandatory fields

Hope it helps.

Regards,

Nupur