1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
625 views
by ramaswamy-s-6353 (440 points)
Is there is a way for us to report on the volume and source of the CCD-A transactions being received by Centricity EMR? Specifically information such as  sending organization, what EMR they are on, and what type of transaction if possible (e.g. referral, discharge summary, etc).  Can this be done using Qvera QIE?

1 Answer

0 votes

Type of transaction is usually in the CDA documents, but the other data is not always present in each document. You could create a report or display the data you are looking for if it is present in the CDA from the sending system.

 

For example if you wanted to create a report that would have the document type in it you could create a mapping with this logic in it: 

message = qie.createCSVMessage(true, '"', ",", 'UTF-8');
var docType = source.getNode("/ClinicalDocument/code/@displayName");
message.setNode("1", docType);
 
and then output that to a new destination that would be a csv file. You could then get your volume based on the contents of the csv file.
by michael-h-5027 (14.8k points)
edited by michael-h-5027
by ramaswamy-s-6353 (440 points)
Thanks for the information!
...