I have a dataset that Looks like : Dataset
In talend, and I have to create Hierarchical data using these columns, sample output is:
I can do it using TJavaRow but I cannot code, I have to do it purely using Talend components.
So far I've tried Using THashOutput (Storing the data in the memory) and then Left joining the dataset with the one stored in the Memory using the Main.ID = Prev.ID -1 But i have received the data in the following format:
Asset | Null | Null
Currency and deposit | Asset | Null
Currency | Currency and deposit | Asset
.. and so on.
Any sort of help will be very appreciated.