is it possible to create or add cellinformations to an other table as the input table? I have a Raw-Data Table and want to sort it and of course it can happen that I have to combine some entries. And for this I want a new organized Table because at the end i want to have three different tables with different "Objects".
Thanks for your reply. At the moment I'm trying to implement an own Node with an own model who do this for me. The workaround with multiple nodes haven't worked for me.
I find this to be an important limitation. There are indeed occasions in which it is necessary to generate several output rows from each input row. One could, of course, call the Java node several times for each row, but that would not be very efficient.
On the other hand, processing of the entire table can be done quite fast in a Python node, but the cost of data serialization in order to communicate with the Java environment is non-negligible.
Thank you, Iris. Just to be clear, the idea would be to increase the flexibility of the Java node by passing to it the entire input table and returning the entire output table, precisely as it is done with Python nodes but without incurring the cost of serialization.