I am receiving HL7 messages version 2.5.1.
MSH|..
PID|..
PV1|..
ORC|..
IN1|1|...
IN1|2|....
So in the above example IN1 is repeating, however when i try to Parse the second IN1 segment with TERSER it throws an exception "Can't create repetition #1 of Structure IN1 - this Structure is non-repeating".
This is what i have tried so far
string insurance = terser.Get("/.INSURANCE/.IN1(0)-1"); // Works fine
string insurance = terser.Get("/.INSURANCE/.IN1(1)-1"); // Throws exception
string insurance = terser.Get("/.INSURANCE(0)/.IN1(0)-1"); // Works fine
string insurance = terser.Get("/.INSURANCE(1)/.IN1(0)-1"); // Throws exception
I just started learning about HAPI as well. I notice that in your example you did not specify how you parse the message. Most than likey, it was parse into a generic message using the terser. If that is the case, I think it should look something like this
I believe Generic Message has no groups and to access this segment probably need to use IN12 instead of IN1(1)