go to post Smythe Smythee · Mar 23, 2023 yes i have commented out %Save() and it worked data is saving only once in the SQL table and i have checked in Extended classes also but i am not able to find how it is getting saved in SQL table without even Calling %Save()
go to post Smythe Smythee · Mar 23, 2023 Hi Oliver Wilms I have used Ens.Request Extension class for Patient.PatientDBReq , the Ens.Request class is like below Class Ens.Request Extends (Ens.MessageBody, Ens.Util.RequestBodyMethods) -->Can you please tell how it will be saved without calling %Save()? So if i use %Persistent Extension class for Patient.PatientDBReq class do i need to call %Save() for saving data into SQL table? Smythe
go to post Smythe Smythee · Jan 31, 2023 Hi Ariel Arias , Do i need to create a new method using (Set smtp.UseSTARTTLS = 1 where smtp is: Set smtp=##class(%Net.SMTP).%New()) If you have any example please share with me it will be helpful Smythee
go to post Smythe Smythee · Jan 12, 2023 Hi , Let me explain in the scenario i need to apply early binding in the data transformation Example: In the below transformation i need to normalize the value of administrative sex in the HL7 Message by using early Binding<assign value='source.{PID:8}' property='target.{PID:8}' action='set' /> Smythe
go to post Smythe Smythee · Jan 11, 2023 Hi Enrico, I have tried using the class Ens.Rule.FunctionSet for changing the DOB format which is late binding In my scenario i need to use early binding Can anyone please give me an example how to use early binding in a data transformation? Thanks, Smythe
go to post Smythe Smythee · Jan 11, 2023 Hi can anyone please explain how can apply early binding and late binding to data transformation?
go to post Smythe Smythee · Nov 24, 2022 Thank you for sharing I am new for FHIR transformation can you please few basics for Starting FHIR transformations
go to post Smythe Smythee · Nov 17, 2022 Hi , I gave the example of the scenario i am using in my code but i am getting Invalid Oref error " ERROR <Ens>ErrException: <INVALID OREF>zDischarge+3^CUSTOM.SQL.TestUtil.1 -- logged as '-' number - @' Set Obj.Discharge.DischargeFlag=DischargeFlag'"
go to post Smythe Smythee · Nov 15, 2022 Yes, i tried by checking the SSLv3 box still facing the same error. Do i need to give any details in "Enabled ciphersuites" in Crytographic settings
go to post Smythe Smythee · Nov 15, 2022 thank you for sharing the example ,Can you please share how they configured gmail in SSL In SSL only i am getting the error "ERROR #989: SSL connection failed, make sure server address and port (not url) is specified" Can you please SSL Configuration for Gmail
go to post Smythe Smythee · Nov 8, 2022 Hi Lexi, I have followed the same steps but i am getting "ERROR #6031: Unable to open TCP/IP connection." error in Ens.Alert Business operation
go to post Smythe Smythee · Nov 7, 2022 Hi , I have gone through the previous post replies and i am able to configure the Business operation but i didnt mention my exact problem in the post. I am getting "Unable to open TCP/IP connection" error so i thought i made any mistakes in SMTP connection settings
go to post Smythe Smythee · Oct 18, 2022 Yes thank you but i am getting different error after transforming the message. I think the error is the way i defined the my custom schema and getting error in this class "EnsLib.EDI.XML.Document".let me know any mistake while defining the schema please <PROPERTY DOES NOT EXIST>zTransform+7^CSTOM.TXML.XMLToHL7.1 *MSH,EnsLib.EDI.XML.Document -- logged as '-' number - @' Set tSC1=target.SetValueAt(source.MSH.EncodingCharacters,"MSH:EncodingCharacters","set","")'
go to post Smythe Smythee · Oct 17, 2022 Transformation is working fine. I am getting output from my transformation but when i am using same transformation in Business process. Let me know any changes do i need to make in transformation XData DTL [ XMLNamespace = "http://www.intersystems.com/dtl" ]{<transform sourceClass='CUSTOM.TXML.MainSchema' targetClass='EnsLib.HL7.Message' targetDocType='2.5:ADT_A01' create='new' language='objectscript' ><assign value='source.FieldSeparator' property='target.{MSH:FieldSeparator}' action='set' /><assign value='source.EncodingCharacters' property='target.{MSH:EncodingCharacters}' action='set' /><assign value='source.SendingApplication' property='target.{MSH:SendingApplication}' action='set' /><assign value='source.PatientID' property='target.{PID:SetIDPID}' action='set' /><assign value='source.FamilyName' property='target.{PID:PatientName().FamilyName}' action='set' /><assign value='source.GivenName' property='target.{PID:PatientName().GivenName}' action='set' /></transform>}
go to post Smythe Smythee · Oct 17, 2022 For incoming XML i have custom schema which looks like the below Class CUSTOM.TXML.MainSchema Extends (%Persistent, %XML.Adaptor){ Property FieldSeparator As %String; Property EncodingCharacters As %String; Property SendingApplication As %String; Property SendingFacility As %String; } Let me know any mistakes that i have made in this class please? Thanks, Smythee
go to post Smythe Smythee · Oct 3, 2022 i am getting below swizzle object error ERROR <Ens>ErrException: <METHOD DOES NOT EXIST>zNewRequestMessage+4^Ens.MessageHeader.1 *%GetSwizzleObject,HS.SDA3.Container -- logged as '-' number - @' Set:(''tSC) tSC=pMessageBody.%GetSwizzleObject(0,.tOID)
go to post Smythe Smythee · Oct 3, 2022 Thank you can i convert the output from GetSDA method into stream output because my business operation will only accepts stream as input?
go to post Smythe Smythee · Oct 3, 2022 Hi, Can you please explain the need of passing xml value into HS.Gateway.HL7.HL7ToSDA3 class ClassMethod Transform(source As EnsLib.HL7.Message, ByRef target As HS.SDA3.Container, aux) As %Status { #Dim sc As %Status = $$$OK Set sc = ##class(HS.Gateway.HL7.HL7ToSDA3).GetSDA(source, .xml) Quit:$$$ISERR(sc) sc Set target = ##class(HS.SDA3.Container).%New() Set sc = target.InitializeXMLParse(.xml) Quit sc Thank you, Smythee }
go to post Smythe Smythee · Sep 29, 2022 Hi David, It is not a typo, I have used the same name in data transform class i am not getting the value from the data transform class or Do i need to make any changes in my Business process class,Can you suggest do i need to make any changes?