EbaseSystem.executeCustomFunction

Executes a custom function.

Custom functions are Java classes that extend UFSCustomFunction and have been added to the server classpath. These were originally intended to be used with the FPL programming language, but they can also be used by any programming language via this method. Please note that most of the functionality provided by the custom functions installed with Ebase Xi is available more easily via other methods on the API.

Further documentation.

Javascript example:

 var result = system.executeCustomFunction("getmessagetext", ["PR1", 1001, fields.CITY.value]);
 

returns java.lang.Object

Parameters

java.lang.String  functionName,  UNKNOWNjava.lang.Object[]  parameters,