This is my first posting – we just did a partial go-live with QDX 5.3 running on Windows.
Here’s my question – for textual results, our lab vendor sends messages containing one OBX with multiple NTE. Our HIS needs the messages to contain only OBX segments. We set up a pre tcl proc on the thread that converts any instance of “NTE” to “OBX”, but if it catches a word with the letters NTE is changes those as well.
Here’s the code in the tcl proc:
regsub -all “NTE” $msg “OBX” msg
echo $msg
Is there another way to do this? Thanks.