f$Structure_DT (f$Struktur_ET)
f$Structure_DT (f$Struktur_ET)
The decision tables to be executed with a click or double-click on a node are allocated to the structure dialog with this function. For actions in these DTs you must note that every double-click is led in by a single click.
Syntax: | Status = f$Struktur_ET (Number,PGName) | |||
| Argument | Type | Meaning | |
| Number | Integer | Number returned by f$Structure_open | |
| PGName | String | Name of a parameter group containing the information to be put in. | |
Result: | Integer | Status: -99: a structure dialog with the given number does not exist 0 : everything OK | ||
The following parameters are evaluated by the entered parameter group:
Name | Description | Type | |
Node | ePOS parameter on which the name of the node clicked on is written before calling the DT. | String | |
DTName_Click | Name of the DT called with a single click. | String | |
DTName_DoubleClick | Name of the DT called with a double-click. | String | |
Example: | Evaluate.Node = 'NodeName' | ||
| Evaluate.DTName_Click = 'p$do_click()' | ||
| Evaluate.DTName_DoubleClick = 'p$do_doppelclick()' | ||
| Status = f$Struktur_ET (Number, 'Evaluate' ) | ||