windowevent

Beas support "user events". This are special window functions, which allow you to manipulate standard forms

With this function you can execute a declared window event

execute a windowevent, if available. If not available, then the system ignore this call

 

window events declared with (beas Script)

 

windowevent [usereventname]
end event

 

 

from script you can execute the events by

window.windowevent("[usereventname]");

 

Example:

window.windowevent("purchaseorderstart");

 

This return the return value from script. Only Number

 

Note:

The system send this message to linked third applications too.

 

 

windowevent hello
#jbs
alert("test");
end event
 
window.windowevent("hello");