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

field- description.

Former Member
0 Likes
1,115

Hi Abappers,

i want field description of field ' kna1-regio' .

In kna1 table we have field kna1-regio,but i want this regio description.From which table i can get description of Regio

field.

Regards,

vani.

8 REPLIES 8
Read only

Former Member
0 Likes
1,039

Hi

Table : KNA1.

Field : REGIO : Region (State, Province, County)

also go through the link given below :

http://www.sap-img.com/abap/how-to-get-the-field-descriptions-of-a-table.htm

With regards

Nikunj Shah

Read only

Former Member
0 Likes
1,039

Hi,

Check the tabsle T005S.

This is the value table for that field.

Regards,

Shiva Kumar

Read only

Former Member
0 Likes
1,039

DD01T-DDTEXT

Read only

Former Member
0 Likes
1,039

Hi Vani.

I would like to suggest,

DD03L - Table Fields

DD03T - DD: Texts for fields (language dependent)

Either Field name or table name can be given in those tables.

Hope that's usefull.

Good Luck & Regards.

Harsh Dave

Read only

Former Member
0 Likes
1,039

hI VANI,

Table: KNA1

Field: REGIO->Region (State, Province, County)

DATA ELEMENT: REGIO

DOMAIN: REGIO

DATA TYPE CHAR(3)

Check table T005S

check field IN T005S IS BLAND

regards,

anirban

Read only

former_member787646
Contributor
0 Likes
1,039

Hi

Go to SE11 and enter Table Name "DD03T".

On the selection screen enter the TABLE name and FIELD name and execute.

Hope it helps.

Murthy

Read only

vamshi_mohan
Participant
0 Likes
1,039

Hi,

That is not field description. Few on the forum got confused. It is usually called Field Text. which is usually stored in text tables. Thre are so many answers like from Amit. The table is T005S.

Regards.

Read only

former_member585060
Active Contributor
0 Likes
1,039

Hi,

Get the value of REGIO from KNA1 table, with that value select the field BEZEI from table T005s comparing BLAND field of T005s to REGIO of KNA1.

The field BEZEI has ur text value for REGIO.

Regards,

Krishna