User bio
404 bio not found
Member since May 20, 2023
Posts:
Replies:
Hi,
When error occurs, E=R attemps to retry, number of retries depends on failure timeout. Default Failure Timeout is 15, so it attempts 3 times retry before failing, and if it is set to 1, it attempts until the response is received.
The error message is suspended when :?E=S or E=S occurs, and it moves on to the next message after the error is dealt with.
Thanks
Hi,
Can you try Reply Code Actions is 'E=R'. It will retry when Error occur and Failure Timeout is -1.
Thanks,
Certifications & Credly badges:
Prasanth has no Certifications & Credly badges yet.
Global Masters badges:







Followers:
Following:
Hi Mirza,
If set failure timeout to -1, it will not retry?
Failure Timeout is -1 = retry forever (no time limit) It will keep retrying until it gets a response.
:?E=S or E=S is same?
:?E -- it looks at the value in MSA:1 and evaluates it by HL7 acknowledgment class. Ex: 'AE' or 'CE'
It is only for HL7 messages.
E - it is a standard Error code, E only when dealing with non-HL7 or custom reply codes.
what the ( :? ) means?
“Match by class of HL7 acknowledgment code, not exact value.”
It looks at MSA:1 in the response and groups codes by meaning.
:?A - matches AA or CA values (Accept)
:?E - matches AE or CE values (Error)
:?R - matches AR or CR values (Reject)
Thanks,