
Inside the B1UP UF you can execute BeasScript with the following command:
ExecuteBeasScript( <... the script ...> ) ;
This will be executed in the current window
Beas Script:
ExecuteBeasScript( messagebox=hello world ) ;
It is possible to define only all in one line
The system will convert the placeholders before execution. In this way it is possible to work with multiline over placeholder <cr_lf>
Example:
Open Work order. Number is stored in @store1
@store1=6002452;
ExecuteBeasScript(openform=beas_workorder_edit|@store1);
// alternative: openform(beas_workorder_edit|@store1);