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

Print Standard Table

Former Member
0 Likes
463

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.

1 ACCEPTED SOLUTION
Read only

h_senden2
Active Contributor
0 Likes
430

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.

1 REPLY 1
Read only

h_senden2
Active Contributor
0 Likes
431

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