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

Content of reference variable while debugging

Former Member
0 Likes
519

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 ?

2 REPLIES 2
Read only

Kiran_Valluru
Active Contributor
0 Likes
437

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

Read only

0 Likes
437

I willl check it.

Thanks Kiran.