We have an issue where our lab seems to frequently change the information they return with lab results so that mappings are lost. For example, recently "Hepatitis C antibody" and Rh "antibody screen" results are no longer mapping properly. These were working properly previously and then just disappeared. Often it takes a little while before this is noticed.
Is there any way to report on when data is not getting mapped properly through LinkLogic?
How are other sites "catching" these errors?
Is there a way to "find" patients where the data didn't map properly after the fact?
Here is a SQL query for Oracle to look for the 1072 messages that relate to unmapped obs terms that occur in the LinkLogic log:
select t.description, e.message from ml.l3eventlog e, ml.l3taskrecur t where
e.taskrecur = t.recurid
and msgcode = 1072
order by t.description, e.occurat desc
A 1072 message looks something like this:
Lab Import: No matching observation heading found (Eval database).
(02/26/2019 5:52 PM - Observation: BP SYSTOLIC, Patient: Scott Davenport)
Thank you!