Let's say I delete the IN1 segment and then attempt to rebuild it with field data from scratch. i.e.,
I would expect that the parser would take the XML and generate something like:
but instead it gives me
Is there a way I can force it XML to HL7 function to "fill in the blanks?"
- Jeremy
Post edited by: rods, at: 08/24/2007 12:46
Code:
delete msg['IN1']; msg['IN1']['IN1.44']['IN1.44.5'] = '12345';
Code:
MSH| ... ... IN1||||||||||||||||||||||||||||||||||||||||||||^^^^12345
Code:
MSG| ... ... IN1|12345
- Jeremy
Post edited by: rods, at: 08/24/2007 12:46
Comment