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 hide okcode from command field?

Former Member
0 Kudos

I am calling the bdc call transaction from report. while calling bdc okcode come along with popup window. I have hidden that popup window. but when i enter the screen ...OK-code should do proper function to process the next screen without being displayed in the command field.

2 REPLIES 2

RicardoRomero_1
Active Contributor
0 Kudos

Hi,

Try with these options:

dismode = 'E'.

updmode = 'S'.

If you dont want to see any screen use dismode = N

Regards,
Ricardo.

0 Kudos

i.e.

DATA params TYPE ctu_params.

params-dismode = 'N'. " or 'E' to stop at screen in error

CALL TRANSACTION tcode USING tab_bdcdata OPTIONS FROM params ...

(or directly MODE = 'N' without OPTIONS FROM params)

(updmode is not concerned by the question)