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: 

country table

Former Member
0 Kudos

How to convert country key (eg. LFA1-LAND1) to country description?

4 REPLIES 4

Former Member
0 Kudos

Check tables.. T005 and T005F.

Former Member
0 Kudos

Hi siri,

Check the table <b>T005T</b>

Former Member
0 Kudos

Hi,

Check the tables T005 and use the field LANDX or LANDX50 for the text

Regards

Shiva

jj
Active Contributor
0 Kudos

From LFA1 you will get the LAND1 ie, the country code.

with this land1 value

Query language specific table: T005T

with values LAND1(Country key) and SPRAS(Language key)

and you will get the country name in field:LANDX

SELECT SINGLE * FROM t005t

WHERE spras = sy-langu

AND land1 = lfa1-land1.

IF sy-subrc = 0.

wrk_country = t005t-landx.

ENDIF.