cancel
Showing results for 
Search instead for 
Did you mean: 

Table for all table names.

04-02-2007 5:19 PM
24486 views 6 comments Go to solution
0 Likes
SAP Managed Tags
Subscribe

Hi everybody,

I would like to know if there is any table which is maintaining all the table names in SAP as fields.

Any code reg this is helpfull.

Thanks.

Regards.

KS

Message was edited by:

Sanjeev k

0 Likes

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Likes

Hi,

Please try FM DDIF_FIELDINFO_GET to get all fields based on table name.


DATA: BEGIN OF I_DFIES OCCURS 0.
        INCLUDE STRUCTURE DFIES.
DATA: END OF I_DFIES.


CALL FUNCTION 'DDIF_FIELDINFO_GET'
    EXPORTING
      TABNAME        = 'MARA'
    TABLES
      DFIES_TAB      = I_DFIES
    EXCEPTIONS
      NOT_FOUND      = 1
      INTERNAL_ERROR = 2
      OTHERS         = 3.

Regards,

Ferry Lianto

Answers (3)

Answers (3)

Former Member

This one <b>DD02T</b>

Greetings,

Blag.

Former Member
0 Likes

Hi,

These are the different tables in SAP whic store info related to TABLE, DOMAIN, DATA ELEMENTS

DD01T - R/3 DD: domain texts

<b>DD02T - R/3 DD: SAP table texts</b>

DD03T - DD: Texts for fields (language dependent)

DD04T - R/3 DD: Data element texts

DD06T - R/3 DD: texts on SQL tables

DD07T - DD: Texts for Domain Fixed Values (Language-Dependent)

DD08T - Texts on the relationship definitions

Let me know if you need any other information.

Regards,

RS

Former Member
0 Likes

Thanks all,

Regards,

KS

Former Member
0 Likes

thanks.

will reward points.

KS

Former Member
0 Likes

Check DD02T table

Regards,

Santosh