New post

Find

Announcement
· Dec 3, 2024

[Video] Use cases in generative AI

Hi Community!

Ceck out the new video dedicated to Gen AI on our InterSystems Developers YouTube:

⏯ Use cases in generative AI

In this Code to Care video, we explore how to prioritize generative AI use cases using a simple 2x2 framework that evaluates value (high/low) and risk (high/low). Inspired by Peter Durlach from Microsoft Nuance, the model helps identify which projects to tackle first.

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

Enjoy watching, and look forward to more videos! 👍

Discussion (0)1
Log in or sign up to continue
Announcement
· Dec 3, 2024

Ajude o Learning Services a melhorar

Olá a todos:

Estamos felizes em convidá-los a participar da nossa Pesquisa de Serviços de Aprendizagem de 2024! 2024 Learning Services Survey

Como você pode ajudar?
Take the Survey:Participe da pesquisa: leva apenas alguns minutos para concluir!
Espalhe a palavra: compartilhe esta pesquisa com seus clientes para nos ajudar a atingir um público mais amplo.

O que há para você?
Compartilhe seu feedback para nos ajudar a melhorar os cursos, a documentação e as certificações — sua contribuição é essencial para atender melhor às suas necessidades e às de nossos clientes.

Obrigado pelo seu tempo e apoio na formação do futuro dos Serviços de Aprendizagem.

Atenciosamente,

Janine

 

 

 

Hello All:

 

We’re excited to invite you to participate in our 2024 Learning Services Survey

 

How Can You Help?

  1. Take the Survey: It only takes a few minutes to complete!
  2. Spread the Word: Share this survey with your customers to help us reach a broader audience.

 

What’s in it for you?

Share your feedback to help us improve courses, documentation, and certifications—your input is key to better meeting your needs and those of our customers.

 

Thank you for your time and support in shaping the future of Learning Services.

 

Best,

Janine

 

Discussion (0)1
Log in or sign up to continue
Announcement
· Dec 3, 2024

Global Masters - Holiday Rewards

Hi Community!  We’ve added some new rewards on Global Masters — just in time for the holiday season!
Take a moment to explore the Rewards section and see what’s new 🎅

 

Not a Global Masters member yet? Join here using your InterSystems SSO credentials.

8 Comments
Discussion (8)4
Log in or sign up to continue
Article
· Dec 3, 2024 1m read

Como criar um anúncio de emprego na Comunidade de Desenvolvedores

Olá Membros!

Nós sabemos que há vezes em que vocês buscam um novo membro para a equipe. Então aqui está um breve tutorial sobre como você pode publicar suas oportunidades de trabalho na Comunidade para atrair os melhores funcionários!

Primeiro, você precisa adicionar uma tag Oportunidade de Trabalho

Depois de adicionar essa tag à sua publicação, você verá novos campos para preencher, alguns dos quais são obrigatórios:

Não se esqueça de adicionar mais dados, como requisitos, responsabilidades, experiência, horas de trabalho, como aplicar, etc.

E é isso! Após a publicação ser enviada, as informações estarão estruturadas no topo:

Boa sorte e use bem!

Discussion (0)1
Log in or sign up to continue
Question
· Dec 3, 2024

Project objects to XML - flatten a property collection

I'm attempting to build a fairly complicated object graph, with nested objects and collections, in order to create a FHIR bundle.

In its most basic form there is a <bundle></bundle> element that represents the root, and there can be a number of nested <entry></entry> child elements.

I'm attempting to represent this as such:

class Bundle (%RegisteredObject, %XML.Adaptor)
{
    Property Entries As List Of Entry;
}

The problem is when this is projected it nests each Entry object within an Entries container, which makes sense but I don't want this. Is there a way to "flatten" or ignore the container? I can't find anything in the docs relating to this, nor any parameter values that would achieve it.

The XML should look like this instead:

<Bundle>
    <Entry>
        ...
    </Entry>
    <Entry>
        ...
    </Entry>
    <Entry>
        ...
    </Entry>
</Bundle>
8 Comments
Discussion (8)3
Log in or sign up to continue