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: 

clasess

Former Member
0 Kudos
104

Hi,

Could any one tell what is the difference in the following

Thanks

2 REPLIES 2

Former Member
0 Kudos
58

I believe it just means that you're looking at two instances of the object. E.g. these are the two objects below as shown in the debugger.

REPORT zz_temp.

data: g_obj1 type REF TO cl_rsr_parameter.
data: g_obj2 type REF TO cl_rsr_parameter.

create OBJECT g_obj1.
create OBJECT g_obj2.

" {O:3*\CLASS=CL_RSR_PARAMETER}
" {O:4*\CLASS=CL_RSR_PARAMETER}

0 Kudos
58

Give the man the points. He is correct.

O:45 and O:173 are the numbers of the objects, followed by the object type (the class).

kind regards,

Peter