go to post Julian Matthews · Jul 2, 2019 That's odd - when I am using GetValueAt("DataSet.(0042,0011)"), it is returning a string and not a stream object.I have an open ticket with WRC to see what's going on. I'm 99% sure this is user error, but we'll see.
go to post Julian Matthews · Jun 19, 2019 I took a look at the error and it doesn't seem to be truncating at the linebreaks (which are represented as \.br\). I think your suggestion of a custom operation is going to be my best approach. Fingers crossed!
go to post Julian Matthews · Jun 6, 2019 Just as a note - I naively followed that link and got a warning from the WRC portal that I was attempting to access data that my organisation should not have access to, and that repeated attempts to access the link may suspend my WRC account.Whoops
go to post Julian Matthews · Jun 4, 2019 I'm not too sure if that would be the case, but it's something worth trying out to see how the system reacts.
go to post Julian Matthews · Jun 3, 2019 Hi Cedric.I think you should be able to achieve this using the routing rules by doing something like this: (Please ignore my blank condition in the example)It should complete the first send (which is your transform to A04) and then it should send your source ORM message on the second send.
go to post Julian Matthews · May 31, 2019 Hi Murillo.From that screenshot - an ORU_R01 should go to ManageRIS every time, and go to ManageEDM as well if the OrderStatus is 160, so I'm at a loss as to why it isn't working as intended.My next steps would be checking the general tab to be sure the rule type is set to "HL7 Message Routing Rule" or, if that fails, creating a new rule to make sure nothing has gone weird in the background for this specific rule.Otherwise - if no one else is able to point you in the right direction here it might be worth raising with WRC as it could be a weird bug with the version of Ensemble.
go to post Julian Matthews · May 31, 2019 Can you show me the current set of rules from your latest test?
go to post Julian Matthews · May 31, 2019 Hi Murillo.You will need a when to specify when the action should be triggered, and using WHEN 1 is the easiest way of achieving what you need, however I think I see your problem with the ordering.The reason why your rule only sends to ManageRIS when the ManageRIS item is above the OrderStatus check is because of the RETURN action.What the RETURN does is stop any actions beyond that point from being processed if the conditions of the WHEN are met. So in your case: When Orderstatus =160, transform and send, and then do not process anything else and move on to the next message.So what you will want to do is remove the RETURN block to allow the second WHEN in rule two to be run regardless of the outcome of the first WHEN.
go to post Julian Matthews · May 24, 2019 Just an FYI - you can used code as part of a DTL by adding a Code action:
go to post Julian Matthews · May 3, 2019 You might have some luck using wireshark to see if there's anything that stands out in the communication between Ensemble and the remote system?
go to post Julian Matthews · May 2, 2019 Within the Production under Production Settings, you should currently find a Document button which will produce a report of everything within your production. However, depending on the production size, this could easily be overkill.2019 brings a new option called "Interface Maps" where you can get a graphical view of message flows, along with the processes, routers, and rules for the individual sections of your production. It's a lot cleaner than using the Documentation generator, but if you're needing to show multiple routes, you're likely to want to go through each one and take a screenshot. I also found that where I have a router with lots of rules/transforms, I need to scroll the screen to see the bottom of the display.Information on this can be found here.
go to post Julian Matthews · May 1, 2019 I haven't come across anything built in as standard that would do this in itself, but I guess it's something you could create within your environment.I have something a bit similar, but the index is populated by a CSV received daily from another organisation, and then the process compares the HL7 messages against the index and sends if the patient is present in that table before sending.
go to post Julian Matthews · Apr 23, 2019 I had this exact issue last week, and this is how I got around it. For clarity, I wanted to pass the Dynamic Object from a process to an operation.I created my dynamic object within the Process, and then used the %ToJSON Method to put the JSON within a GlobalBinaryStream (which can be passed through the request).In the Operation, I then use the %FromJSON Method of DynamicAbstractObject to then have the Dynamic Object within the operation.
go to post Julian Matthews · Feb 21, 2019 I have to say, the documentation is very detailed with regards to mirroring. Here is a link.
go to post Julian Matthews · Feb 20, 2019 Hi Scott.I have just taken a look, and it doesn't seem to appear in anything I have (Highest being v2.7.1). Looking around online, ORU^R40 was apparently introduced in HL7 V2.8.
go to post Julian Matthews · Feb 19, 2019 Could you generate a message to your ens.alert (or equivalent) from the BO, and then immediately call ##class(Ens.Director).EnableConfigItem to disable the business process?
go to post Julian Matthews · Feb 18, 2019 Hi Andrew.I don't think the operation to a downstream system would be the appropriate place for adjusting the HL7 content.Using Transforms within a router will be the best approach for this, and while it might seem a little cumbersome creating a transform per message type you should be able to remove some of the leg work by using sub-transforms.For example; if you were looking to adjust the datestamp used in an admission date within a PV1, rather than complete the desired transform work in every message transform that contains a PV1, you create a sub-transform for the PV1 segment once and then reference this in your transform for each message type. If you then have additional changes required to the PV1 which is message specific (say, a change for an A01 but not an A02) you can then make this change in the message specific transformation.As far as transforming datetime in HL7, I have faced my share of faff when it comes to this with suppliers. The best approach from within the transforms is to use the built in ensemble utility function "ConvertDateTime" listed here.
go to post Julian Matthews · Jan 25, 2019 Just to add to this - I have had a play with this new function within the 2019 Preview release and it works really well.
go to post Julian Matthews · Jan 10, 2019 You might be hitting a hard limit on the performance of the hardware you're using. Are you able to add more resource and try again?