Application Development and Automation 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: 
Read only

ASAP:Debugging

Former Member
0 Likes
774

Have written some coding in the user exit how to debug it?

8 REPLIES 8
Read only

Former Member
0 Likes
749

Put a break point in your exit.

Run the transaction that will trigger your exit.

Thanks,

Victor.

Read only

Former Member
0 Likes
749

go into the code and write break-point in it.

Read only

Former Member
0 Likes
749

Hi,

Place a static break-point in that exit.Then run the transaction.It will start the debugger when the exit gets fired.

Read only

Former Member
0 Likes
749

Hi Saranya,

Never ever use break-point in general, always be specific when you want to debug a exit. Use the following syntax :

BREAK <USERID>

Hope this is helpful to you. If you need further information, revert back.

Reward all the helpful answers.

Regards

Nagaraj T

Read only

Former Member
0 Likes
749

Hi,

write static breakpoint using BREAK USERID avoid using BREAK-POINT that might cause some problems.

Then execute ur transaction.

Rgds.,

subash

Read only

Former Member
0 Likes
749

Write BREAK USERID or BREAK-POINT at the first line of the include program.

Read only

Former Member
0 Likes
749

saranya srithar,

Write STOP where you want to debug.

than run the t-code it will trigger and stop at here.

Amit.

Read only

Former Member
0 Likes
749

check this link