I haver read $Query and $Order but still not getting the code that i am looking to work correctly.
I have a global like
^TestGlobal("Not Configured","Value 1")=""
^TestGlobal("Not Configured","Value 2")=""
InterSystems IRIS for Health™ is the world’s first and only data platform engineered specifically for the rapid development of healthcare applications to manage the world’s most critical data. It includes powerful out-of-the-box features: transaction processing and analytics, an extensible healthcare data model, FHIR-based solution development, support for healthcare interoperability standards, and more. All enabling developers to realize value and build breakthrough applications, fast. Learn more.
I haver read $Query and $Order but still not getting the code that i am looking to work correctly.
I have a global like
^TestGlobal("Not Configured","Value 1")=""
^TestGlobal("Not Configured","Value 2")=""
I've been playing with IntegratedML and have created a model and trained the model. When I try to use PREDICT or PROBABILITY statements in an SQL query, I get the following error:
[SQLCODE: <-400>:<Fatal error occurred>]
[%msg: <PREDICT execution error: ERROR #5002: ObjectScript error: <OBJECT DISPATCH>%LoadModel+31^%ML.AutoML.TrainedModel.1 *<class 'AttributeError'>: 'str' object has no attribute 'decode' - >]
Here's an example of the sequence of steps I've followed that lead to the error:
CREATE MODEL MyModel PREDICTING (IsError BOOLEAN) FROM Example3.
Newbie stuck again, hoping this won't be as bad as I'm thinking. In my DTL Editor I've got
Source.Appointments.(k1).Date = 07/05/2022
Source.Appointments.(k1).StartTime = 14:30
Source.Appointments.(k1).
How would you like to be able to access the Web Terminal directly from your VSCode?
.png)
Hi developers. I often miss the ZPM program on a clean system. Nothing complicated? Take and install. And in one line? Especially in a docker container. There is a solution. I'm very happy with it;) Maybe the line can be shortened?
set $namespace="%SYS", name="DefaultSSL" do:'##class(Security.SSLConfigs).Exists(name) ##class(Security.SSLConfigs).Create(name) set url="https://pm.community.intersystems.com/packages/zpm/latest/installer" Do ##class(%Net.URLParser).Parse(url,.comp) set ht = ##class(%Net.HttpRequest).%New(), ht.Server = comp("host"), ht.Port = 443, ht.Https=1, ht.Developer Preview releases are now available for the 2022.2 version of InterSystems IRIS, IRIS for Health, and HealthShare Health Connect.
This is the first in a series of releases that are part of the developer preview program. Future preview releases are expected to be updated biweekly and we will add features as they are ready. This program allows us to get feedback on capabilities and enhancements as they're available. You'll see below a list of enhancements that are targeted for 2022.2. Some these are not included in the first developer preview. Look for those over the coming weeks.
Hi There,
I'm fairly new to ObjectScript/Ensemble and I'm sure I may be fundamentally misunderstanding how the %JSONImport/%JSONExport and XDATA mapping work and I was hoping you good folks could help me out. I'm essentially trying to create an object that I can use to translate from one JSON schema to another.
First my class:
Class SERVICESVCPKG.Model.AthenaAppointment Extends (%Persistent, %DynamicAbstractObject, %JSON.Is it possible to mirror the same database on Iris and an older Ensemble instance?
Specifically to try a zero downtime upgrade
Hello,
I am wondering if anyone can help me with an issue we are facing. We are trying to add a parent-child relationship between 2 tables in the database that already contain data. We are able to add the new relationship property to the required data classes, and set the desired cardinality. We have also included code that will add the relationship using the Insert() method to new data that comes in.
The problem we have is how do we add the relationship to data that already exists in the database?
Couldn't see this on the community, not sure why...
Join us for a true community event, once again bringing together InterSystems customers and partners – to learn, inspire, and share innovation challenges with each other. To register, please complete the form
I'd like to to assign a value to a variable, depending on the results of a condition. The equivalent of what can be done in c++ with the following:
(a>b) ? a=1:a=0;
Or in python:
a = 1 if a>b else 0This makes the code much more readable and compact.
In objectscript it would be:
if (a>b){
a=1
} else{
a=0
}I would like to introduce my new project for the Globals Contest. A very new view for the globals browser
.png)
Hi all
I'm struggling to insert into a table, and it is baffling me. The insert statement is now very simple (I was using a complex INSERT SELECT statement but I'm trying to narrow down the problem).
Insert statement:
INSERT INTO Phu_Replay_Schema.
Hey Community,
Check out the latest video on InterSystems Developers YouTube channel:
Hello, everyone!
InterSystems IRIS has a menu called Interoperability.
It provides mechanisms to easily create system integrations (adapters, record maps, BPMs, data conversions, etc.) so different systems can be easily connected.
A variety of operations can be included in the data relay process, as examples we can cite: to connect systems that are not normally connected, data can be received (or sent) according to the specifications of the destination system. Also, information can be acquired and added from another system before sending the data.
InterSystems and the developer community around ZPM have been working together to take ZPM to the next level, building it into IRIS and making it a tool that can not only manage 3rd-party code, but key parts of InterSystems' products. You can hear a lot more on this topic at Global Summit 2022, and attend an experience lab to get hands-on.
As a developer, you can also join the ongoing discussion about some final key design issues we are exploring with the community.
Hi All,
I am trying to install IRIS Health CE on a Ubuntu VM, so I can test IAM with it.
During the installation I get the following error:
=================
Warning: The installer can't find a platform in this distribution
supported by your system.
Searching for platforms that might install in unsupported mode...
1) Ubuntu LTS (x64)
Enter the number for your system: 1
Your system type is 'Ubuntu LTS (x64)'.
openssl version 1.1.1 is required.
** Installation aborted **
No packages will be installed.
====================
I installed OpenSSL 1.1.1n 15 Mar 2022. It was version 3.0.
I have a proprietary JSON and a need to transform to SDA and save to a sda file.
How to transform json to SDA and write to a file?
Thanks
Hi,
I am looking to define an architecture combining both IRISforHealth's FHIR server and HAPI's MDM capabilities. Is there anyone who has already implemented this type of solution?
The goal is to implement a single patient repository for multiple hospitals, so HAPI MDM is really interesting.
From what I've seen, some of the issues may be around compatibility between Caché and Hybernate.
Thanks
While reviewing our documentation for our ^pButtons (in IRIS renamed as ^SystemPerformance) performance monitoring utility, a customer told me: "I understand all of this, but I wish it could be simpler… easier to define profiles, manage them etc.".
After this session I thought it would be a nice exercise to try and provide some easier human interface for this.
The first step in this was to wrap a class-based API to the existing pButtons routine.
I was also able to add some more "features" like showing what profiles are currently running, their time remaining to run, previously running processes and more.
The next step was to add on top of this API, a REST API class.
With this artifact (a pButtons REST API) in hand, one can go ahead and build a modern UI on top of that.
For example -
.png)
Hi everyone, I'll be honest with you I don't have much idea how to do this, but I was asked to install IRIS for Health on an AWS ubuntu machine(ssh -i "teleker-net.pem" ubuntu@xx.xxx.xx.xxx(no I will put the real number)). My boss has sent me the .key and .pem files that I am supposed to need for the installation.
I am quite confused with the information that I have found to connect to AWS because it is not that I want to do it from any new, but that I need to connect to a machine that already exists, but I do not think so. I do not know if I explain myself very well.
Hi Community,
This article will demonstrate how to create Patient and Patient Observation Resources by using iris-fhir-client application.
I recommend to read my first article about this app and watch Youtube Video before continue
so let's start
This article will discuss FHIRQuestionnaire and QuestionnaireResponse from the creation of the form to the upload on the server and how to fill them.
Hi Community,
This post is a introduction of my open exchange iris-fhir-client application.
iris-fhir-client can connect to any open FHIR Server by using embedded python with the help of fhirpy Library.
Get Resource information by terminal and by using CSP web application.
Hi guys,
We are connecting to a 3rd party SOAP web service. The wsdl looks like below
.png)
Please notice that the portType was defined as /cvpService.
Then when we are trying to use SOAP Wizard to generate a client for the service, we will encounter the following error which prevented the generation
.png)
It seems that '/cvpService' can not be used as a valid class name (or even method name) thus the generation failed.
Thus I have 2 questions about the failure
1.
Hi, I am glad to announce another submission to OpenExchange and the current contest, the FHIR Pseudonymization Proxy. The FHIR Pseudonymization Proxy adds a transparent pseudonymization layer to any existing FHIR server, enabling clients to perform queries on the FHIR server – which may contain personal identifying information – and receive an on-the-fly pseudonymized version of the data.
The proxying mechanism is realized with the IRIS for Health platform through an interoperability production, BPLs and DTLs, and the FHIR interoperability adapter.
Hi Team,
I need to configure SSL with my InterSystems IRIS Health management Portal.
I have applied the some solution but it's not working for me. Can you please someone help me on this.
Thanks,
Ankur Shah
Hi,
I search how to send telemetry data from IRIS to azure. It is possible in other languages with openTelemetry SDK. But there are not SDK for interSystems platform. We would like something totaly automated/integrated.
(We already have telemetry data with prometheus and grafana).
Do you haves any solutions for that ?
Thank you
Hey Community,
Learn how to transform your healthcare data into HL7 FHIR and seamlessly convert and populate Amazon HealthLake with InterSystems FHIR Transformation Service:
Hello All,
I am just wondering if there is any inbuilt function or utility available in IRIS to clean up "null" elements from JSON e.g. I want to remove "null" elements from payload below before I do any processing with it.
{
recipients: [
{ "name":"Utsavi", "email":"utsavi@gmail.com"},
{ "name":"Utsavi 1", "email":"utsavi1@gmail.com"},
null, null
],
content:[null, {"title":"Test.pdf", "data":"ygwehfbnwfbhew"} ]
}
Thanks & Regards,
Utsavi