Encontrar

公告
· 七月 17

Commentaires nécessaires pour un nouvel examen de certification CCR pour les spécialistes des applications TrakCare !

Bonjour, utilisateurs CCR des sites TrakCare !

L'équipe Certification d'InterSystems Learning Services développe actuellement un examen de certification InterSystems CCR EHR (aussi appelé TrakCare) Specialist. Nous sollicitons les commentaires de notre communauté afin de finaliser le contenu de l'examen.

Comment puis-je donner mon avis ? Répondez à notre enquête d'analyse des tâches (JTA) ! Nous vous présenterons une liste de tâches et vous les évaluerez en fonction de leur importance et d'autres facteurs.

Quel est le niveau d'effort requis ? Comptez environ 20 à 30 minutes pour répondre à l'enquête. Vous pouvez rester anonyme ou indiquer votre adresse e-mail si vous souhaitez un suivi.

Comment accéder à l'enquête ? Vous pouvez y accéder ici.

  • L'enquête fonctionne sur les appareils mobiles.
  • Vous pouvez reprendre l'enquête en y revenant sur le même appareil et dans le même navigateur, sauf si vous effacez l'espace de stockage du navigateur.
  • L'enquête se terminera le 29 août 2025.

Qu'est-ce que j'y gagne ? Vous avez votre mot à dire sur les sujets abordés par le nouvel examen et, en guise de remerciement, les participants peuvent acumuler des points Global Masters.

Voici le titre de l'examen et la définition du poste visé :

Titre de l'examen : InterSystems CCR EHR Application Specialist (remarque : nous l'appelons « EHR » car il couvre TrakCare, mais s'appliquera également aux clients IntelliCare, et l'utilisation des DSE ne change pas sur le nouveau produit)

Poste visé : Spécialiste des applications InterSystems TrakCare qui :

  • Utilise les DSE de niveau 2 pour documenter et traiter les flux de travail des modifications ;
  • Applique les modifications de configuration dans InterSystems TrakCare ; et
  • Transporte et déploie les modifications de configuration dans tous les environnements.

Nous recommandons au moins six mois d'expérience dans les tâches ci-dessus, ou la progression autonome de 20 DSE de niveau 2.

N'hésitez pas à nous consacrer un peu de votre temps et à nous aider si vous le pouvez. Nous sommes ravis de travailler sur ce projet afin que les experts de niveau 2 puissent obtenir des diplômes démontrant leur expertise !

讨论 (0)1
登录或注册以继续
问题
· 七月 17

Request for suggestions on how to efficiently replicate a test environment in production

Good morning everyone,
In the facility we're working in, we have two separate installations for testing and production. In the test environment, we have production processes running properly, and we need to replicate production processes and settings in the production environment. Until now, when we move from a test environment to a production environment, we currently export the test classes, import them into production, and manually configure the production environment by connecting Services, Processes, and Operations and configuring the settings. We tried exporting the production environment from the portal to import it into production, but we couldn't find the import functionality. So, we were wondering if there was a more efficient and faster way to move a production environment with all its settings from one environment to the other than what we're currently doing.

Thanks everyone in advance,

Elisa

2 条新评论
讨论 (2)2
登录或注册以继续
文章
· 七月 17 阅读大约需 3 分钟

No More Local Limits: Exposing InterSystems IRIS with ngrok

At hackathons that InterSystems participated and I supported, many students were asking how all their teammates could use the same IRIS database that they spun up in a container. I suggested using ngrok to expose their localhost IRIS and realized we don't have documentation on that. Hence, I thought this would be great to let more people knwo about this powerful technique for enhancing collaboration during development and testing.

讨论 (0)1
登录或注册以继续
问题
· 七月 17

Creating Json Array for API Call

Hello Community!

We have this json payload for an api request we are making.
 

{

    "fromDirectAddress" : "john@meda.com",

    "toDirectAddress" : "smith@domain.com",

    "emailAttachmentList" : [

        {

            "attachmentClass" : "application/xml",

            "attachmentContent" : "PHRlc3Q+TWVkQWxsaWVzPC90ZXN0Pg==",

            "attachmentTitle" : "MR-Lumbar Spine without contrast_1",

            "attachmentFileName" : "ClinicalDocument"

        },

"messageId" : "urn:uuid:a2d59543-91f4-45a4-99ef-72d70da1e454"

}

I created two classes (see below) but I am having issues with setting the emailAttachmentList as an array.
 

Class Request.SendDirectMessageRequest Extends (%Persistent, %XML.Adaptor, %JSON.Adaptor)
{

Parameter %JSONNULL = 1;

Property fromDirectAddress As %String(%JSONFIELDNAME = "fromDirectAddress", MAXLEN = "");

Property toDirectAddress As %String(%JSONFIELDNAME = "toDirectAddress", MAXLEN = "");

Attempt 1 // Property emailAttachmentList As Request.EmailAttachment(%JSONFIELDNAME = "emailAttachmentList");

Attempt 2 // Property emailAttachmentList As List of Request.EmailAttachment(%JSONFIELDNAME = "emailAttachmentList");
Property messageId As %String(%JSONFIELDNAME = "messageId", MAXLEN = "");

Property xdm As %Boolean(%JSONFIELDNAME = "xdm");

}

 

 

Class Request.EmailAttachment Extends (Ens.Request, %JSON.Adaptor)
{

Parameter %JSONIGNOREINVALIDFIELD = 1;

Property attachmentFileName As %String(%JSONFIELDNAME = "attachmentFileName", MAXLEN = "");

Property attachmentTitle As %String(%JSONFIELDNAME = "attachmentTitle", MAXLEN = "");

Property attachmentClass As %String(%JSONFIELDNAME = "attachmentClass", MAXLEN = "");

Property attachmentContent As %String(%JSONFIELDNAME = "attachmentContent", MAXLEN = "");

}

 

Attempt 1 (highlighted in yellow in the Request.SendDirectMessageRequest class) gives us the error below but at least that’s a response back as the message does leave IRIS.

Error HttpResponse: {"error":"/emailAttachmentList expected type: JSONArray, found: JSONObject"}

 

Attempt 2 gives us this error and the message doesn’t make it past the router.
ERROR <Ens>ErrBPTerminated: Terminating BP APIRouter1 # due to error: ERROR <Ens>ErrException: <PROPERTY DOES NOT EXIST>zS4+9^FAIS.BPL.APIBPL.Thread1.1 *attachmentClass,%Collection.ListOfObj -- logged as '-' number - @' Set status=1,callrequest.emailAttachmentList.attachmentClass="application/xml"'
> ERROR <Ens>ErrException: <PROPERTY DOES NOT EXIST>zS4+9^FAIS.BPL.APIBPL
.Thread1.1 *attachmentClass,%Collection.ListOfObj -- logged as '-' number - @' Set status=1,callrequest.emailAttachmentList.attachmentClass="application/xml"'

 

Please assist us to figure out what we need to change the code to. Thank you!

3 条新评论
讨论 (3)2
登录或注册以继续
问题
· 七月 17

IRIS 2024.1 Community License Renewal

Hello Community

The InterSystems IRIS Community License for Iris version 2024.1 is about to expire. I would like to know if there’s a way to extend this license, or if I need to upgrade to the latest version of Iris.

Thanks!

3 条新评论
讨论 (3)3
登录或注册以继续