go to post Tom McDevitt · Jan 15, 2018 Thanks Eduard but SourceConfigName returns the processes setting not the service.
go to post Tom McDevitt · Aug 4, 2017 So there is a PGP library is Cache, I was unable to find anything related to PGP.
go to post Tom McDevitt · Jul 15, 2017 Thanks Jeff, is there anyway to do it without defining the doctype?
go to post Tom McDevitt · Jun 6, 2017 Thanks, Are you able to have multiple conditions?if ReceivingFacility="A" or ReceivingFacility="B" or ReceivingFacility="C" {
go to post Tom McDevitt · Apr 3, 2017 Thanks Sean, One of the things I wanted to avoid was the schema path. Using the 2.4 schema I would need extra DTL to do the same function and wanted to see if there was a way to make it not bound to a schema. So you are thinking something like this may work? S sNewSeg = ##class(EnsLib.HL7.Segment).%New() d sNewSeg.init(target.getSegmentIdByIndex(idx),0,"2.3", pOBXSegment)
go to post Tom McDevitt · Apr 3, 2017 I still has OBX segments, with adding target.SetSegmentAt class. FOR idx = pSegCount { s seg=target.GetSegmentAt(idx) if seg.Name="OBX" #;Get OBX5 Value s pObservationValue = seg.GetValueAt(5) #;Create Identifier Value s pObservationIdentifier = pObservationIdentifier+1 #;Build New NTE Segment s pOBXSegment="NTE" _"|" _pObservationIdentifier _"|" _pObservationValue d seg.ImportFromString(pOBXSegment,"","") d target.SetSegmentAt(seg,idx) }