‎2012 Dec 14 5:48 AM
Can anyone explain what is this while debugging ?
This holds the value of my reference variable.
{O:3*\PROGRAM=ZCLASS_09\CLASS=LCL_EMPLOYEE}
Why it always starts with 3 ?
‎2012 Dec 17 4:22 PM
Hi,
O means Object (Instance).
3 - is the instance number which was system generated.
It will not always be 3. System will generate it.
Try to create another instance ( Object ) of same class then you will see a different instance number.
Create object obj1.
create object obj2.
Hope this helps u.,
Regards,
Kiran
‎2012 Dec 18 4:47 AM