Hello Community!
Welcome to the new edition of the InterSystems Ideas News! Learn what we've been up to this past couple of weeks.

Hello Community!
Welcome to the new edition of the InterSystems Ideas News! Learn what we've been up to this past couple of weeks.

Hello,
I tested the query on the Config.ConfigFile table of the Namespace %SYS, it returned 3 lines and a fatal error:
SELECT
*
FROM Config.ConfigFile.png)
I tested the same query on other IRIS instances (including a 2021.1 instance) and got the same error.
Is it a bug in IRIS or is there something wrong with the installations?
Anyone who can test and leave in the answers if they got the same result, I would be grateful.
Thank you for your attention.
Hi InterSystems Developers!
Recently I've updated the FHIR dev template so that it now publishes an IPM package fhir-server that makes the setup of InterSystems FHIR server a trivial manual or automatic or programmatic procedure one command long.
Please see below how you can benefit from it.

TLDR
USER>zpm "install fhir-server"
All the details below.
Hi,
I know json does not impose any order, but for readability I would like to insert a json property at a specific location at the start of a %DynamicObject, not at the end.
Is there a known way to do that (other than string manipulation)?
Hi! 've installed a fresh IRIS on Windows 10: "InterSystems IRIS Version 2022.2.0.368 xDBC Protocol Version 65"
I've tried to create an older demo database that I've build some days ago... it didn't work anymore :-(
If I execute this SQL:
LOADDATAFROMFILE'D:\dev\openflights_dataset\data\countries.csv'INTOdc_data_flights.countries(id,code,name,continent,wikipedia_link,keywords)VALUES(id,code,name,continent,wikipedia_link,keywords)USING{"from":{"file":{"header":true,"columnseparator":","}}}
Hi folks!
What is the way to know if I'm on IRIS for Health not just IRIS?
$ZV doesn't show any difference:
IRISAPP>w $zv IRIS for UNIX (Ubuntu Server LTS for x86-64 Containers) 2022.2 (Build 368U) Fri Oct 21 2022 17:18:04 EDT
In simple terms, Web scraping, web harvesting, or web data extraction is an automated process of collecting large data(unstructured) from websites. The user can extract all the data on particular sites or the specific data as per the requirement. The data collected can be stored in a structured format for further analysis.

