Nueva publicación

Encontrar

Anuncio
· 14 ene, 2025

InterSystems Benelux and France Summit 2025

Hello Community !

We are delighted to invite all our customers, partners and community members to participate in the InterSystems Benelux & France Summit 2025! The registration for the Summit 2025 is already open.

This event promises to be an interactive experience highlighting inspiring case studies, technological innovations and roadmaps for the coming year in the fields of healthcare and data platforms. Hands-on demonstrations will also allow you to explore the latest developments in a tangible way.

➡️ InterSystems Benelux & France Summit

🗓 Dates : February 11 - 12, 2025

📍 Place : Hilton Rotterdam | Weena 10 | 3012 CM Rotterdam | Netherlands

Image preview

Over several sessions, we will explore topics such as:

  • Healthcare standards such as FHIR and OMOP
  • Analytics and AI
  • GenAI and Vector Search
  • Python
  • ...and various other emerging technologies

We are confident that this event will be a remarkable start to the year. We would be delighted to have you there to enrich this event with your experience and expertise. Save the date and register today using our registration form.

We look forward to seeing you at the InterSystems Benelux & France Summit 2025!

1 Comentario
Comentarios (1)2
Inicie sesión o regístrese para continuar
Anuncio
· 14 ene, 2025

O que você aprenderá em 2025?

Olá, Comunidade!

Quais novos produtos ou tecnologias você quer experimentar em 2025? Defina suas metas para 2025 com esses principais recursos de aprendizagem.

Reach higher in 2025

 

🤖 Impulsione seus aplicativos com GenAI

🔥 Comece a usar FHIR

Procurando uma breve introdução ? 

☁ Experimente o HealthShare® Connect Cloud™ 

Comentarios (0)1
Inicie sesión o regístrese para continuar
Pregunta
· 14 ene, 2025

Trakcare/Clinical Viewer, making chart changes when only have LDAP users

I am hoping for some guidance.

I am new to creating a new chart in Trakcare for use with Clinical Viewer.  My organization only has LDAP users, (we don't have the ability to use local users), that dictate what role/group a user is in, they are all the same across our Prod, Test, and Dev environments. 

I need to customize a chart for our end users.  BUT the how-to's all talk about creating a custom role for the new chart, which if I do this I would have to be added to this role/group which could cause issues with my ability to work in Prod and Test.  Does anyone have any guidance on how to do this - and be able to work on the custom chart in DEV while not limiting my ability to work in Prod and Test?

Comentarios (0)1
Inicie sesión o regístrese para continuar
Anuncio
· 14 ene, 2025

[Video] Healthcare Use-Case: Portal de Menssagens do Paciente

Olá Comunidade!

Confira o novo vídeo dedicado à Gen AI em nosso InterSystems Developers YouTube:

⏯ Healthcare Use-Case: Patient Portal Messages

Explore um caso de uso em mensagens paciente-provedor, inspirado por um estudo da Vanderbilt University. O estudo aborda o volume esmagador de mensagens de pacientes usando IA para ajudar os pacientes a elaborar melhores mensagens iniciais. Um LLM gera perguntas de acompanhamento com base na primeira mensagem do paciente, garantindo que o provedor obtenha os detalhes necessários antecipadamente e reduzindo atrasos no atendimento.

🗣  Apresentador@Don Woodlock, Vice President, Healthcare Solutions Development, InterSystems

Divirta-se assistindo e aguarde mais vídeos! 👍

Comentarios (0)1
Inicie sesión o regístrese para continuar
Artículo
· 14 ene, 2025 Lectura de 2 min

Find Values from Text and Display

The utility returns the desired values from the text and display the multiple values if exists based on starting and ending string.

Class Test.Utility.FunctionSet Extends %RegisteredObject
{

/// W !,##class(Test.Utility.FunctionSet).ExtractValues("Some random text VALUE=12345; some other VALUE=2345; more text VALUE=345678;","VALUE=",";")
 

ClassMethod ExtractValues(text As %String, startStr As %String, endStr As %String) As %String
{    //Initialize Valriables
   Set values = ""
   Set start = 1
   
   While start '= 0 {
 Set start = $FIND(text, startStr, start)
 IF start = 0 QUIT }
     Set end = $FIND(text, endStr, start)
     IF end = 0 QUIT }
    //S value = $E(text, start, end-2)
     value = $E(text, start, end-$L(endStr)-1)
     IF values '= "" {
  Set values = values _" "_value   
     }Else {
  values = value   
     }
     start = end
   }
    values
} }

Output:

W !,##class(Test.Utility.FunctionSet).ExtractValues("Some random text VALUE=12345; some other VALUE=2345; more text VALUE=345678;","VALUE=",";")

12345 2345 345678

2 comentarios
Comentarios (2)1
Inicie sesión o regístrese para continuar