Question Sehinde Raji · Dec 29, 2021 Exploring Native API for Node.js confusing documentation do not know where to create new directory I am a newbie who is trying to learn how to set up a basic connection to Iris using a node js application. I am astounded at the lack of documentation there is on how to do this and even more concerning there are a few errors within the documentation. For example I am on the Native API application within the below link. https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls... #Node.js #ODBC #InterSystems IRIS 0 5 0 283
Question Sehinde Raji · Dec 6, 2021 Node JS for InterSystems IRIS Newbie I am currently running a docker image with Iris 2021.1 and I would like to install node js on to it. I have had a look at the instructions on the intersystems online learning portal and I must say its very confusing. Some of the documentation says that you can only install it on 2019. Other parts say that it doesn't matter and you can install it if you have a dev directory. I checked my dev directory and there it isn't there. Sadly this is very inconsistent. Does anyone know if it is possible to install on the above mentioned version of Iris ? #Node.js #InterSystems IRIS #InterSystems IRIS for Health 0 3 0 541
Question Sehinde Raji · Nov 26, 2021 Latest IS Docker Image unable to locate HL7 service ? I am a newb and I can't seem to find the HL7 Service name down below #Docker #InterSystems IRIS 0 4 0 205
Question Sehinde Raji · Aug 21, 2021 Unable to get user defined function to work (set occupiedseatsAdj=$$occupiedseatsAdj(.initialArr,.loc,.row produces error <NOLINE>There has been an attempt to refer to a nonexistent routine line.) Hey everyone as you may know I am a beginner and I am kindly asking for some assistance in a problem I have been solving. The problem is that I am calling a user defined function within a procedure called occupiedseatsAdj and the compiler comes up with this error. #Code Snippet #Error Handling #ObjectScript #InterSystems IRIS 0 2 0 229
Question Sehinde Raji · Aug 13, 2021 How to handle null values within a list Hi All I am a beginner and I am learning Objectscript and I would appreciate a steer regarding a problem I am solving. The issue I have spent some time on resolving without success is that I have the stream listed below and as you can see it has some gaps in it. Stream das is wp dsa nmk Here is the import method #Beginner #ObjectScript #InterSystems IRIS 0 6 0 503
Question Sehinde Raji · Aug 5, 2021 Conversion of a variable from Binary in to Decimal I have been working within Objectscript for a few months and I am seeking assistance today because all of the help files within the docs.intersystems.com domain are currently down and they wont be back up until next week. (I raised a special ticket for this) #Development Environment #ObjectScript #InterSystems IRIS 0 6 0 435
Question Sehinde Raji · Jun 8, 2021 How do I save the value in obj.%Size() to a variable ? Hi all, I am new to IS Objectscript and I would appreciate some assistance regarding this. I am trying to find out how to count the number of elements within a dynamic abstract object and I am having some trouble using the size method. Here is the code below: The key value pairs are originally in JSON and I would have converted it in to an object for use. #Beginner #Code Snippet #JSON #ObjectScript #InterSystems IRIS 0 7 0 344
Question Sehinde Raji · May 21, 2021 How to extract numbers from a numerical stream using Cache Objectscript Hey I am very new to Intersystems Objectscript and I am trying to find a way of extract 4 digit numbers from a stream. I have a stream full of results 2334 3434 5543 4334 And I am trying to remove each 4 digit grouping from the stream. I have tried the following for loop for i=1:1:$length(result) { set curr = $extract(result, i) write !, curr set count(curr) = $get(count(curr)) + 1 } Unfortunately the loop extracts one digit. #Beginner #Languages #ObjectScript #InterSystems IRIS 0 6 0 435