Application Development 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: 

How to Stop at called screen using SUBMIT?

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi,

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

Best Regards,

Suresh

Former Member
0 Kudos

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

former_member188685
Active Contributor
0 Kudos

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

also read the Submit F1 help documentation.

former_member605083
Participant
0 Kudos

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