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

Debugging a Class

Former Member
0 Likes
9,280

Hi,

Can anyone pl. explain how to debug a class or a particular method in that class ?

Advance Thanx

Regards

Shankar

5 REPLIES 5
Read only

uwe_schieferstein
Active Contributor
0 Likes
3,064

Hello Gowri

Start your application in debugging mode and then choose menu: Breakpoints -> Breakpoint at -> Method.

Enter the global class and the method you want to debug. That's it.

Regards

Uwe

Read only

Former Member
0 Likes
3,064

Hi,

Run t-code SE24 and enter CLASS name and press Display

debug like any other program now.

Regards,

Shalini

Read only

Former Member
0 Likes
3,064

Hi,

Hi,

keep the breakpoint in the method .Goto se24 and execute then it stops at your method.

Read only

Former Member
0 Likes
3,064

Hi,

class cl defintion.

public section.

methods: one.

endclass.

class cl implementation.

method one.

break-point.

write 'hello'.

endmethod.

endclass.

data : obj type ref to cl.

*-Creating the Object

create object obj.

call method obj->one

Refer

Regards

Kiran

Read only

Former Member
0 Likes
3,064

thanks for the help