User input

There are two ways of user input.

1. Independent user input.

This user input method has no direct dependencies to the model and has no default value.

USER_INPUT_PARAM Data_type Parameter_name

Data_type = INTEGER | DOUBLE | STRING

Parameter_name = "desired Parameter"

 

Example:

USER_INPUT_PARAM INTEGER QTY

USER_INPUT_PARAM DOUBLE DIAMETER

USER_INPUT_PARAM STRING NAME

TIP: If you like to define a default value from your model extract the parameter via SEARCH_MDL_PARAM THIS PARAMETER PARAMETER.

2. User input with table dependencies

This method updates the values after a selection in a table, however the values can still be modified manually.

ATTENTION: Keep in mind that manually updated values will be set to the table defaults if you select another table instance.

 

USER_TAB_UPDATE_PARAM Data_type Parameter_name

Data_type = INTEGER | DOUBLE | STRING

Parameter_name = "desired Parameter"

 

Example:

USER_TAB_UPDATE_PARAM INTEGER ANZAHL

USER_TAB_UPDATE_PARAM DOUBLE DURCHMESSER

USER_TAB_UPDATE_PARAM STRING NAME