The main table

The selection starts with the main table. From here you can "jump" to all the other tables.

 

BEGIN_TABLE Tabelle_name heading

Column_name1    Column_name2    ...

Type1            Type2

value1.1         value2.1

value1.2         value2.2

...             ...

END_TABLE

 

Table_name = "Name of the table - this name is important for subtables.

heading = shown Name of the table

Column_name = Name of the column

Type = INTEGER | DOUBLE | STRING | SUBTABLE | SUBCOMP | CONFIG_DELETE_IDS

Value = Desired values

Attention: The column name SEL_STRING is reserved for selection. Its type is string. All values of this table will be shown in the selection table.

                 Use a TAB to separate different STRING, DOUBLE, SUBTABLE, etc. areas and use SPACE to separate your STRING values.

 

 

Example:

BEGIN_TABLE  TABLE1  LENGTH

SEL_STRING    LENGTH SUBTABLE1 SUBCOMP1  

STRING DOUBLE SUBTABLE SUBCOMP

LENGTH = 10.1  10.1 TABLE2  COMP1

LENGTH = 20.2  20.2 TABLE3  COMP2  

END_TABLE   

 

BEGIN_SUBTABLE  TABLE2  DIAMETER_1

SEL_STRING DIAMETER_1

STRING DOUBLE  

DIAMETER = 5    5  

DIAMETER = 6    6  

DIAMETER = 7    7  

END_SUBTABLE  

 

BEGIN_SUBTABLE TABLE3 CUT_OUT

SEL_STRING CUT_OUT

STRING DOUBLE

L=10 B=10 10

L=20 B=20 20

L=30 B=30 30

END_SUBTABLE