user=sa
Path specification for CSV file
The PLM/ERP system exports a CSV file.
Specify the location of this file.
The placeholder <date> is automatically replaced by the current date.
inputcsv=C:\temp\input_<date>.csv
You can define the desired start line (1 for the first, 2 for the second, 3 for the third,...).
startline=1
You can work with fixed column width or with a certain separator:
Optionally enter a text delimiter.
If " is to be used as a text identifier, you must precede it with an escape character such as a backslash.
QUOTE=\"
Key "ProcessLine" - Exclude certain lines from takeover
ProcessLine=1
At very large CSV files and/or in the case that many lines are not to be used, you can exclude lines from takeover.
If a line shall be ignored, which contains the value "STEEL" in the column 3, then state the following:
ProcessLine=row.cells.item(2).value<>"STEEL"
If only that lines shall be overtaken, which contain the value "STEEL" in the column 3, then state the following:
ProcessLine=row.cells.item(2).value="STEEL"
You can join together several conditions.
Each logical operator (AND,OR,XOR,…) can be used.
If only that lines shall be overtaken, which contain the value "STEEL" or "GOLD" in the column 3, then state the following:
ProcessLine=row.cells.item(2).value="STEEL" OR row.cells.item(2).value="GOLD"
Create missing data records in link database without link in ERPTABLE
Advantage: At a later call up the META data are available at once.
Disadvantage: Possibly many unnecessary datasets are created.
createEmptyERPdataSetIfUnknown=1
Exclude certain columns from the update if the CSV value is empty
List the respective columns comma separated.
DontOverwriteValueIfEmpty=ACTIVE_STATE,MAT_NAME