2009 Sep 28 1:12 PM
Hello,
Im new in ABAP and I was wondering If I have this kind of Internal table:
TEST TYPE STANDARD TABLE OF BAPIRET2
How can I print the content of TYPE.
Kind Regards.
2009 Sep 28 1:28 PM
Do you mean the contents of internal table TEST ?
Loop at test into wa_test.
write:/ wa_test-<field1>, wa_test-<field2>, ......, wa_test-<fieldn>.
Endloop.
<field1> ... <fieldn> depending on type of TEST
regards,
Hans
Hello,
Im new in ABAP and I was wondering If I have this kind of Internal table:
TEST TYPE STANDARD TABLE OF BAPIRET2
How can I print the content of TYPE.
Kind Regards.
2009 Sep 28 1:28 PM
Do you mean the contents of internal table TEST ?
Loop at test into wa_test.
write:/ wa_test-<field1>, wa_test-<field2>, ......, wa_test-<fieldn>.
Endloop.
<field1> ... <fieldn> depending on type of TEST
regards,
Hans