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

Problem in OO ABAP..

Former Member
0 Likes
416

I am new to OO ABAP Programming.

I was analyzing a piece of code as part of my work and I came across the following line of code :

application->ZZ_VEHIACTDATA-SHIP_TO

Can anyone provide me with a detailed explanation of the code?

Thanks in advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
390

Hello Arnab,

Looking at the code it looks like member variable from public structure is getting accessed.

application->ZZ_VEHIACTDATA-SHIP_TO

Here, application is object and ZZ_VEHIACTDATA is structure and SHIP_TO is member variable from structure.

Good way to understand the program is to run it and debug it.

Thanks,

-Augustin.

I am new to OO ABAP Programming.

I was analyzing a piece of code as part of my work and I came across the following line of code :

application->ZZ_VEHIACTDATA-SHIP_TO

Can anyone provide me with a detailed explanation of the code?

Thanks in advance.

2 REPLIES 2
Read only

Former Member
0 Likes
390

Can u elaborate ur question so that i can help u...

Read only

Former Member
0 Likes
391

Hello Arnab,

Looking at the code it looks like member variable from public structure is getting accessed.

application->ZZ_VEHIACTDATA-SHIP_TO

Here, application is object and ZZ_VEHIACTDATA is structure and SHIP_TO is member variable from structure.

Good way to understand the program is to run it and debug it.

Thanks,

-Augustin.