‎2008 Jul 29 8:56 AM
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.
‎2008 Jul 29 8:58 AM
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
‎2008 Jul 29 9:02 AM
Hi,
Check the tabsle T005S.
This is the value table for that field.
Regards,
Shiva Kumar
‎2008 Jul 29 9:03 AM
‎2008 Jul 29 9:36 AM
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
‎2008 Jul 29 9:46 AM
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
‎2008 Jul 29 9:48 AM
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
‎2008 Jul 29 2:25 PM
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.
‎2008 Jul 29 4:17 PM
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