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: 

Suppress pop-up messages on SUBMIT

giancarla_aguilar
Participant
0 Kudos

I created a program that calls and passes values to 6 standard transactions (IDOCS related) using SUBMIT. How can I suppress the pop-up info msgs on those called transactions? I tried using the additions TO SAP-SPOOL and EXPORTING LIST TO MEMORY (sample below) but the msgs still display.

SUBMIT RBDSEGLM

WITH KPLSEL IN s_ktopl1

WITH BUKSEL IN s_bukrs

WITH ACCSEL IN s_saknr1

WITH MESTYP EQ cc_glmast

WITH LOGSYS EQ cc_logsys

EXPORTING LIST TO MEMORY

AND RETURN.

I need the addition AND RETURN to process succeeding statements.

I can not use CALL TRANSACTION USING itab MODE 'N' because of the select-options in the called selection-screens. Also, the program cannot be executed in background because I call GUI_DOWNLOAD to save the EDI file to local directory.

Any inputs are welcome. Thanks in advance 😃

3 REPLIES 3

Former Member
0 Kudos

hi Giancarla Daroy ,

use key word 'without spool dynpro' in between the SUBMIT ....and RETURN stmt.

<b><i>Reward points if useful</i></b>

chandra

0 Kudos

I have used that with the addition TO SAP-SPOOL, but didn't work. Thanks for your input

JozsefSzikszai
Active Contributor
0 Kudos

hi Giancarla,

I am afraid the only thing you can do is to copy this standard program to Z... one and modify it according to your requirements (i. e. there is no popup),. Than you SUBMIT this Z... program.

ec