Sidebar

How does Qvera record MU2 measures into Centricity?

0 votes
257 views
asked Mar 4, 2016 by michael-h-5027 (14,350 points)
How can we be sure that our MU2 reports show all of the data that was recorded?

1 Answer

0 votes
For the Transition of Care (TOC) Qvera makes a call to JBOSS with the patient id and muActivityLogTypeData value of 514.
https://localhost:9443/demo/ws/Services/emr?wsdl
AddMUActivityLog
That data is recorded to the MUACTIVITYLOG table in Centricity for MUACTIVITYLOGTYPEID = 514.
 
For the Clinical Visit Summary (CVS) Qvera makes a call to JBOSS with the patient id and muActivityLogTypeData value of 519.
https://localhost:9443/demo/ws/Services/emr?wsdl
AddMUActivityLog
That data is recorded to the MUACTIVITYLOG table in Centricity for MUACTIVITYLOGTYPEID = 519.
 
   <soapenv:Header xmlns:wsa="http://www.w3.org/2005/08/addressing">
      <wsa:To>%%ENDPOINT_URL%%</wsa:To>
      <wsa:Action></wsa:Action>
      <wsse:Security 
      soapenv:mustUnderstand="1">
         <wsse:UsernameToken wsu:Id="UsernameToken-2">
            <wsse:Username>{ws-user:" + channelCache.getValue('wsName') + "}</wsse:Username>
            <wsse:Password 
            >{ws-pass:" + channelCache.getValue('wsName') + "}</wsse:Password>
         </wsse:UsernameToken>
         <wsu:Timestamp wsu:Id="TS-1">
            <wsu:Created>{UTC_DATE[yyyy-MM-dd'T'HH:mm:ss.SSS'Z']}</wsu:Created>
            <wsu:Expires>{UTC_DATE+5m[yyyy-MM-dd'T'HH:mm:ss.SSS'Z']}</wsu:Expires>
         </wsu:Timestamp>
      </wsse:Security>
   </soapenv:Header>
   <soapenv:Body>
      <emr:AddMUActivityLog>
         <emr:muActivityLog>
            <!--id>?</id-->
            <eventTimestamp>{SYSTEM_DATE[yyyy-MM-dd'T'HH:mm:ss.SSSXXX]}</eventTimestamp>
            <!--dbCreate>{SYSTEM_DATE[yyyy-MM-dd'T'HH:mm:ssZ]}</dbCreate-->
            <personId>{c:PID}</personId>
            <secondaryDocumentId>{c:SDID}</secondaryDocumentId>
            <providerId>{c:PVID}</providerId>
            <!--userAccessId>{c:From}</userAccessId-->
            <accessDevice>Qvera</accessDevice>
            <accessSource>EMR-FM-SMPP</accessSource>
            <deliveryMethod>Electronic</deliveryMethod>
            <!--outcome>1</outcome-->
            <!--exported>Y</exported-->
            <!--orderId>{c:ORDLINKID}</orderId-->
            <!--recipient>{c:To}</recipient-->
            <!--enabledFlag>1</enabledFlag-->
            <!--eventFlag>?</eventFlag-->
            <muActivityLogTypeData>
               <id>519</id>
               <!--description>Clinical Visit Summary Sent to Patient</description-->
               <!--actionType>R</actionType-->
               <!--shortName>ClinicalVisitSummaryProvided</shortName-->
               <!--forExport>Y</forExport-->
            </muActivityLogTypeData>
         </emr:muActivityLog>
      </emr:AddMUActivityLog>
   </soapenv:Body>
</soapenv:Envelope>
 
answered Mar 4, 2016 by michael-h-5027 (14,350 points)
...