Hi,
I am trying to read data from 2 xml files and finally writing to one single xml file.
Mapping can happen in any combination from 2 source xmls to target xml.
Consider below scenario,
Source XML1:
SourceEntity1
___SourceEntity11
Source XML2:
SourceEntity2
Target XML:
TargetEntity1
___TargetEntity11
______TargetEntity111
Mapping is like,
TargetEntity1 ( is mapped from SourceEntity1)
___TargetEntity11 ( is mapped from SourceEntity2)
______TargetEntity111 ( is mapped from SourceEntity11)
Now I need to establish parent/child relation here, in between TargetEntity1 & TargetEntity111. TargetEntity111 records should be filtered based on TargetEntity1 record.
Please suggest available approches and suggestions.
Thanks in advance,
Madan.