Skip to main content

Tutorial

Step 1: Create a Workflow

Create a new workflow in your B2Win Suite environment.

Create New Workflow

Step 2: Add Nodes

From the node panel on the left, drag nodes onto the canvas to build your workflow. Several nodes support scripting, including the Source Script nodes, Custom Script, and Condition nodes.

Add nodes to workflow

Step 3: Write a Script

Double-click a Custom Script node to open the FlowCode Editor. Use the scripting language to transform or process your data.

For example, filter a table to return only rows matching a specific team:

// Get the table from the previous node
var table = NodeInputReader.inputAsDataFrame();

// Get the 2nd column as a String column
var stringColumn = table.stringColumn(1);

// Return only rows where the value ends with "Liverpool"
return table.where(stringColumn.endsWith("Liverpool"));

Script output

For the full language reference, see the Scripting Overview.