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
go to post Jeffrey Drumm · Aug 15, 2021 Put them in a separate production and namespace that is restricted to only users with the proper role/resource assignments. There is no built-in mechanism to restrict visibility below the production/namespace level.
go to post Jeffrey Drumm · Aug 13, 2021 If you don't care about any unsent/completed/suspended messages, try calling the CleanProduction() method in class Ens.Director: Do ##class(Ens.Director).CleanProduction() This is strongly discouraged for PROD environments ... be forewarned. Would recommend you contact the WRC if you're getting this error in a PROD environment.
go to post Jeffrey Drumm · Aug 13, 2021 Giving them only the %EnsRole_Operator role will prevent them from making configuration changes to the production. And if they aren't assigned the database resource (%DB_<databasename>), they won't be able to start or stop the production either.
go to post Jeffrey Drumm · Aug 9, 2021 If the message text is displayed in black, it's most likely that the message does not conform to the document type selected in the inbound service.
go to post Jeffrey Drumm · Aug 8, 2021 In the %SYS namespace: %SYS>Set ^%SYS("Portal","EnableAutoRefresh")=1 That will reveal the radio buttons that allow you to turn on/off Auto Refresh. Setting that global to 0 actually has the same effect as clicking the Off button, but eliminates the ability to turn it back on via the management console.