go to post Cristiano Silva · Mar 31 Hi Harshdeep, The error invalid of is like a Java NullPointerException or NullReferenceException of .Net. Check if intFaceDao or InterfaceDaoa are valid objects. Put these macros in you code e execute a test. $$$LOGINFO("Check intFaceDado " _ ..Adapter.intFaceDao) $$$LOGINFO("Check DaoInterfaceDado" _ ..Adapter.intFace.DaoInterfaceDao) After execution, see in the Envent Log the result. Regards
go to post Cristiano Silva · Feb 13 Hi Prashanth, You need to create another web application with Authentication Method equal unauthenticated. Default web application: Unauthenticated Web Application: Samples of access: Regards. Cristiano José da Silva.
go to post Cristiano Silva · Feb 2 HI @phillip jack, Like @Eduard Lebedyuk told, the better way is using stored procedures written in COS, but if you want to use only SQL you can try this: SELECT ID, $LISTGET($LISTGET($LISTGET(Skill)),1) PSKILL, $LISTGET($LISTGET($LISTGET(Skill)),2) OSKILL FROM myclass.DataBase If you change the serial object and add more properties increment the outer $LISTGET last parameter Regards, Cristiano José da Silva.
go to post Cristiano Silva · Jan 4 Harshdeep , Yes, for each version you need a specific transformation, but from a single message you can transform and route to a different HL7 versions and systems using Routing Productions See the documentation: Routing Production Cristiano Silva.
go to post Cristiano Silva · Sep 9, 2021 Hi Muhammad, See the documentation: https://docs.intersystems.com/iris20211/csp/docbook/DocBook.UI.Page.cls?KEY=RCOS_fincrement#RCOS_fincrement_seq Regards Cristiano Silva
go to post Cristiano Silva · Jul 28, 2021 Hi Lucas, That I have been know, ISC don't have native tool for data masking. Look at this open source project, maybe help you. GitHub - TheSoftwareHouse/fogger I never been used this tool. Regards. Cristiano José da Silva.
go to post Cristiano Silva · Dec 28, 2020 Hi Jens, You need to setup the port in the adapter settings. In the method SendFormDataArray all adapter settings is passed to http request object.
go to post Cristiano Silva · Dec 28, 2020 Maybe using the property parameter : (CONTENT = "ESCAPE") Controlling Transformations of Values - Projecting Objects to XML - InterSystems IRIS Data Platform 2020.3
go to post Cristiano Silva · Nov 6, 2020 Speaking about "Relational World" is better to use Classes/Tables of package INFORMATION.SCHEMA In this post has a little example: https://community.intersystems.com/post/describe-table-cache-db?page=1#comment-128856 Regards.
go to post Cristiano Silva · Oct 7, 2020 HI Bukhtiar, Iris has built in validation against a schema see: HL7 Schemas and Available Tools But, is simple to iterate over all segments of a HL7 message or any Virtual Document like this example: #Dim hl7Msg As EnsLib.HL7.Message = ##Class(EnsLib.HL7.Message).%OpenId(<changByAId>) #Dim segIndex As %Integer = 0 For segIndex = 1 : 1 : hl7Msg.SegCount { #Dim segment As EnsLib.HL7.Segment = hl7Msg.getSegmentByIndex(segIndex) // Write segment.Name, ! } For more details se then documentation: EnsLib.HL7.Message EnsLib.HL7.Segment
go to post
Hi Harshdeep,
The error invalid of is like a Java NullPointerException or NullReferenceException of .Net.
Check if intFaceDao or InterfaceDaoa are valid objects. Put these macros in you code e execute a test.
After execution, see in the Envent Log the result.
Regards
go to post
Hi Prashanth,
You need to create another web application with Authentication Method equal unauthenticated.
Default web application:
Unauthenticated Web Application:
Samples of access:
Regards.
Cristiano José da Silva.
go to post
HI @phillip jack,
Like @Eduard Lebedyuk told, the better way is using stored procedures written in COS, but if you want to use only SQL you can try this:
If you change the serial object and add more properties increment the outer $LISTGET last parameter
Regards,
Cristiano José da Silva.
go to post
Harshdeep ,
Yes, for each version you need a specific transformation, but from a single message you can transform and route to a different HL7 versions and systems using Routing Productions
See the documentation: Routing Production
Cristiano Silva.
go to post
Hi Muhammad,
See the documentation:
https://docs.intersystems.com/iris20211/csp/docbook/DocBook.UI.Page.cls?KEY=RCOS_fincrement#RCOS_fincrement_seq
Regards
Cristiano Silva
go to post
Hi Lucas,
That I have been know, ISC don't have native tool for data masking.
Look at this open source project, maybe help you.
GitHub - TheSoftwareHouse/fogger
I never been used this tool.
Regards.
Cristiano José da Silva.
go to post
Hi Jens,
You need to setup the port in the adapter settings.
In the method SendFormDataArray all adapter settings is passed to http request object.
go to post
Maybe using the property parameter :
Controlling Transformations of Values - Projecting Objects to XML - InterSystems IRIS Data Platform 2020.3
go to post
Speaking about "Relational World" is better to use Classes/Tables of package
INFORMATION.SCHEMA
In this post has a little example: https://community.intersystems.com/post/describe-table-cache-db?page=1#comment-128856
Regards.
go to post
HI Bukhtiar,
Iris has built in validation against a schema see: HL7 Schemas and Available Tools
But, is simple to iterate over all segments of a HL7 message or any Virtual Document like this example:
For more details se then documentation:
EnsLib.HL7.Message
EnsLib.HL7.Segment