Hi All,--
I'm working on a healthshare production to receive a CCD and then need to extract patient demographic data from the CCD. It would be great if someone can suggest me a procedure to do this. A example for this is helpful.
Regards,
Shiva
--
Caché, Ensemble, DeepSee
---
You received this message because you are subscribed to the Google Groups "Caché, Ensemble, DeepSee" group.
To unsubscribe from this group and stop receiving emails from it, send an email to intersystems-publi...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Shiva.Regards,Any suggestions on the above?2. Not sure which business process to choose for this scenario.1. I'm using EnsLib.EDI.XML.Document as source class for the DTL is this correct? output will be HL7.Hello Shilpi,I have added a service to pick sda files and send the file to business process.
Class BMH.BMHCONV1.FromCcdFilePadPatientID Extends Ens.DataTransformDTL [ DependsOn = EnsLib.EDI.XML.Document ]
{
Parameter IGNOREMISSINGSOURCE
= 1;
Parameter REPORTERRORS
= 1;
XData DTL [ XMLNamespace = "http://www.intersystems.com/dtl" ]
{
<transform sourceClass='EnsLib.EDI.XML.Document' targetClass='EnsLib.EDI.XML.Document' create='copy' language='objectscript' >
<assign value='..Pad(source.{/ClinicalDocument/recordTarget/patientRole/id/@extension},-10,0)' property='target.{/ClinicalDocument/recordTarget/patientRole/id/@extension}' action='set' />
</transform>
}
}