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

line type

Former Member
0 Likes
431

Hi Guys,

i have a requirement where i need to populate some values to a structure which is in line type.

eg: structure-linetype-structure1.

i need to populate values to structure1.

can any one please suggest me on this.

Thanks,

madhu

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
408

structure-linetype-structure1 = your_value.

or 

structure-linetype-structure1-field = your_value.

2 REPLIES 2
Read only

Former Member
0 Likes
409

structure-linetype-structure1 = your_value.

or 

structure-linetype-structure1-field = your_value.

Read only

Former Member
0 Likes
408

Hi Madhu,

Try this code ---

DATA : BEGIN OF c,
          d TYPE i,
          e TYPE c,
        END OF c,
 BEGIN OF  a,
         b LIKE c,
        END OF a.
a-b-d = 10.

Regards

Pinaki