I'm using Dell Boomi to send Data from a XML file to a MSSQL Database. I have a XML file filled with data that needs to go to two different tables in my DB. The problem is that the second table has a column called containerID, that takes the ID from the first table. But the ID is random generated by the DB.
I tried mapping the xml data to the first table, inserting it to the DB and then started a second process taking the ID of that table, but I don't know how to only store this id information and map it later together with the xml file.
What is the best way to do this?