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
Request clarification before answering.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This one <b>DD02T</b>
Greetings,
Blag.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
thanks.
will reward points.
KS
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Check DD02T table
Regards,
Santosh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.