go to post Evgeny Shvarov · Nov 11 Or just add a method in a cube class that does what you want and call it via: %cube.YourMethod(%source.%Id())
go to post Evgeny Shvarov · Sep 27 I agree, makes total sense. Documentation also have a feedback button on every page IIRC
go to post Evgeny Shvarov · Aug 23 Hi @Dmitrij Vladimirov ! This is pure ObjectScript AFAIK in an expression mode (think of it if you create a classmethod in ObjectScript in Expression mode), with options of %source to reference base class properties and %cube to reference Cube class methods.
go to post Evgeny Shvarov · Aug 20 Hi @Sam Duncan ! I think DC AI Bot answered right: if you try also add: zpm "enable -community" this will allow to install packages from a community registry
go to post Evgeny Shvarov · Jul 25 Hi @Jonathan Lent ! Great question! It is supported. You can take a look at the Interoperability template on Open Exchange. Here is the line of code in a module.xml file.
go to post Evgeny Shvarov · Nov 17, 2024 Maybe some path issue? Not enough rights to access the folder with the driver?
go to post Evgeny Shvarov · Jun 3, 2024 Hi @Virat Sharma ! Change the type of the control to drop down. Also I recommend you to use DSW for better UI for analytics dashboards.
go to post Evgeny Shvarov · Jun 3, 2024 Hi Matt! Apologies for the delay. Yes, the InterSystems partner program is working. You can see the implementation partners that applied for the partnership here.
go to post Evgeny Shvarov · Feb 25, 2024 Also you can just do (in IRIS for Health): USER>zpm "install fhir-server -dev" And you'll have it setup in "FHIRSERVER" namespace with fhir server R4 at /fhir/r4
go to post Evgeny Shvarov · Jan 24, 2024 Hi @Fahima Ansari ! You can check this example by @Guillaume Rongier
go to post Evgeny Shvarov · Jan 16, 2024 Hi @Ali Chaib ! 1. Yes, it can work with POST, GET and PUT out of the box. 2. The data is stored in IRIS database, in global arrays - as any data other stored via InterSystems data products. 3. FHIR server exposes standard FHIR R4 REST API which you can access via HTTP requests. 4. These classes help with development Digital Health Interoperability scenarios, e.g. if you have to establish perpetual processes to read from FHIR server and/or transform the data into other formats (e.g. HL7) and/or send it into different consuming applications. 5. This can be implemented via Digital Health interoperability framework. See the example. I request @Patrick Jamieson and @Daniel Franco to provide more information.
go to post Evgeny Shvarov · Sep 18, 2023 Yes, that's a pain. That's why we suggest the naming convention of everything in lowcase for UDL class packages.
go to post Evgeny Shvarov · Sep 17, 2023 wow. @Jeffrey Drumm , do you want to publish the class on Open Exchange too?
go to post Evgeny Shvarov · Sep 11, 2023 Community images can be used for now: intersystemsdc/irishealth-community:latest and intersystemsdc/iris-community:latest
go to post Evgeny Shvarov · Sep 3, 2023 Hi @Prasanth Annamreddy ! Here is the example project by @Guillaume Rongier that demoes how to convert FHIR to HL7 using DTL.
go to post Evgeny Shvarov · Aug 15, 2023 I'm using VSCode to code on IRIS that starts from Docker. And with this approach you have the Terminal available in a menu - see the screenshot and loom: Loom video https://www.loom.com/embed/ad320152ba244e7b91b9a087e21a8797?sid=4bba73de-5bcd-4f9e-92c5-aed79890fbdb[This is an embedded link, but you cannot view embedded content directly on the site because you have declined the cookies necessary to access it. To view embedded content, you would need to accept all cookies in your Cookies Settings]
go to post Evgeny Shvarov · Jun 11, 2023 Introduced a module that does the thing what @Sergey Mikhailenko suggested. So install it: USER>zpm "install production-settings" and call: do ##class(shvarov.i14y.Settings).SetValue("ProductionName","ServiceOrOperationName","Setting",Value)
go to post Evgeny Shvarov · Jun 7, 2023 The only drawback - there is no Microsoft Solitaire :) Jokes aside maybe you'll miss InterSystems Studio. But VSCode does more than Studio can. Also Docker is much more stable on Mac.
go to post Evgeny Shvarov · May 20, 2023 They are "special" :) and called locals for variables and globals for persisted variables. in case if you are in debug you can always print out the array with zwrite array_name. E.g. in your case: USER>zw args will print out all the data it contains. useful for understanding and debugging.