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: 

Fetch the values from internal table inside an internal table (urgent!!)

Former Member
0 Kudos

data : BEGIN OF PITB2_ZLINFO occurs 0,

BEGDA LIKE SY-DATUM,

ENDDA LIKE SY-DATUM,

PABRJ(4) TYPE N, "Payroll Year

PABRP(2) TYPE N, "Pay. Period

ZL LIKE PC2BF OCCURS 0,

END OF PITB2_ZLINFO.

I have a internal table like this,

How to Fetch the values from internal table inside an internal table.

Kindly Help me on this..

Regards,

Ram.

2 REPLIES 2

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos
Loop at PITB2_ZLINFO-ZL.
  write:/ pitb2_zlinfo-zl-some_field.
endloop.

Regards,

RIch Heilman

Former Member
0 Kudos

Hi,

Try this....

Loop at PITB2_ZLINF0.

......

Loop at PITB2_ZLINF0-ZL.

.....

endloop.

Endloop.

Thanks...

Preetham S