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

lookinf for TABLE

Former Member
0 Likes
780

I HAVE DATA LFA1-LAND1 I GET SHORT DESC.

I WANT TO GET THE TOTAL DECRIPTION OF LAND1.

THANKS

I HAVE DATA LFA1-LAND1 I GET SHORT DESC.

I WANT TO GET THE TOTAL DECRIPTION OF LAND1.

THANKS

6 REPLIES 6
Read only

Former Member
0 Likes
746

Hi Liat,

You find the long description in T005T.

Regards,

John.

Read only

Former Member
0 Likes
746

Get from the table <b>T005T</b> with LAND1 AND language(SPRAS).

rgds,

TM

Read only

0 Likes
746

In addition to land1 you have to pass Language As well

land = 'IN' .

SELECT landx FROM t005t INTO i_landx WHERE

spras = sy-langu AND

land1 = land .

ENDSELECT.

WRITE : / i_landx.

Rgds,

Jothi.

Reward Pts if useful.

Read only

Former Member
0 Likes
746

take that LAND1 & fetch its description(LANDX) from T005T

for this you have to pass Language & country

regards

srikanth

Read only

venkat_o
Active Contributor
0 Likes
746

Hi Liat,

<b>1</b>.

Table is T005T .

<b>2</b>.

Use query like this

SELECT landx

from T005T

into l_landx

where spras = sy-langu

and land1 = LFA1-LAND1.

I hope that helps u.

<b>Thanks,

Venkat.O</b>

Read only

Former Member
0 Likes
746

Hai

Go to Tcode SE11 and Give T005T Table

Based on SPRAS you can find LANDX --Country Name

Thanks & regards

Sreenivasulu P