Application Development 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: 

pointers to the two rows of internal table

Former Member
0 Kudos

Hi all,

I am having a requirement in which I want to group two rows of an internal table and assign a pointer to the two rows.

This pointer variable will then be passed to ALV.

Help reqd.

regards.

1 REPLY 1

Former Member
0 Kudos

hi,

define a field-symbol (e.g. structure of internal table) and loop over the internal table with conditions.

FIELD-SYMBOLS: <fs_line> LIKE LINE OF <internal table>.

loop at <internal table> ASSIGNING <fs_line> where <conditions>.

endloop.