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

clasess

Former Member
0 Likes
640

Hi,

Could any one tell what is the difference in the following

Thanks

Hi,

Could any one tell what is the difference in the following

Thanks

2 REPLIES 2
Read only

Former Member
0 Likes
594

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}

Read only

0 Likes
594

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