go to post Arun Tiriveedhi · Sep 15, 2021 Hi Jordan, Looking at the method implementation, the Remainder is being overwritten from the method. So your assignment before GetFieldStreamRaw() method call is not considered. Set Remainder="^^PDF" If you need to set the "^^PDF" at the end of the segment, I would set it before Storing the stream. Set tSC=OBX.SetValueAt("OBX",0) Set tSC=OBX.SetValueAt("RP",2) Set tSC=OBX.SetValueAt("PDF",5.4) Set tSC=OBX.StoreFieldStreamRaw(EmbeddedPDF,5.1,Remainder)
go to post Arun Tiriveedhi · May 13, 2021 We had a similar issue with the object insertion to a parent object. The way we were able to ensure the sequence, was saving the parent object on each insert. There is an overhead and not the most efficient process. Since we were saving the same object without closing it, no additional parents are created.
go to post Arun Tiriveedhi · Apr 1, 2021 Hi Yone, Hope this is not too late, can you try the following code, set NTE3Updated = ##class(EnsLib.HL7.Segment).UnescapeEx(NTE3String,"|^~\&") Regards, Arun
go to post Arun Tiriveedhi · Mar 10, 2021 Do you have Jobs per connection or Pool size set to more than one on the interface in Production.
go to post Arun Tiriveedhi · Mar 10, 2021 Use this syntax, HL7.[NTE:4] Contains "NAVIRADTHPT" This will look at all repetitions of NTEs.
go to post Arun Tiriveedhi · Aug 19, 2020 Hi Karthikeyan, From the code that you are running, the file you are providing, is being evaluated as a message file. Can you please provide the file name which doesn't start with a "." or not in the list of MAGICFILENAMES. Please refer to ##class(EnsLib.InteropTools.HL7.MessageAnalyzer.Workspace.FolderType).IsMessageFileName() for the name validation. Thanks,Arun
go to post Arun Tiriveedhi · Apr 7, 2020 Can you please check the Framing setting on the inbound Business Service. You might try setting it to Flexible or other option and see if it works for you.
go to post Arun Tiriveedhi · Mar 24, 2020 Hi Jack, We had used commitSegmentByPath for Huge HL7 related transformations. Can you try doing an intermediate %Save on the target object in the DTL using the <code> block. You can do this save multiple times, it will save as the same object. This might help you with some memory issues. The other method you might consider is the one below, found in the EnsLib.EDI.XML.Document (IRIS 2019.2). /// Switch from keeping changes in memory to keeping them in storage. Allows for unlimited changes to a document without running out of memory. This mode is automatically in effect when the object is created by loading from a stored IdMethod CommittedMode(pMode As %Boolean = 1) As %Status There might be other efficient ways. Please let me know what you find out. Thanks, Arun
go to post Arun Tiriveedhi · Mar 18, 2020 Hi Leon, This might be a bit far-fetched, but can you get a hold of the MessageDataTypes.xsd, from your screenshot. If you can, you might copy the content of the xsd into this local wsdl and remove the https link. This might alleviate the issue. This worked for me awhile ago, but for a xs:import. Thanks,Arun
go to post Arun Tiriveedhi · Mar 18, 2020 Hi Brad, In addition to Enrico's list, these are some of the settings and items I would be wary of. 1. Auto-start on the Productions. 2. Creating any Custom WebApplications in the new environment. These would be applicable if you Client is using SOAP and/or REST based interfaces and Custom web pages. 3. Resource, Role and Users creation/import from the old environment to the new. Please look at the below classes in the %SYS Namespace. a. Security.Rolesb. Security.Users 4. Once the backup is imported into the new environment, please, please do a compile of all the classes in all namespaces. a. zn "%SYS" b. do $system.OBJ.CompileAllNamespaces("u") c. do $system.OBJ.CompileAllNamespaces("ck") 5. And restart the new instance atleast a couple of times after the import and compile. This should clear any issues with the new installation and monitor the Console log for issues after the restart. 6. And I guess you are replicating the Database size limits from the old system to the new system. 7. Create Tasks in the Task Manager, after Tasks import. 8. Last but not the least, check with the Network Team if all the Vendors/source/destination application system routes have a S2S VPN connection setup or firewall ports opened. Hope this helps. Thanks, Arun
go to post Arun Tiriveedhi · Jan 20, 2020 Thanks for the tip Peter, this link might be helpful as well. https://community.intersystems.com/post/moving-code-between-iris-and-cach%C3%A9
go to post Arun Tiriveedhi · Jan 2, 2020 As Eduard said above, I would manually compile the classes in this order and restart the Web Service Object in Production (if added to one). AccountWS.tns.AccountNotificationAccountWS.Service.Notification.notifications Also, I would not suggest you to change the Authentication to Unauthenticated. This will allow anyone who has access to the Web Service URL to invoke the WebService.