am trying to map EDI 834 XSD with transaction tables in database.
I want to know some things
1> DO i need to take one expression transformation for one segment from 834 xsd means 1 expression for ISA, one for GS, one for ST and so on
2> whwn ever i am tring to join two expression through joiner, it is sotrting all the values which is disurbing every things
EX. there are 2 ST in one 834 input file and there are 2 INS coresponding to them
in EXP1
ST
123
547
and in EXP2
INS
549
963
they are in 2 expressions, now when i am trying to join these 2 expression through a dummy condition the output that i am getting is
ST INS
123 549
123 963
547 549
547 963
means there is no relation whether which INS belong to which ST
the output should be
ST INS
547 549
123 963
Is there any other solution to it.
Can someone plese tell me how can to do it