新しい投稿

Pesquisar

質問
· 2025年3月4日

Using Lists - LB and LI

I have a repeatable field within HL7 that I want to create a List from. Do I have to initialize the List by using $LB, or can I just use $LI to keep adding on to the end of the list as it is looping through the field?

4 Comments
ディスカッション (4)1
続けるにはログインするか新規登録を行ってください
質問
· 2025年3月4日

NodeJS Iris Package - Work on node Windows?

Hello, Does the NodeJs package work when running a node js file on windows (nodejs for windows)? I've added the package by running npm install <package location folder>

 

I have the following index.js file, but when running from node (windows) I get the following error. Does the NodeJs package build the output files when the package is added or does it just assume linux as the underlying os?

Error: Cannot find module './bin/winx64/irisnative.node'

 const IRISNative = require('intersystems-iris-native')

  let connectionInfo = {
    host: 'myserver',
    port: 1972,
    ns: 'USER',
    user: 'user',
    pwd: 'password',
    sharedmemory: true,
    timeout: 5,
    logfile: '.\\mylogfile.log'
  };

  const conn = IRISNative.createConnection(connectionInfo);
5 Comments
ディスカッション (5)2
続けるにはログインするか新規登録を行ってください
InterSystems公式
· 2025年3月4日

Deprecation of MultiValue in InterSystems IRIS 2025.1

As of InterSystems IRIS® data platform version 2025.1, InterSystems is officially deprecating MultiValue and including it in the Deprecated and Discontinued Features list. While InterSystems will continue to support existing customers using MultiValue, it is not recommended for new applications.

What This Means for You:

  • Continued Support: Support for MultiValue will still be available through the Worldwide Response Center (WRC) on a "best effort" basis, as is provided for releases older than our Minimum Supported Versions.
  • Future Removal Possibility: While there are no immediate plans to remove MultiValue from our products, InterSystems reserves the right to do so in a future release.
  • Customer Guidance: If you have questions about your current or planned use of MultiValue, we encourage you to reach out to your InterSystems account team for guidance.

The deprecated designation signals that customers should plan to eliminate their use of MultiValue. We recognize that this may impact ongoing projects, and we appreciate your cooperation as we continue evolving our platform.

For further information or concerns, please feel free to comment below or contact your InterSystems representative.

ディスカッション (0)1
続けるにはログインするか新規登録を行ってください
お知らせ
· 2025年3月4日

[Webinar] Interoperability as a catalyst for AI

Hey Community!

We are pleased to invite everyone to participate in the new webinar in German dedicated to AI:

➡️ Interoperability as a catalyst for AI

⏱ Date & Time March 11, 2025, 3:30 pm CET

👨‍🏫 Speakers 

  • @Thomas Nitzsche, Sales Manager, InterSystems
  • Dr. Olaf Iseringhausen, Head of Competence Center Health Care Solutions, Bechtle
  • Dr. @Erion Dasho, Clinical Advisor, InterSystems

During the webinar, we will look at the current status quo of AI in healthcare in Germany and highlight the challenges we still face in the market. A look at the current state of the technology will show what would already be possible - and what is already available and successfully used in other regions under different regulatory circumstances. The following questions will be answered based on the usage of AI in healthcare sector:

  • Which factors are decisive for evaluating the success of the project? Potential savings, implementation effort, etc. – or other aspects?
  • Which application examples illustrate the importance of a clean and healthy data basis for AI-supported processes?
  • What challenges do you face when implementing AI solutions?
  • What expectations do hospital management or other stakeholders have of AI solutions?

>> REGISTER HERE <<

ディスカッション (0)1
続けるにはログインするか新規登録を行ってください
質問
· 2025年3月4日

PROTECT Error on POST request to FHIR server

Hello,

I'm trying to POST a Location resource to a FHIR Server, but I get this error:

{
    "errors": [
        {
            "code": 5002,
            "domain": "%ObjectErrors",
            "error": "ERRORE #5002: Errore di Cach�: <PROTECT>zNewInteractionsInstance+1^HS.FHIRServer.Storage.Json.InteractionsStrategy.1",
            "id": "ObjectScriptError",
            "params": [
                "<PROTECT>zNewInteractionsInstance+1^HS.FHIRServer.Storage.Json.InteractionsStrategy.1"
            ]
        }
    ],
    "summary": "ERRORE #5002: Errore di Cach�: <PROTECT>zNewInteractionsInstance+1^HS.FHIRServer.Storage.Json.InteractionsStrategy.1"
}

This is the URL: http://localhost:1999/csp/healthshare/fhir030704/fhir/r4/Location
and the body of the request:
{
    "resourceType": "Location",
    "id": "a80e071e-578d-4df3-9e0e-d2264ae558ee",
    "meta": {
        "lastUpdated": "2025-03-04T11:27:14Z",
        "profile": [
            "https://fhir.siss.regione.lombardia.it/StructureDefinition/RLLocationPLO..."
        ],
        "versionId": "1"
    },
    "identifier": [
        {
            "value": "03091100-ND-ND-701-1"
        }
    ],
    "operationalStatus": {
        "system": "http://terminology.hl7.org/ValueSet/v2-0116",
        "code": "O",
        "display": "Occupied"
    },
    "physicalType": {
        "coding": [
            {
                "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
                "code": "bd",
                "display": "Bed"
            }
        ]
    },
    "managingOrganization": {
        "reference": "Organization/cb0f913b-1caa-4f94-8f33-b3b59686cd3b",
        "display": "ASST GAETANO PINI"
    },
    "partOf": {
        "reference": "Location/d3dbc567-fa1e-4fbd-a093-9540439179b0"
    },
    "extension": [
        {
            "url": "https://fhir.siss.regione.lombardia.it/StructureDefinition/RLLocationRep...",
            "valueString": "6701"
        },
        {
            "url": "https://fhir.siss.regione.lombardia.it/StructureDefinition/RLLocationAre...",
            "valueString": "LIBERA PROFESSIONE PINI (BLOCCO B PIANO 7)"
        },
        {
            "url": "https://fhir.siss.regione.lombardia.it/StructureDefinition/RLLocationReg...",
            "valueCodeableConcept": {
                "coding": [
                    {
                        "system": "https://fhir.siss.regione.lombardia.it/ValueSet/RegimeRicovero",
                        "code": "2",
                        "display": "Day-hospital"
                    }
                ]
            }
        },
        {
            "url": "https://fhir.siss.regione.lombardia.it/StructureDefinition/RLLocationDat...",
            "valueDateTime": "2025-03-04T00:00:00Z"
        }
    ]
}

Thank you!

2 Comments
ディスカッション (2)2
続けるにはログインするか新規登録を行ってください