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: 

BREAKPOINT in userexit: EXIT_SAPLMGMU_001?

Former Member
0 Kudos

Hi,

How to set breakpoint in include INCLUDE ZXMG0U02 that is used in userexit EXIT_SAPLMGMU_001?

tmx.

6 REPLIES 6

Former Member
0 Kudos

Hi,

If the code is already written then put break point

otherwise check the number of the exit and put oin call customer function in main program

Regards

Shiva

Former Member
0 Kudos

Hi,

This is as normal as we set in other applications. But see to it if the user exit is triggered at all. check out teh conditions so that it reaches the INCLUDE.

Regards,

theja.

Former Member
0 Kudos

You can open the include and set breakpoint from the application tool bar or you can use the folleoing command :

break uname.

uname is your username.

Former Member
0 Kudos

Hi,

Use this stmt inside the Include :

BREAK-POINT or BREAK <Sy-UNAME>

Regards,

Omkaram.

Former Member
0 Kudos

Code IN include is working, but I can't set breakpoint??

I tried via MENU and:

BREAK uname.

BREAK-POINT

???.

Former Member
0 Kudos

I was calling FM in INCLUDE as :

IN BACKGROUND TASK DESTINATION 'NONE'

thas was the problem.

tnx all.