All time

Hi Developers,

We're super excited to share with you the new awesome functionality of the Online Analytics Dashboard for every Community member 🔥

From now on, you can see your own detailed statistics for the current week, month, and all time, including:

  • number of views, likes, comments, followers
  • timeline graphics of views, likes, actions with your posts, comments
  • a table containing info about views, comments, and likes for your every post

      11 1
      0 542
      InterSystems Developer Community is a community of 25,372 amazing developers
      We're a place where InterSystems IRIS programmers learn and share, stay up-to-date, grow together and have fun!
      Question
      · Mar 4, 2017
      Calculated Fields
      1. How can I create a calculated field to give the previous date. For example, I need to create a pivot table that shows total payments posted for the prior day.

      2. How to create a calculated field to show average daily collections divided by the number of the days passed in a month. So, for today, it would be the average daily collections divided by 4days.

      Thanks!

      0 3
      0 559

      in Management Portal on Freespace screen there are links to compact and truncate a database.

      Can these tasks be done programmatically? I have looked through documentation and dont see anything but I hope I just missed it.

      Thanks,

      David

      1 6
      1 555
      Question
      · Oct 9, 2022
      HTTP request with open stream

      Hi Guys,

      This link (https://github.com/CassiaNetworks/CassiaSDKGuide/blob/master/node_exampl...) uses Javascript request to open a a steam and collect data in an array (screenshot below) and I'm trying to replicate this with Cache script with HTTP request which is connecting Ok but don't know how can I collect data because the code is hanging at Set tSc=Httprequest.Get(HttpURL) and cannot execute S BLEConnect=Httprequest.HttpResponse.StatusLine or any line after it.

      0 9
      0 552

      Does anyone have experience with CircleCI or really any automation tool using %UnitTest?

      I have built my app and ran my unit test in a Docker container automated by CircleCI. However, after many of the tests failed I see:

      How do you halt out of the IRIS session and return an exit code to the shell?

      I have a script in my repo that I pass into IRIS after CircleCI does the code checkout

      iris session IRIS < inFile

      0 8
      0 553

      Hello everyone,

      I created a Class with this 3 properties

      Class TestDynamic Extends (%RegisteredObject, %XML.Adaptor)
      {
      
      Property number As %xsd.string;
      
      Property exam As %xsd.string;
      
      Property result As list Of %DynamicObject;
      
      }

      I'm adding objects to list normally

      set objTest=##class(TestDynamic).%New()
      set objDynamic={"field":"value"}
      do objTest.result.Insert(objDynamic)

      But when i use this method to convert to JSON

      0 7
      0 554

      Hi -

      I'm wondering if anyone has coded up a means to create an extension for a %Persistent class from a base class to a sub-class without making a ton of assumptions about the Global structure. I'm trying to create a new "extension" record that would have the same ID as the Base Class

      Class BaseRecord Extends %Persistent

      and

      Class SubRecord Extends BaseRecord

      where I would have an instance of a "BaseRecord" and I want to turn it into a "SubRecord" instance and have all of the existing references to the BaseRecord survive.

      0 7
      0 554

      I am trying to use Atelier against a 2016.1.1 server:

      Cache for UNIX (Apple Mac OS X for x86-64) 2016.1.1 (Build 108U) Wed Jul 6 2016 16:06:38 EDT [HealthShare Modules:Core:15.01.2136 + Linkage Engine:15.0.2136 + Patient Index:15.0.2136 + Clinical Viewer:15.01.2136 + Active Analytics:15.0.2136]

      I'm having trouble creating a connection and I realize I need to create the /api/atelier web application manually. I must not be setting it up correctly because I'm still having trouble connecting. I get an error when I test the connection that says:

      0 3
      0 558

      Hi

      I have been experimenting with the creation of a set of REST services for an app. The basic GET operation is set to create a %ZEN.proxyObject instance, and then set an instance of a Persistant class as a property, which gives me all of the values I want to return. However, it also gives me some values that I don't want to return over REST (because they are both private, and large registered objects which will bog down performance)

      2 3
      0 558

      Today, we take a moment to shine the spotlight on one of the true pillars of the InterSystems Developer Community, @Alberto Fuentes. His commitment, expertise, and enthusiasm have left an indelible mark on the Developer Community, and we couldn’t be more grateful. Alberto has been a part of the InterSystems ecosystem for over 15 years, starting his journey with InterSystems technology back in 2008. Since then, he has worn many hats, from integrating Ensemble at his previous job to officially joining InterSystems in 2011 and now holding the position of Sales Engineer. Over the years, he’s witnessed—and contributed to—some of the most significant milestones in the company’s history.

      🤩 Let’s dive into his remarkable journey!

      23 11
      0 340
      Question
      · Nov 5, 2021
      ERROR #9406

      I'm trying to send a POST request to my REST API and I'm getting this error and most likely due the lack of experience, I have no idea how to fix this issue:

      "error": "ERROR #9406: Unexpected format for value of field, AlertText, using class base mapping",

      "id": "JSONImportError",

      "params": [

      "AlertText",

      "class base"

      ]

      Am I missing something from my string definition?

      Defined below as:

      0 4
      0 556

      GA releases are now available for the first version (v1.0) of InterSystems System Alerting and Monitoring (InterSystems SAM for short)

      InterSystems SAM v1.0 provides a modern monitoring solution for InterSystems IRIS based products. It allows high-level views of clusters and single-node drilled down metrics-visualization together with alerts notifications. This first version provides visualization for more than one hundred InterSystems IRIS kernel metrics, and users can extend the default-supplied Grafana template to their liking.

      5 2
      0 520

      Hi,

      I need to route a message synchronously to multiple targets using a routing rule.

      In IRIS I built a general routing rule set, made up of a couple of rules. For one Rule in particular, and based on a common condition, I want to send the incoming message to 2 different targets. (no transformation is used)

      I can select, in the single SEND action, multiple target names, or, I can create consecutive SEND actions, one after the other, each sending to their specific target.

      1 1
      0 559

      I'm trying write a JavaScript generator to perform pattern match validations using existing pattern match expressions in a legacy application.

      I could make a server call to perform the pattern match operation but is there a way to automatically translate the pattern match expressions into RegEx expressions so I can perform the operation in JavaScript on the client to save making an Ajax call back to the server?

      Thanks

      Jay Ayliff

      M-Tech

      0 2
      0 558

      Is anyone using Atelier with 3 environments (instances with multiple namespaces) (DEV, TEST, PROD) using GitHub as the source control.

      I would be interested in how its all setup. So for example;

      Would you have three branches for the code or 3 repo's.

      Would you have three projects in Atelier to communicate with the environments and GitHub?

      I have 3 existing environments that I wish to put under source control and also provide the ability to promote code between the environments in a controlled manner.

      0 4
      0 556

      "SELECT %SYSTEM.SQL_TableExists('table name') "could work as expected under SQL shell,

      but for "CALL %SYSTEM.SQL_TableExists('table name')" does not work (not any error reported, it just show nothing).

      Is there any reason why CALL could not be applied to a stored procedure?

      Thanks.

      0 7
      0 553

      Hi, Community!

      We have a new release here!

      What has been introduced:

      1. Better notifications

      With this release I hope you will turn on back the email notifications because every new notification today in the beginning of itself will tell first, why did you get it describing the exact reason you got this particular notification. And if you don't want this type of notification to be delivered anymore click unsubscribe link in the notification and it will lead to the settings of this very type to alter.

      1 6
      0 440

      Currently, namespace Alpha is configured to use database AlphaDB as its global database. How would we go about having namespace Alpha configured to use database AlphaDB for its global database except where global ^Customers(CustomerId) has a CustomerId greater than 10M, which we would like to have it redirected to database BetaDB.

      In other words, ^|"AlphaDB"|Customers contains all customers between 1 and 10,000,000; and ^|"BetaDB"|Customers contains all customers greater than 10,000,000. Any help would be appreciated.

      0 4
      0 556