Reputation: 63
I've managed to identify the table from an attribute in SAP Netweaver ERP. For example, Order Number (AUFNR) comes from table AUFK, and my question is: where do attributes like Material description (MATXT) come from?
I can't found this info via SAP user interface (from the little I know) and when I search on the internet for the structure, this attribute is also unidentifiable.
I post this question because I need to extract data to SQL Server tables, and I can't seem to find the source, via SAP user interface or on the internet.
This might be probably a conceptual question about data organization in SAP.
Upvotes: 0
Views: 1984
Reputation: 10621
The naming of this field (CO_XXXXX) unequivocally points out that this field relates to CO (Controlling) module, which should have been suggest you the proper direction.
The most probable tables this field can relate to are COCH and COCHP.
However, this fieldname is widely used in Plant Maintenance Notifications (PM-WOC-MN) as well.
Full list of structures and tables where it is used can be obtained in DD03L
table. Query by field FIELDNAME
, for example, like this, should give you the thing
SELECT *
INTO TABLE @DATA(result)
FROM dd03l As d3
JOIN dd02l AS d2
ON d3~tabname = d2~tabname
WHERE d3~fieldname = 'MATXT'
AND d2~tabclass = 'TRANSP'. << if you want to exclude structures
P.S. Your screenshot is almost unreadable.
Update:
DD03L
.F1
-> Technical Info
command should help in finding used structures in most cases, but not in 100% of cases. To identify what tables are used in a transaction is almost impossible without such tools as Debugger, Traces and without ABAP experience.
Upvotes: 1