B1UP: execute Beas Script

b1up

 

Inside B1UP UF you can execute Beas Script with follow command

 

ExecuteBeasScript( <... the script ...> ) ;

 

This will be executed in current window

 

Beas Script:

ExecuteBeasScript( messagebox=hello world ) ;

 

It is possible to define only all in one line
The System will convert the place holders before execute. In this way it's possible to work with multiline over placeholder <cr_lf>

 

Example:

open workorder. Number is stored in @store1

 

@store1=6002452;
ExecuteBeasScript(openform=beas_workorder_edit|@store1);

 

// alternative: openform(beas_workorder_edit|@store1);