Hello,
We are preparing for the MIT hackathon and noticed that when using the cloud services for FHIR, there isn't enough or any Patient data to test the FHIR APIs. Which sample patients can we use?
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.
Hello,
We are preparing for the MIT hackathon and noticed that when using the cloud services for FHIR, there isn't enough or any Patient data to test the FHIR APIs. Which sample patients can we use?
Hi
How do I run a CSP page from within VS Code.
Secondly I have installed an extension called "Live Server" which will run .html pages within VS Code. Have any of you made use of this extension and if so can you specify that .csp pages are html pages?
If I press F5 in VS Code (just as you would in Cache Studio) in order to view a csp page when I press F5 in vs code it tries to open
http://localhost:57772/csp/bootstrap/
without the csp page name
If I add the csp page name in the url it works. The question is how do I link the csp page to the url passed to the browser
Nigel

Hi Community,
This post is a introduction of my openexchange iris-globals-graphDB application.
In this article I will demonstrate how to save and retrieve Graph Data into InterSystems Globals with the help of Framework and Library
#create and establish connection
if not self.iris_connection:
self.iris_connection = irisnative.createConnection("localhost", 1972, "USER", "superuser", "SYS")
# Create an iris object
self.iris_native = irisnative.createIris(self.iris_connection)
return self.iris_nativeHi Team,
When I restored the database or import the data from source system to target system at that time how to Preserve source system identity value in target system.
Thanks,
Ankur Shah
We have a stored procedure with one input parameter and one input/output parameter.
declare @hl7message nvarchar(max) = 'Pass the hl7 message here',
@output nvarchar(max);
EXEC sp_InsertHl7 @hl7message, @outputresult = @output OUTPUT;
print @output;
@outputvalue will be "Pass" or "Fail"
Below code is inserting the HL7 successfully into the target DB, but not returning the output value as expected.
How to uninstall/remove the FHIR packages, without deleting the endpoint.
.png)
Hello,
I am new to this forum. So please let me know if this is not the place to post these questions.
I have heard from some previous Intersystems presentations that FHIR profile validation before posting to FHIR server (using $validate) would be available in IRIS for Health. How do I confirm if this functionality is available and if so, on which version of IRIS?
Thanks
How to understand the "sets" of this "$system.OBJ.GetQualifiers" method?
Hi Team,
I want to implement functionality in Intersystems IRIS for Health 2021.1. Which Received FHIR JSON from FHIR Repository and Convert them into HL7 different versions by Message type. Can anyone help me with this?
Thanks,
Harshdeep Acharya
Hi Team,
Thanks in advance for reading my question.
I first converted HL7 to FHIR using SDA. Now, I want to convert the same FHIR resources to an FHIR JSON file. Is that possible?
If yes, give me a solution for that?
Harshdeep Acharya
Software Developer
When creating a service with DOCKER SERVICE CREATE we cannot pull from the intranet/local image repository.
Both PULL and PUSH can be handled from the intranet repository.
Hi There,
We are upgrading from Cache to IRIS this weekend and I was curious what version of IRIS I need to download. Once our system is live on IRIS, I will no longer be able to use Ensemble. If anyone knows the version of IRIS and could pass that along to me, it would be much appreciated.
Thanks
Hi
How can we pass X509 Certificate upon calling FHIR API ?
Thanks
Hello community!
I found a bug or may be I missed something.
I want to get field name in "PID" segment by field number in HL7 Message using following object script expession:
set nl = $CHAR(10)
set str = "MSH|^~\&|MIHIN PATIENT GEN|1.2.3.4.5.9.99.999.9999.1004||2.16.840.1.113883.3.1481|20200103000000+0000||ADT^A01^ADT_A01|1092|P|2.6|1091|||||||||Windward General Hospital|"_nl
_ "EVN||20200110000000+0000|||||1.2.3.4.5.9.99.999.9999.1004"_nl
_ "PID|1|3170|44c8a6bba5c743538e476a813256959b^^^^CKS~000003170^^^^SS||Santana^Pearl||19900609|F||2054-5^Black or African American^HL70005|364 NE Oak Circle^^Trenton^MI^48183||||||||000003170|||N^Not Hispanic or Latino^HL70189|||||||20200110000000+0000|N"_nl
_ "PD1|||Windward General Hospital^^^^^^^^^1.2.3.4.5.9.99.999.9999.1004|9999992221^Johnston^Karl^^^^^^^^^^NPI^^^^^^^^MD"_nl
_ "PV1|1|I|^^67^1.2.3.4.5.9.99.999.9999.1004||||9999992221^Johnston^Karl^^^^^^^^^^NPI||||||||||||17a5e3aa59a34ad5af017998278a5eb5||||||||||||||||||&HOME^20200110000000+0000|||||||20200103000000DG1|1||Z34.90^Normal pregnancy^I10||20200103000000+0000|F|^Become_Pregnant"_nl
_ "IN1|1|1772^STATE HEALTH PLAN|1027|MEDICAID||||||||||||Santana^Pearl^Gladys|||364 NE Oak Circle^^Trenton^MI^48183"_nl
set msg = ##class(EnsLib.HL7.Message).ImportFromString(str)
set msg.DocType = "2.5:ADT_A01"Hello everyone!
When running the command
do ##class(TestCoverage.Manager).RunTest(,"/nodelete",.userParams)
I now get the following error.
ERROR #5002 : ObjectScript error: <FUNCTION>zStart+45^%Monitor.System.LineByLine.1 <<==== **FAILED** TestCoverage.Manager:OnBeforeAllTests:::
These tests run fine in Studio.
Also the TestCoverage works fine on all the other namespaces. So far i'm experienceing this problem on this 1 namespace.
The solution of stopping the LinebyLine monitor doesn't help like in the case of ERROR #6060
Can someone please point me in the right direction?
Hello,
Using ^TESTGLOBAL as an example, if my data structure is as follows:
| ^TESTGLOBAL | = | "" | |
| 2: | ^TESTGLOBAL(0) | = | "TEST DATA^99U^123456^123456" |
| 3: | ^TESTGLOBAL(1,0) | = | "1^2^12345" |
| 4: | ^TESTGLOBAL(1,.092) | = | "A" |
| 5: | ^TESTGLOBAL(1,.1) | = | "12B" |
| 6: | ^TESTGLOBAL(1,.2) | = | 12345 |
| 7: | ^TESTGLOBAL(1,"AB",0) | = | "^99.94A^1234567.123456^2123" |
| 8: | ^TESTGLOBAL(1,"AB",1234567.123456,0) | = | "6543210.123456^^6543210.123456^123456^72^AB 0123 45^^ABCDE 1^^65432^AA^^1234;CD(^123" |
| 9: | ^TESTGLOBAL(1,"AB",1234567.123456,40) | = | "20.0^^12345.0000!12345.0000! |
Hi Team,
I am getting the below error while calling Method from ClassMethod in the same cls file.
Please help me with this, So It would be very helpful for me.
|
Hello,
I'd like to add/remove items to/from a custom HL7 searchtable (which extends EnsLib.HL7.SearchTable).
Adding new items worked fine by:
Question 1:
How can I remove items from the searchtable properly? Doing the same as above (removing them from the class, recompiling, reindexing) seemed to work, but the removed items still appear in the message viewer's search criteria list. So I think there must be an additional step to the procedure. What am I missing?
Hi,
Are we correct to assume that the IKO topology only allows for the use of one 'data' node type, and one 'compute' node type? So if we want to use several different iris based compute nodes (or data nodes) we have to apply several yaml files? So the following topology config is not possible:
topology:
data:
image: dvza.healthexchange.nl/mmres:0.1
data:
image: dvza.healthexchange.nl/mmauth:0.1
data:
image: dvza.healthexchange.nl/somethingelsethatisbasedonirisimage:0.1
Thanks in advance.
InterSystems has corrected a defect that causes incorrect ObjectScript routine compilation.
This defect exists only in the recently released 2021.1.1 version of:
InterSystems IRIS Data Platform
InterSystems IRIS for Health
HealthShare Health Connect
InterSystems recommends that 2021.1.1 not be used. Incorrect routine compilation occurs silently and can cause unpredictable logic execution. 2021.1.1 versions have been removed from distribution channels.
I created the iris-fhir-portal as part of the current contest InterSystems IRIS for Health FHIR, and I'm writing this quick overview to introduce the features that my application offers.
The goal of iris-fhir-portal is to show how easy we can create a Patient Chart using FHIR capabilities in IRIS for Health and empower the user with their own data.
Hey Developers,
New video is already on InterSystems Developers YouTube channel:
Hi Team,
I got a 404 status code(fhirResponse.Status) in the below code while inserting patient resources. Other resources data are successfully inserted.
Class HS.FHIRServer.Interop.Operation Extends (Ens.BusinessOperation, HS.HC.Util.Trace.Helper)
{ Parameter SETTINGS As %String; XData MessageMap
{
<MapItems>
<MapItem MessageType="HS.FHIRServer.Interop.Request">
<Method>DispatchRequest</Method>
</MapItem>
</MapItems>
} Method DispatchRequest(pInteropRequest As HS.FHIRServer.Interop.Request, Output pInteropResponse As HS.FHIRServer.Interop.
Myself and the other Technology Architects often have to explain to customers and vendors Caché IO requirements and the way that Caché applications will use storage systems. The following tables are useful when explaining typical Caché IO profile and requirements for a transactional database application with customers and vendors. The original tables were created by Mark Bolinsky.
In future posts I will be discussing more about storage IO so am also posting these tables now as a reference for those articles.
The InterSystems Kubernetes Operation (IKO) version 3.3 is now available via the WRC download page and the InterSystems Container Registry.
IKO simplifies working with InterSystems IRIS or InterSystems IRIS for Health in Kubernetes by providing an easy-to-use irisCluster resource definition. See the documentation for a full list of features, including easy sharding, mirroring, and configuration of ECP.
IKO 3.3 Highlights:
irisClusteririsClusterHello Everyone,
The Certification Team of InterSystems Learning Services has updated exam objectives for our HL7 Interface Specialist certification exam and we need input from our implementation community.
How do I provide my input? We will present you with a list of job tasks, and you will rate them on their importance and other factors.
How much effort is involved? It takes about 30-45 minutes to fill out the survey. You can be anonymous or identify yourself and ask us to get back to you.
How can you access the survey? You can access the survey here
Note: Your answers cannot be saved.
Hey InterSystems Community!
This is probably far-fetched - is there a way to get notified/get a piece of code triggered whenever the state of a global changes?
Now what could I possibly want with that? Quite simple! I would like to forward the content of a global (in this case the "FSLog" global written by the FHIR implementation) while adding timestamps to it - to create some sort of file-based logging for it.
Hey community! How are you doing?
I hope to find everyone well, and a happy 2022 to all of you!
Over the years, I've been working on a lot of different projects, and I've been able to find a lot of interesting data.
But, most of the time, the dataset that I used to work with was the customer data. When I started to join the contest in the past couple of years, I began to look for specific web datasets.
I've curated a few data by myself, but I was thinking, "This dataset is enough to help others?"
So, discussing the ideas for this contest with @José.
LS,
Probably due to my MacBook M1, but when I try to push the IKO (step 3 in the install) to the hub, I get the following error message:
The push refers to repository [docker.io/library/kubernetes-operator]
6515fe38e1f1: Preparing
f562a1750889: Preparing
denied: requested access to the resource is denied
Is this indeed because of my MacBook architecture or is there a different reason?
Is there any open source tool like Power BI or Tableau that works well with IRIS? Thx!