Tutorial Pdf - Cloverleaf Interface Engine

We need to receive patient admission (ADT) messages from an EMR and save them to a text file for a legacy system.

Cloverleaf (by Orion Health / Infor) is an enterprise-class that facilitates the exchange of healthcare data (HL7, X12, NCPDP, XML) between disparate systems (EHR, LIS, RIS, ADT). cloverleaf interface engine tutorial pdf

Every message processed by Cloverleaf follows a specific path. Inbound Thread: Receives data from the source system. Inbound Data Map: Validates or modifies the raw input. We need to receive patient admission (ADT) messages

Any message hitting port 56000 ( EMR_ADT_IN ) will automatically be routed to the file directory ( Legacy_File_OUT ). Inbound Thread: Receives data from the source system

proc route_by_type data args "] set msg_type [lindex $fields 8] set event [lindex $fields 9] switch "$msg_type^$event" "ADT^A01" # Route to Thread: EHR_ADT_OUT return [list "EHR_ADT_OUT" $data]