This is a complex project where we’re holding data in various spots while waiting on some ADT demographics. The workflow I’m working on picks up stored message (encoded PDF in HL7), and them sends them to a DMS once we get the demographics back from Epic. It’s two individually functioning parts to a whole.
Inbound is just where we write the HL7 to a file with a keyword, and .HOLD as the extenxion (ORU_R01_<key>_<datetimestamp>.HOLD is the filename). We may get multiple messages (document revisions) from the sender, so as long as they’re more than a second apart, they have unique files.
Another, independent process passes the patient info and the key into Epic, and epic sends out an ADT with the encounter information in it. We take this ADT, search for the key, get the key, then use that key to search the folder for any files containing that key:
set fileList [lsort [glob /folder/ORU_R01_*.HOLD]]
The intention here is to process each of the files so it gets sent to the DMS separately. There are some translations that will happen to the message once we pick it up. The question is, how do we send each of the files to be translated and sent on through the engine as single files.
The disposition list seems to be centered around a single disposition and message header (CONTINUE $mh). Are we creating a list of dispositions and headers, are we sending through manually?
The msg commands seem to be centered around single messages, and I’ve not seen anything that shows how to send multiple messages through the TPS script prior to an xlate.