検索

お知らせ
· 58分 前

[Demo Video] Autonomous Business intelligent Clerk (ABiC) - Combining InterSystems BI and Generative AI

#InterSystems Demo Games entry


⏯️ Autonomous Business Intelligent Clerk (ABiC) - Combining InterSystems BI and Generative AI

Our Autonomous Business Intelligent Clerk, or ABiC for short, is a prototype revolutionizing how companies process data and make decisions. Normally, to get insights from data, you’d need IT knowledge or expertise in statistics. But with ABiC, that’s no longer necessary. All you have to do is ask your question in plain language. ABiC understands your interests and intentions, then shows a clear dashboard to guide your decisions. With ABiC, complex data is autonomously analyzed and turned into answers that support users, helping to accelerate business processes. This demo sends the metadata of InterSystems BI cubes to LLM. How does it work? Check out the video for more details!

Presenters:
🗣 @Tomo Okuyama, Sales Engineer, InterSystems
🗣 @Nobuyuki Hata, Sales Engineer, InterSystems
🗣 @Tomoko Furuzono, Sales Engineer, InterSystems
🗣 @Mihoko Iijima, Training Sales Engineer, InterSystems

🔗  Check out the related app: ABiC

👉 Like this demo? Support the team by voting for it in the Demo Games!

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

Verão 2025 comGlobal Masters

O verão está acabando, e temos certeza de que você teve muitos momentos especiais!  ✨

Talvez você tenha aprendido algo valioso, resgatado uma recompensa no Global Masters, ou até mesmo se juntado ao READY 2025 🎉

Aqui está uma lista rápida, mas, claro, você pode compartilhar qualquer outra coisa sobre seu verão nos comentários. Fotos são mais do que bem-vindas 📸

  • Fui para o mar ou um lago
  • Fiz trilha/apreciei a natureza
  • Viajei para um lugar novo
  • Fui a um show ou festival
  • Assisti a um filme ou série
  • Li um livro
  • Ganhei pontos e resgatei uma recompensa no Global Masters 🏆
  • Participei do READY 2025 🎉
  • Passei tempo com a família ou amigos

Esperamos que seu verão tenha sido incrível. Mal podemos esperar para ver suas histórias e fotos, se quiser compartilhar. Nós começamos primeiro! 🌟



P.S. Seu comentário será premiado automaticamente com 30 pontos no Global Masters.

ディスカッション (0)1
続けるにはログインするか新規登録を行ってください
記事
· 5 hr 前 4m read

How to install Third Party Components for Documents App in Clinical Viewer

Disclaimer: the following tutorial attempts to install qpdf-12.2.0 and libreoffice-25.2.5 for HSCV2025.2

ディスカッション (0)1
続けるにはログインするか新規登録を行ってください
記事
· 6 hr 前 1m read

Prevent specific table data from being rolled back

InterSystems FAQ rubric

There is data, such as execution log data, that you do not want to return to its previous state even if a rollback occurs during a transaction. The above requirement can be met by placing that data in the IRISTEMP database, which will not be rolled back.

Temporary Globals and the IRISTEMP Database

By mapping the table entities you do not want to roll back to this database, you can retain the information after the rollback.

However, the contents of this database will be cleared when IRIS is restarted, so if you want to keep it permanently, you will need to copy it to a permanent table at some point (after a rollback, etc.).

Alternatively, you can make a table operation non-transactional by stopping journaling for the process before the operation and then restarting journaling after the operation is complete.

However, this method cannot be used when using mirroring.

Managing journaling at the process level with %NOJRN

Developer Community Article

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

Using a Linked Table (SQL) as a Filter in a Business Rule

I had a need for a Filter, but did not want to recreate the wheel by creating another Data Lookup Table, so instead I created a Linked Table that points to a MS SQL Table outside of IRIS.

Once I had the Linked Table, I created a Class Method Function that would query the Linked Table and return a 1 if a result came back.

ClassMethod CheckPDMProviderType(pInput As %String) As %Boolean
{
    set ExtDisplay = ""
 		&sql(SELECT SecurityGroup_k INTO :ExtDisplay
        FROM osuwmc_CPD_SQL.Ref_SecurityGroup WHERE PDMExtDisplay = 1 AND SecurityGroup_k = :pInput)
    if ExtDisplay = "" {
        quit 0
    }
    quit 1
}

However, it doesn't seem like the Results of the Class Method are coming back correctly 100% of the time.

Is there an easier way to use the Linked Table to filter within a Business Rule? Are we able to project Linked Tables to Data Lookup Tables?

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