go to post Jeffrey Drumm · Oct 7, 2021 If you're attempting to determine whether the same value appears in a field for all repetitions of a given repeating segment, the ..RegexMatch() function, virtual document bracket syntax and an appropriately constructed regular expression should be able to handle this: EDIT: My original example included a caret ("^") as the regex begin string anchor, but it appears the RegexMatch() method forces the pattern the pattern to be begin and end anchored. In other words, the pattern supplied as the 2nd argument is automatically wrapped with "^" at the beginning and "$" at the end. You can add them if you like, but doing so doesn't change the behavior.
go to post Jeffrey Drumm · Oct 6, 2021 I would assume that @Jonathan Lent has a scheduled purge job in Task Manager; ISC ships HealthConnect with one (Ens.Util.Tasks.Purge) that can be configured for a retention period, along with a few other settings: If he's overriding the OnDelete method, I suppose it could be used to delete the on-disk file.
go to post Jeffrey Drumm · Oct 2, 2021 So, on re-reading your question and looking at your example, I'm wondering whether you really wish to check whether the fields are empty, or that they contain more than 1 character? A single character value isn't "empty" and your expression will return true if either field has zero or 1 character in it. If you're simply checking for a condition where both fields are empty, this is a solution: '(..Length(source.LABRSLTNUMRSLTVAL) && ..Length(source.TSTRLTVAL)) Or this, which is a bit closer to what you had come up with: '(..Length(source.LABRSLTNUMRSLTVAL)) && '(..Length(source.TSTRLTVAL)) A non-zero numeric return value evaluates to true, so no need to provide a comparison operator for the individual length checks.
go to post Jeffrey Drumm · Oct 2, 2021 Hi Ed, it appears to be the '>1 expression. Try using =0 instead, or perhaps <1. Syntactically the '>1 logical construct is valid, but to me seems unconventional when there's a single logical operator that performs the exact same function.
go to post Jeffrey Drumm · Oct 1, 2021 The EnsLib.* classes don't have inherent categories. You can certainly add a Category property to classes that you create, though.
go to post Jeffrey Drumm · Oct 1, 2021 Multiple Production Items will use the same class (for example, the HL7 TCP Services/Processes), and categories are a Production Item property. You would need to determine first which items are using that class, then get the categories from those items. Is that what you're looking to do?
go to post Jeffrey Drumm · Sep 27, 2021 The "easy" options indicated by the source code do some interesting things, but showing %IO* isn't among them. I'll keep looking
go to post Jeffrey Drumm · Sep 27, 2021 Is there a special trick to making %IO visible? Selecting the "Percent Classes" checkbox doesn't do it.
go to post Jeffrey Drumm · Sep 24, 2021 There's the Export() method in Security.Users ... %SYS> set sc=##class(Security.Users).Export("/path/to/exportfile.xml") Documentation is here.
go to post Jeffrey Drumm · Sep 24, 2021 Yes, in the %SYS namespace you can use the ^SECURITY utility. The export will be in XML format. USER> zn "%SYS" %SYS> d ^SECURITY 1) User setup 2) Role setup 3) Service setup 4) Resource setup 5) Application setup 6) Auditing setup 8) SSL configuration setup 9) Mobile phone service provider setup 10) OpenAM Identity Services setup 11) Encryption key setup 12) System parameter setup 13) X509 User setup 14) KMIP server setup 15) Exit Option? 1 1) Create user 2) Edit user 3) List users 4) Detailed list users 5) Delete user 6) Export users 7) Import users 8) Exit Option? 6
go to post Jeffrey Drumm · Sep 20, 2021 Assuming you have the service pointed in the right direction, there may be something wrong in either the configuration of the router or the rule itself. The relevant configuration details from the "General" tab of the rule: And a basic example of how you'd create a rule based on field criteria:
go to post Jeffrey Drumm · Sep 20, 2021 Hi Doug, If you're creating a Busness Process to route/translate RecordMap messages, you'll want to use EnsLib.MsgRouter.RoutingEngine as the BP class. It doesn't expect a document type, unlike the VDoc class. EDIT: I should have also mentioned that there's no need to select a document type for the RecordMap in the DTL editor, since they don't have one
go to post Jeffrey Drumm · Sep 18, 2021 Hey Doug, It's been a very long time :) So ... no, you don't need a complex record map to do this, but the mechanism takes just a little more work using a "simple" record map. The record map feature doesn't let you set a Composite field as repeating, which is why we need to deal with those "grouped" OBX segments/fields using a different method. What I've done is define the RecordMap with individual fields for everything before the first OBX field, and then define the rest of the record as a single, repeating field. You can then iterate over that last field and parse out the individual HL7 field values with $PIECE, or turn them into a $LIST and reference the elements by numeric index. The only delimiters you'll need to set for the record map are a "|" as the field delimiter and a "~" for the repetition delimiter. Here's a sample record map layout: Along with setting OBXSegs as repeating, I set the MAXLEN DataType parameter to something large enough to accommodate all of the fields. Also note the Discard field; the sample data in your post included a leading "|," so that needs to be treated as though there's an initial empty field in each record. Including a dummy field to consume it makes things a bit more understandable when addressing the subsequent fields. Here's one way you might iterate over the repeating record map field: As you surmised in a follow-up to Nora's earlier posts, the Complex Record Map functionality is really only required when the record structure varies from line to line in the input data.
go to post Jeffrey Drumm · Sep 7, 2021 Have you looked at the Default Char Encoding setting of the various HL7 operations?
go to post Jeffrey Drumm · Aug 25, 2021 It's not normally a property of the message header or body objects. You can often find the port number in the Source property of the Body, but not the IP address. To get that, you'll need to look at the Event Log for the service. It will look something like this: As for what you're doing wrong ... hard to say at this point; not much to go on. Does the connection complete successfully without restricting the allowed IP addresses?
go to post Jeffrey Drumm · Aug 25, 2021 I don't believe this is possible without assistance from the training team at InterSystems.
go to post Jeffrey Drumm · Aug 20, 2021 There are two steps to this ... the first is to open the file as a stream of type %Stream.FileBinary, the second is to use the EnsLib.HL7.Message method StoreFieldStreamBase64() to insert the stream into the desired field. EDIT: The links point to earlier versions of Ensemble's class methods but they're still valid.
go to post Jeffrey Drumm · Aug 18, 2021 Interesting that it works in the opposite direction: USER> w $zconvert("Flávio","I","HTML") Flávio