Thanks @mlauber71
Everything is in your workflow.
Just for the records, I came out with 2 options:
- Declare variable within the command line:
knime.flow.out <- list(DummyOut = "text-out")
- Send to ‘knime.flow.list’ a previously declared variable:
RDummyOut <- "text-out"
knime.flow.out <- list(DummyOut = RDummyOut)
BR