I have a source file with a structure like below:
emp no , company code , dependent name , dependent age , dependent qualification
an exp file would look something like below :
PERNRA , 1000, ABC , 23, CA
PERNRA, 1000, DEF , 25 , BE
PERNRB, 1200, XYZ , 35 , GE
PERNRA, 1000, TGH, 30, BE
My target structure expects one node per employee number and the dependent information node recurring inside the <emp> ..... </emp> node.
Please advise.
Mathews