Properties
Global Properties in Workflow Settings
return 50; // now the property has a constant value of 50var date = LocalDate.now();
return date; // now this property has the value of the current date.return 50; // now the property has a constant value of 50var date = LocalDate.now();
return date; // now this property has the value of the current date.// retreive tabular data from previous node.
var table = NodeInputReader.inputAsDataFrame();
// Get the values of the 6th column from the first row (Index 0)
var maxValue = table.column(1).get(0);
return maxValue;