XML element |
XML attribute |
Description |
---|---|---|
xmlextractor_table-configuration |
|
List of R/3 table configurations |
configuration |
name |
Unique identifier of the table configuration |
|
printname |
Switch. yes means that the configuration name is output as a prefix to the field names. |
|
classtouse |
Name of the Java class that is used for editing the configuration Standard implementation |
globaltable |
name |
Identifier of the table from which global system attributes are extracted |
|
tablename |
Name of the table in the source system |
|
classtouse |
Name of the Java class that is used for extracting data from the table |
docspec |
- |
Grouping of the specifications of all document header tables and the document table |
docreftable |
name |
Identifier of a document header table |
|
tablename |
Name of the table in the source system |
|
classtouse |
Name of the Java class that is used for extracting data from the table |
doctable |
name |
Identifier of a document table. Each line extracted generates a system event in the XML output file. |
|
tablename |
Name of the table in the source system |
|
classtouse |
Name of the Java class that is used for extracting data from the table |
table |
name |
Identifier of the data table from which supplementary information is extracted |
|
tablename |
Name of the table in the source system |
|
classtouse |
Name of the Java class that is used for extracting data from the table |
Each SAP table may only be referenced once in the configuration. In order to be able to extract a table multiple times, reference the same table (tablename XML attribute) using different identifiers.
Example
You want to extract the VBAP-MATNR_1 and VBAP-MATNR_2 fields from the PRODH table. The file extract below illustrates the configuration:
<table name="PROD_HIER_1" tablename="PRODH" >
<pkfield name="HNUM" fktablename="VBAP"
fkfieldname="MATNR_1"/>
<fieldtoread name="HVAL"/>
</table>
<table name="PROD_HIER_2" tablename="PRODH" >
<pkfield name="HNUM" fktablename="VBAP"
fkfieldname="MATNR_2"/>
<fieldtoread name="HVAL"/>
</table>