2008 Apr 01 12:38 PM
Hi,
Could any one tell what is the difference in the following
Thanks
2008 Apr 01 12:43 PM
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}
2008 Apr 01 1:42 PM
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