2007 Jan 12 7:35 PM
Hi all
DD02T is used to store table texts, what is the table used to store field texts.
Regards,
Bharat
2007 Jan 12 7:35 PM
2007 Jan 12 7:35 PM
2007 Jan 12 7:36 PM
2007 Jan 12 7:51 PM
Hi bharat,
to find the fields of the given table - table is : DD03L
Table to store field texts is DD03T
Regards
Naresh
2007 Jan 12 8:42 PM
Naresh,
DD03L is right, but how to get short descriptions of the field, actually I am looking for this in different languages.
Regards,
Bharat
2007 Jan 12 8:50 PM
Hi Bharat,
Please check database view DD03VT and table DD04T.
Regards,
Ferry Lianto
2007 Jan 12 9:22 PM
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
2007 Jan 15 5:08 AM
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