R Snippet, passing a flow variable to node variable's output port

Thanks @mlauber71
Everything is in your workflow.

Just for the records, I came out with 2 options:

  1. Declare variable within the command line:
knime.flow.out <- list(DummyOut = "text-out")
  1. Send to ‘knime.flow.list’ a previously declared variable:
RDummyOut <- "text-out"
knime.flow.out <- list(DummyOut = RDummyOut)

BR

1 Like