‎2009 Mar 12 1:30 PM
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
‎2009 Mar 12 1:35 PM
structure-linetype-structure1 = your_value.
or
structure-linetype-structure1-field = your_value.
‎2009 Mar 12 1:35 PM
structure-linetype-structure1 = your_value.
or
structure-linetype-structure1-field = your_value.
‎2009 Mar 12 2:44 PM
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