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: 

change mode

Former Member
0 Kudos

hi abapers ,

i need to change the mode in my report in the debugging mode how should i go about n how should i see my output

for the statement below

CALL TRANSACTION 'MB01'

USING bdcdata

MODE display_mode

UPDATE 'S'

MESSAGES INTO msgtbl.

i set the breakpoint in the call transaction in the mode was n i made it display n after which how should i reflect the changes....

plz help me..

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

I hope you are looking for update mode.

If yes

than change

MODE display_mode

to

MODE 'A'

Regards

Madhan

3 REPLIES 3

Former Member
0 Kudos

Hi

I hope you are looking for update mode.

If yes

than change

MODE display_mode

to

MODE 'A'

Regards

Madhan

Former Member
0 Kudos

Hi,

Double click the display_mode variable and you will see it appear in the debugger variable list. If you are using the old debugger type in the new value and press the pencil icon on the same row.

If you are using the new debugger, click the pencil first then type in the value followed by enter.

Darren

Former Member
0 Kudos

Hi, in debuggin double click the variable for mode and enter the Mode Value ( 'N' = Background, 'A' = Foreground, 'E' = Display errors only) . Give the value in Cabs and press the pencil button near the textbox in the debugging screen.

Jey