go to post Luis Angel Pére... · Apr 22 You can see here what is each version: https://docs.intersystems.com/iris20251/csp/docbook/Doc.View.cls?KEY=PAG...
go to post Luis Angel Pére... · Mar 25 https://es.community.intersystems.com/post/%C2%BFc%C3%B3mo-tokenizar-un-...
go to post Luis Angel Pére... · Mar 11 Maybe this doc can help you: https://docs.intersystems.com/iris20243/csp/docbook/DocBook.UI.Page.cls?...
go to post Luis Angel Pére... · Feb 14 Have you tried to merge the pdf using Embedded Python? In IRIS 2023 is already available, you only require to install the pypdf library in your instance to use it. You can find an example of pdf merge using python here.
go to post Luis Angel Pére... · Jan 24 You can get the latest version from here: https://containers.intersystems.com/contents?family=InterSystems%20IRIS%...
go to post Luis Angel Pére... · Oct 28, 2024 Hi @Kurro Lopez Did you follow step by step this documentation?
go to post Luis Angel Pére... · Oct 10, 2024 It's really easy, to declare a dynamic object you just need: set dynamicObject = {} do dynamicObject.%Set(...) https://docs.intersystems.com/csp/docbook/Doc.View.cls?FIND=CLASSES+%25L...
go to post Luis Angel Pére... · Oct 10, 2024 Well, not sure if this would work but maybe you can set the stream into a dynamic object using the stream>base64 transformation and compare base64 Vs base64. https://docs.intersystems.com/iris20242/csp/documatic/%25CSP.Documatic.c...
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 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... · 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.
go to post Luis Angel Pére... · Jun 12, 2024 The only way to insert info into a different database is to configure a sql gateway connection by JDBC and execute the SQL with the insert.
go to post Luis Angel Pére... · Jun 12, 2024 %Stream.FileBinaryGzip extends %Stream.FileBinary, so they are practically equals, the only difference is the gzip compression and maybe a read process a bit slower with Gzip than just with FileBinary (and this is more a feeling than a fact).
go to post Luis Angel Pére... · May 10, 2024 I asked the same: https://community.intersystems.com/post/visual-studio-soap-wizard The answer is yes! Check the answer in the question.
go to post Luis Angel Pére... · Apr 12, 2024 The documentation is pretty clear, you have to include the external table as a subquery: FROM Sample.Person,(SELECT * FROM Mylink.Person) That means that you have to modify your view to use the external table in that way.
go to post Luis Angel Pére... · Apr 12, 2024 You can create your own HL7 schema to include the NTE segment for the ADT message, you will be able to configure the FileService to get HL7 messages based on your custom schema: https://docs.intersystems.com/irisforhealthlatest/csp/docbook/DocBook.UI...
go to post Luis Angel Pére... · Apr 10, 2024 Have you checked this comment? https://community.intersystems.com/post/encoding-base64-stream-chunk-siz...
go to post Luis Angel Pére... · Mar 14, 2024 PUT and DELETE works, but you have to use as id the generated by FHIR server, you can't use MRN or any other type of id.