It’s that simple !!
Hey Developers,
Enjoy watching the new video on InterSystems Developers YouTube:
Was wondering if anyone had a simple way of calling ##class(Ens.Director).EnableConfigItem() within a Business Process or adding code to a Custom Service to start or stop the object?
The use case is that I have a Process that uploads a file into a external SQL table. When it is finished I want it to kick off another Service that does the processing of the data that it just uploaded. Once it is finished the response is sent back to the service and when the service receives the response from the process, I want to stop that service from running.
so...
Hi
Just posting this here also, sent an email to support too.
Leaning paths are down and loggin in to results in
I initialize a HS.SDA3.Container from a XML stream and I need to iterate over it twice. What is a correct way of doing it? Is it enough to adjust StreamPos/StreamOref?
The optimal solution would be to use one loop, but it's not possible to combine the processing logic.
set oSDA = ##class(HS.SDA3.Container).%New()
do oSDA.InitializeXMLParse(.tQuickStream)
while oSDA.GetNextSDA(.tType, .tPatient) {
// processing logic A
}
set oSDA.StreamPos = 1do oSDA.StreamOref.Rewind()
while oSDA.GetNextSDA(.tType, .tPatient) {
// processing logic B
}Hi Friends ,
I have created inbound DB adapter business service. Now my requirement to trigger this service at 10am daily.
I used scheduler , but I don't know when should i configure for stop. this not suits for my requirement.
Is there any other way , where I need to trigger service only once , in configured times.
Thanks,
Prashanth
What I can do:
Get a subset of HL7 messages.
Send the messages to a RecordMap (with key fields from the HL7 message).
Save each message to a file.
How can I send all messages until a set time (e.g. 9am each day) to single file?
Scenario:
In the period 09:00 1 Jan 2022 to 09:00 2 Jan 2022 there are say 50 messages to save to file: File001.txt
In the period 09:00 2 Jan 2022 to 09:00 3 Jan 2022 there are say 40 messages to save to file: File002.txt
etc
So, the next year will bring us a new way of installing IRIS. Always keep in mind that you have to bring your own web server. No matter how many instances of IRIS you have on your local machine. Or if you work in Docker, always keep in mind a bit more complicated configuration.
And I now want to understand the costs of this decision for end-developers like most of here.
Let's have a look, at what we got out of the box in Web Applications, obviously do not forget about System Management Portal.
A good writer is supposed to draw you in with the title and bury the answer somewhere in the article. I suppose this makes me a bad writer – don’t think less of me, my whole feeling of self-worth comes from the opinions of internet strangers!
IAM 3.0 Release
InterSystems API Manager (IAM) version 3.0.2 is now Generally Available. IAM 3.0 adds significant new functionality including:
If you would like to try the new installation process for the NoPWS project, you can get access to the Early Access Program (EAP) here. (https://evaluation.intersystems.com/Eval/)
Once you have registered, please send InterSystems the email address you used to register for the EAP to nopws@intersystems.com.
Look here for background: Original Post
When using GUI is there a way to have Studio use the numbers for HL7 instead of the words for the path?
When in the code view is there a way to have Studio use single quote instead of double quote?
Hello,
I'm inserting a row using an insert statement from dotnet InterSystems.Data.CacheClient.CacheCommand.
Is there a way to get the inserted ID or IDs if I've inserted multiple rows?
Regards, Timo
Hello everybody,
In the documentation I read the following:
Alerts are messages generated by production components. InterSystems IRIS automatically writes the alerts to a log file and sends then to the production component named Ens.Alert. If your production does not have a component named Ens.Alert, then InterSystems IRIS writes alerts to the log file but does not send them to any component. The component named Ens.Alert can be of any class. The most frequently used classes for Ens.Alert are:
I have been creating classes using the below REST url.
http://localhost:57772/api/atelier/v1/ENSDEMO/doc/Demo.HL7.MsgRouter.Te…
The only caveat is that I want to only load in the compiled code of the classes, as they appear in deployed mode.
How do I define this in the content of the JSON payload being sent across?
I have table
CREATETABLE nodes (
nameVARCHAR(50) NOTNULL,
parentVARCHAR(50),
PRIMARY KEY (name),
FOREIGN KEY(parent) REFERENCES nodes (name) ONUPDATEcascade
);
I put some data
INSERTINTO nodes (name, parent) VALUES ('n1', NULL);
INSERTINTO nodes (name, parent) VALUES ('n11', 'n1');
INSERTINTO nodes (name, parent) VALUES ('n12', 'n1');
INSERTINTO nodes (name, parent) VALUES ('n13', 'n1');
Let's delete all
DELETEFROM nodes;Nope, no way.
SQL Error [124] [S1000]: [SQLCODE: <-124>:<FOREIGN KEY constraint failed referential check upon DELETE of row in referenced table>] [Location: <ServerLoop>] [%msg: <At least 1 Row exists in table 'SQLUser.nodes' which references key 'NODESPKey2' - Foreign Key Constraint 'NODESFKey3', Field(s) 'parent' failed on referential action of NO ACTION>]
Is anybody using the EPRSave() Edge Gateway method/API?
It is documented in:
https://docs.intersystems.com/hs20222/csp/docbook/DocBook.UI.Page.cls?K…
Enrico
Hi,
I'm trying to configure iprint for trakcare.
My trakcare runs on linux IRIS(SUSE).
iprint is from MicroFocus [previously Novell]
iprint is a print facility that many printers support where there is a virtual queue for each AD user.
You can log onto any iprint printer using your AD credentials and you can access your virtual print queue. You can then physical print from that virtual queue.
Has anyone configured this for their trakcare?
In order to do this I need to:
- map each trakcare user to their equivalent AD user
- get an iprint driver
However there is no iprint driver for my Linux IRIS.
Hey Community,
Join this session to learn more about security-related topics, starting with the change to the OpenSSL libraries and the general distribution of third-party libraries with InterSystems products (e.g., Web Server):
In the December 2022 newsletter, find more ways to transform, analyze, share, and view your data using InterSystems technologies—including the FHIR Facade! Plus, listen to a new podcast episode on AI Link, a bridge between machine learning and business intelligence. Make sure to subscribe to the newsletter to get the latest resources!
Similar to: "set obj = ##class(myClass).%OpenId(id)", which give the an instance of the object with given ID, is there a way to implement a function/classmethod to return the same by providing both class name and ID as a parameter, such as: getObjectInstanceByNameId(className As %String, id As %Integer), using ObjectScript code?
Hi Community,
Let's meet virtually at our Third Community Roundtable! This will be a 60-min discussion on a given topic: Developing with Python.
Register through >> this Global Masters challenge <<
UPDATE: the roundtable recording is available here.
Hi Community,
Watch this video to get an introduction to data types in InterSystems ObjectScript, and see how to use three common data types: strings, lists, and objects:
Some time ago GitHub, has announced the new feature, GitHub Codespaces. It gives an ability to run VSCode in the browser, with almost the same power as it would run locally on your machine, but also with a power of clouds, so, you are able to choose the machine type with up to 32 CPU cores and 64 GB of RAM.
.png)
Looks impressive, is not it? But how it could help us, to work with projects driven by InterSystems IRIS? Let's have a look, how to configure it for us.