Sidebar

Why do my problem descriptions not show the ICD10 values on reconcile?

0 votes
292 views
asked Dec 20, 2018 by michael-h-5027 (14,350 points)

1 Answer

0 votes
If you want to edit the lookup to be based on ICD10 instead of just whatever description is found first in the CDA for each problem then you can update the Qvera system variable lookup table:

The system variable table could have any of the three names below.
"CCD REC: cdaDocElements" or "CDA REC: cdaDocElements" or "cdaDocElements"

update the row probDescription with the below values.

update the XPath values in this order:
XPath1:
/entry/act/entryRelationship/observation/value[@codeSystem='2.16.840.1.113883.6.90']/@displayName

XPath2:
/entry/act/entryRelationship/observation/value//translation[@codeSystem='2.16.840.1.113883.6.90']/@displayName

XPath3:
/entry/act/entryRelationship/observation/value/originalText/reference/@value

XPath4:
/entry/act/entryRelationship/observation/value/@displayName
answered Dec 20, 2018 by michael-h-5027 (14,350 points)
...