Forum Replies Created
-
AuthorReplies
-
September 13, 2016 at 6:46 pm in reply to: Thread settings to resend same message until issue is fixed #84539
Yeah, we want to block other messages from flowing while current one is trying to be resent. Is there a way for us to achieve this with any settings?
Thanks!
September 13, 2016 at 5:17 pm in reply to: Thread settings to resend same message until issue is fixed #84537How can I re-route failing message?
Sending from error db is not option because we will loose the order of Charge messages by the time we resolve the issue. Thanks!
Ok, thanks. We tried to restore missing server files from our backup and the hostserver is back up now.
Thanks Charlie and James. I did it in my TPS pre-proc before xlate where I rebuilt HL7 message after deleting duplicates with “lrmdups” command. It seems to be working fine. I was thinking of doing it in Xlate but looks liek it is easy to do it in TPS proc. So i re-built message and used “lrmdups” command to remove duplicates. It worked for me. Thanks for looking into it.
I want to remove true duplicates like if PV1_19 is “a1~a2~a3~a1~a2” I want to map only “a1~a2~a3” to the outbound.
February 18, 2016 at 7:18 pm in reply to: How to loop through a list in ITERATE action in Xlate? #83727Thanks for the solution Jim. I used below to split OBX_5 field value and then used your tcl proc in the iterate to get the first element from the list.
package require textutil
set obxList [textutil::splitx [lindex $xlateInVals 0] “]
set outVal
foreach listVal $obxList {
lappend outVal ${listVal}
}
set outVal [lreplace ${outVal} 0 0]
set xlateOutVals
-
AuthorReplies