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

Table T005 (Countries) - Names

Former Member
0 Likes
3,940

Hi!

I can't see full name of countries

My code:

REPORT Z_REQ.
TABLES T005.
DATA tmpTable LIKE T005 OCCURS 100
     WITH HEADER LINE.
SELECT * FROM T005 INTO TABLE tmpTable.
LOOP AT tmpTable.
WRITE / tmpTable-LAND1.
ENDLOOP.

---

AD

AE

AF...

Can anyone help me?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,269

Hi,

GO to the table T005T. to get the country names..

Thanks,

Naren

2 REPLIES 2
Read only

Former Member
0 Likes
1,270

Hi,

GO to the table T005T. to get the country names..

Thanks,

Naren

Read only

0 Likes
1,269

Thank you!!!