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: 

FM to get short description of the fields in standard table.

Former Member
0 Kudos

Hello all,

How to get the short description of the corresponding field name in the standard table using the field name and table name??

Thanks for your understanding..

Kindly help me..anyone..please...

1 ACCEPTED SOLUTION

awin_prabhu
Active Contributor
0 Kudos

Use view DD03VT.

Use a select query to fetch the required description of the field from view DD03VT passing fields TABNAME, FIELDNAME, DDLANGUAGE in WHERE condition

Using this you can get any text ShortFieldLabel, Medium Fld Labl, Long Fld Label of a field

5 REPLIES 5

awin_prabhu
Active Contributor
0 Kudos

Use view DD03VT.

Use a select query to fetch the required description of the field from view DD03VT passing fields TABNAME, FIELDNAME, DDLANGUAGE in WHERE condition

Using this you can get any text ShortFieldLabel, Medium Fld Labl, Long Fld Label of a field

Former Member
0 Kudos

Use the FM "CL_DDIC_FIELDDESCRIP_GET"

Hope it helps

Anju

0 Kudos

Hi,

Use the FM DDIC_FIELDNAME_GET.

Regards,

Rahul Muraleedharan.

Former Member
0 Kudos

hi,

Try

TB_DATAELEMENT_GET_TEXTS

Regards

Rajashiva.R

Former Member
0 Kudos

thanks for the update gurus its really helped me!