go to post Luis Angel Pére... · Sep 25, 2024 What functionality do you need that is not covered by the community license?
go to post Luis Angel Pére... · Sep 23, 2024 It's a pleasure @Tani Frankel ! Congratulations for your great exercise!
go to post Luis Angel Pére... · Sep 19, 2024 I think that @Laura Blázquez García is doing something similar to what you are asking for, using the DTLs of IRIS for Health to transform an ORU^R01 message into FHIR resources in a bundle, maybe you can send a message to her.
go to post Luis Angel Pére... · Sep 12, 2024 Maybe dequeuing state is what you are looking for: DEQ - Dequeue wait (currently unusued)
go to post Luis Angel Pére... · Sep 10, 2024 Record Map is used to parse rows from CSV files into Objectscript objects, you can use DTLs or by code directly to get the fields from the HL7 message and save into a string variable. Something like: set myString = request.GetValueAt("PID:3.4.1") In this case request is an Enslib.HL7.Message variable.
go to post Luis Angel Pére... · Sep 6, 2024 It's not working because the images looks like have been removed: https://containers.intersystems.com/contents
go to post Luis Angel Pére... · Sep 2, 2024 @Michael Golden gave me the solution! CREATE FOREIGN SERVER server-name FOREIGN DATA WRAPPER jdbc CONNECTION 'mysqlconnection' NODELIMITEDIDS
go to post Luis Angel Pére... · Aug 30, 2024 Does the file generated from pandoc (the initial output.pdf) readable?
go to post Luis Angel Pére... · Aug 29, 2024 Well, it really simplifies the task of search and deep dive into hundred of community articles to get a specific piece of code, in my case, how to export SQL Gateway configurations: https://community.intersystems.com/ask-dc-ai?question_id=251638
go to post Luis Angel Pére... · Aug 28, 2024 Some time ago I wrote some articles doing something similar to what you are trying now: https://community.intersystems.com/post/using-fhir-adapter-offer-fhir-se...
go to post Luis Angel Pére... · Aug 28, 2024 I install it directly from the intersystems_irispython-3.2.0-py3-none-any.whl file (here): pip install intersystems_irispython-3.2.0-py3-none-any.whl
go to post Luis Angel Pére... · Aug 28, 2024 Hi @Timo Lindenschmid ! Thank you for your answer, I've tried disabling that option but it doesn't work: And the result for the query: [SQLCODE: <-230>:<Foreign table query Execute() failed>] [%msg: <Foreign Tables - ERROR #8104: Gateway Exception: <GATEWAY> java.sql.SQLSyntaxErrorException com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:112) Remote database reported error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"patient" T1' at line 1>]
go to post Luis Angel Pére... · Aug 12, 2024 Clicking on New button you will close the current open DTL to create a new one.
go to post Luis Angel Pére... · Aug 12, 2024 In this article @Eduard Lebedyuk creates a production monitor to check the inactivities for the different components You can modify the following code: If (tDiff > tTimeout) && ((lastActivityReported="") || ($system.SQL.DATEDIFF("s",lastActivityReported,lastActivity)>0)) { Set tText = $$$FormatText("InactivityTimeoutAlert: Inactivity timeout of '%1' seconds exceeded for host '%2'", +$fn(tDiff,,0), tHost) Do ..SendAlert(##class(Ens.AlertRequest).%New($LB(tHost, tText))) Set $$$EnsJobLocal("LastActivity", tHost) = lastActivity } Replacing the SendAlert by: If (tDiff > tTimeout) && ((lastActivityReported="") || ($system.SQL.DATEDIFF("s",lastActivityReported,lastActivity)>0)) { Set tText = $$$FormatText("InactivityTimeoutAlert: Inactivity timeout of '%1' seconds exceeded for host '%2'", +$fn(tDiff,,0), tHost) Set tSC = ##class(Ens.Director).EnableConfigItem(tHost,0) Set tSC = ##class(Ens.Director).EnableConfigItem(tHost,1) Set $$$EnsJobLocal("LastActivity", tHost) = lastActivity }
go to post Luis Angel Pére... · Aug 3, 2024 From the official documentation: https://www.hl7.org/fhir/http.html#ccreate Conditional creations based on external identifier. I'm not sure if it's implemented on IRIS FHIR server.
go to post Luis Angel Pére... · Jul 31, 2024 Description of assign action from the official documentation: Assigns values to properties in the business process execution context. https://docs.intersystems.com/irisforhealthlatest/csp/docbook/DocBook.UI... This means that assign only works in the context of a business process, you can't modify the original message received.