Sample Scripts

CONCAT (Java + stack input)

Function concats the inputvalue after the stackvalue.

The inputvalue is the data read from the source field. The stack value is the data previously written to the stack by another source field. 

If you want to concatenate more data fields, write the output of this function again to the stack, and call it back later with the next source field you want to concatenate. (Picture below: SIMPLE is the function that passes the inputvalue directly to the output)

 

function Concat(InputValue,Stack,Parameter1,Parameter2,Parameter3,Parameter4) 
{
     //Function concatenates the inputvalue to the stack value
     var out = Stack + InputValue;
     return out;
}