Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a delimited file, which look like that:
father_id;father_name;children_id;children_name;children_birthdate
01;ndika;120;toto;25/04/2020
01;ndika;121;titi;20/032019
02;nj0120;523;nantes;10/06/2000
03;jf2563;426;leHavre;5/07/2001
And i want to generate a XML file by father di which will be for example like that for father_id = 01
You can use a tXMLMap. Import the XML structure from a file which has a copy of your desired output (correct the errors there).
Set a loop on "childrens" and an aggregation on father_id, and you should get 3 separate XML outputs (based on your input) of which the 1st will have the aggregation in your example.
Thanks Daniz