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

which table has field texts

Former Member
0 Likes
1,430

Hi all

DD02T is used to store table texts, what is the table used to store field texts.

Regards,

Bharat

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,300

Hi,

DD03T.

Thanks,

Naren

7 REPLIES 7
Read only

Former Member
0 Likes
1,301

Hi,

DD03T.

Thanks,

Naren

Read only

Former Member
0 Likes
1,300

Hi,

DD03T

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
1,300

Hi bharat,

to find the fields of the given table - table is : DD03L

Table to store field texts is DD03T

Regards

Naresh

Read only

0 Likes
1,300

Naresh,

DD03L is right, but how to get short descriptions of the field, actually I am looking for this in different languages.

Regards,

Bharat

Read only

Former Member
0 Likes
1,300

Hi Bharat,

Please check database view DD03VT and table DD04T.

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
1,300

Hi Bharat,

i'm not too sure

Anyway try this table - TTXIT

and this fm

CALL FUNCTION 'DDIF_FIELDINFO_GET'
EXPORTING
tabname = 'MARA'
* FIELDNAME = ' '
* LANGU = SY-LANGU
* LFIELDNAME = ' '
* ALL_TYPES = ' '
* IMPORTING
* X030L_WA =
* DDOBJTYPE =
* DFIES_WA =
* LINES_DESCR =
TABLES
dfies_tab = lt_dfies
* FIXED_VALUES =
EXCEPTIONS
not_found = 1
internal_error = 2
OTHERS = 3
.
IF sy-subrc <> 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.

and You can find message texts in all the languages in T100 table

Revert back for more help

Regards

Naresh

Read only

Former Member
0 Likes
1,300

Hi,

Use the table DD04T and this gives the short medium and long text

here please enter the language to display

the field is DDLANGUAGE

Thanks

Shiva