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: 

About starting the debugger in a modal screen

Former Member
0 Kudos

Hi,

I've tried the way provided in ABAP FAQs, which is to create a txt file with the following line:

[FUNCTION] Command=/H Title=Debugger Type=SystemCommand

And then drag and drop it to the modal screen. How come it doesn't work for me. It just goes to the next screen.

I tried this on T-Code 'XD01'.

Thank you!

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi yun,

1. Simple.

2. These three statements should be

<b>not in 1 line.</b>

<b>Instead three different lines.</b>

THEN IT WILL WORK.

2. like this :

<b>

[Function]

Command=/h

Type=SystemCommand</b>

regards,

amit m.

5 REPLIES 5

former_member186741
Active Contributor
0 Kudos

did you put exactly this,

[FUNCTION] Command=/H Title=Debugger Type=SystemCommand

I think you have to either have:

FUNCTION Command=/H Title=Debugger Type=SystemCommand

or,

Command=/H Title=Debugger Type=SystemCommand

Former Member
0 Kudos

Hi yun,

1. Simple.

2. These three statements should be

<b>not in 1 line.</b>

<b>Instead three different lines.</b>

THEN IT WILL WORK.

2. like this :

<b>

[Function]

Command=/h

Type=SystemCommand</b>

regards,

amit m.

Former Member
0 Kudos

Hi Yun,

You can use "GENERATE A SHORTCUT" option in the application tool bar of the SAP Easy Access.

Press "GENERATE A SHORTCUT"->A "New SAP GUI Shortcut" dialog window will be displayed -> then in the "APPLICATION" area choose TYPE as "System Command"-> then COMMAND as "/H". ->Then in the "Start Options" give the working directory as desk top.

Now a shortcut will be placed on the desk top. Now you can drag drop this on to any dialog window to debug.

Thanks and Regards,

Bharat Kumar Reddy.V

Former Member
0 Kudos

Hi,

I try it and its work.

May be you write this sentence in one line and it doesn't work. Just try write like this ( in 4 lines 😞

[FUNCTION] 
Command=/H 
Title=Debugger 
Type=SystemCommand 

Regards,

0 Kudos

Thank you very much for your replies!

It works now!