go to post Luis Angel Pére... · Dec 21 But a batch update will be more real time than a loop and multiple updates.
go to post Luis Angel Pére... · Dec 21 Why don't you modify your query to execute just one massive SQL? An update with the select in the where.
go to post Luis Angel Pére... · Dec 15 I guess that you are using a Enslib.HL7.Service that uses EnsLib.File.InboundAdapter as Adapter. The problem is that the name of the file is not a property of Enslib.HL7.Message class, so you have to follow these steps: Create your own service that extends to Enslib.HL7.Service. Overwritte OnProcessInput process to get the name of the readed stream: Set tFileName=pInput.Attributes("Filename") set sessionID = $$$JobSessionId set ^GlobalName("Session", sessionID) = tFileName do ##super() From DTL use code to get the global that you created before getting the ID session from Enslib.HL7.Message and assign it to MSH property: Set globalValue = $GET(^GlobalName("Session", sessionID)) And finally assign globalValue variable to the MSH propery (using SET from the DTL): target.{MSH.PropertyName} = globalValue
go to post Luis Angel Pére... · Oct 10 I saw this in a film...a self-consciousness IA that take a nap...or it was the world? Anyway, John Connor will save us.
go to post Luis Angel Pére... · Oct 2 You could create your own adapter based using Embedded Python. Here you can find an example of connection with Python and here an example of a similar adapter that I created for connection with Firebase.
go to post Luis Angel Pére... · Oct 2 You could create your own adapter based using Embedded Python. Here you can find an example of connection with Python and here an example of a similar adapter that I created for connection with Firebase.
go to post Luis Angel Pére... · Oct 2 I'm not very sure that you should extend EnsLib.REST.Service to define a REST service with URLMap, but anyway, EnsLib.REST.Service is using EnsLib.HTTPInbound.Adapter so you can get the input data from OnProcessInput like this: Method OnProcessInput(pInput As %GlobalCharacterStream, Output pOutput As %RegisteredObject) As %Status { set authorization = pInput.Attributes("authorization") ... Here is the doc related: https://docs.intersystems.com/healthconnect20251/csp/docbook/DocBook.UI....
go to post Luis Angel Pére... · Sep 30 If the class of the message extends Ens.Request you can send whatever you want. To validate the class of the message you only need $CLASSNAME method.
go to post Luis Angel Pére... · Aug 26 Went to the sea or a lake ❎ Hiked/enjoyed nature ✅ Traveled somewhere new ❎ Attended a concert or festival ✅ Watched a movie or series ✅ Read a book ✅ Earned points and redeemed a reward on Global Masters 🏆 ✅ Joined READY 2025 🎉❎ Spent time with family or friends ✅
go to post Luis Angel Pére... · Aug 1 Hi @Vishal Pallerla! %iFind index cover different type of searchs, you can find here all the conditions. For your example the search LIKE '%example%' is equivalent to: %ID %FIND search_index(IndexTitulo, '*example*') And it should return exactly the same number of matches.
go to post Luis Angel Pére... · Jun 24 https://es.community.intersystems.com/post/convertir-c%C3%B3digo-de-zona...
go to post Luis Angel Pére... · Jun 23 Hi @Yone Moreno ! Could you paste the metadata from your DICOM message, something like this: Maybe you CommandField value isn't a C-STORE operation.