go to post Jeffrey Drumm · Feb 8, 2019 I appear to be doing something wrong.EDIT: Nevermind. I guess Preview doesn't actually preview the final posting format ...
go to post Jeffrey Drumm · Feb 6, 2019 The answer above is significantly different from what I originally posted. the <foreach> action doesn't interpret a %List as a collection, so I went with an <until> instead. The condition for completion of the <until> is when the iterator equals the count of entries in the list (obtained by $LISTLENGTH()).
go to post Jeffrey Drumm · Feb 5, 2019 The conventional mechanism for generating multiple outbound messages from a single inbound is via a BPL. It can also be done in a custom BP using ObjectScript, and I've also seen it done using the rule editor (but wouldn't recommend it ... it's not exactly intuitive).In a BPL, you'd assign a context variable to the list of values extracted from ZCO:2 (using $LISTFROMSTRING()), then iterate over the list with an <until> action. You'll also need to create some other context variables for list length, iteration and element selection.Inside the <until> you would:Increment the iterator and obtain the current list value using <assign> actionsInvoke a DTL with a <transform> action that copies the relevant fields/segments from the source message to the targetIn the same DTL, use the current list iteration value to populate FT1:7.1Send the resulting message to the downstream Business Operation with a <call> action
go to post Jeffrey Drumm · Feb 4, 2019 Have you added the OnGetConnections() method I posted as an answer above to your BP?
go to post Jeffrey Drumm · Feb 4, 2019 @Nareev, you're correct when the BP is a BPL. I don't believe that's the case due to the fact that Stephen's BP has a TargetConfigName property. That's not normally generated when the BP is created as a BPL.
go to post Jeffrey Drumm · Feb 4, 2019 You'll need to override the OnGetConnections method by inserting the snippet below in your custom business process(es):ClassMethod OnGetConnections(Output pArray As %String, pItem As Ens.Config.Item) { Do ##super(.pArray,pItem) If pItem.GetModifiedSetting("TargetConfigName",.tValue) { For i=1:1:$L(tValue,",") { Set tOne=$ZStrip($P(tValue,",",i),"<>W") Continue:""=tOne Set pArray(tOne)="" } } }
go to post Jeffrey Drumm · Jan 29, 2019 Have you tried exporting the production from the Management Portal's Production Configuration | Production Settings | Actions tab, then deploying it to the Test environment through Ensemble | Manage | Deployment Changes | Deploy?
go to post Jeffrey Drumm · Jan 22, 2019 Your best option for doing this is to create a new HL7 TCPIP Service Class that extends EnsLib.HL7.Service.TCPService that overrides the OnConstructReply() Method. The example below includes the necessary code, along with the convenience of being able to adjust the MSH:7 date format by supporting the reconfiguration of the value of MSH7AckDateFormat in the Production's configuration panel for the service. It uses well-known strftime() formatting conventions.This works with Ensemble version 2017.2.1:Class HICG.HL7.Service.TCPService Extends EnsLib.HL7.Service.TCPService{/// Allows Customization of the date format used in the ACK's MSH:7 field. Uses C strftime() tokens to construct/// the date in the desired format. Default is HL7 date/time format, yyyyMMddhhmmss.Property MSH7AckDateFormat As %String [ InitialExpression = "%Y%m%d%H%M%S" ];Parameter SETTINGS = "MSH7AckDateFormat";Method OnConstructReply(Output pReplyDoc As EnsLib.EDI.Document, pOriginalDoc As EnsLib.EDI.Document, ByRef pReplyCode As %String, ByRef pSC As %Status, pEarlyAck As %Boolean) As %Status { Set pReplyDoc=pOriginalDoc.NewReplyDocument(,..LocalFacilityApplication) Set pReplyDoc.Source = pOriginalDoc.%Id() Do:..#UseOriginalControlId pReplyDoc.SetValueAt(pOriginalDoc.GetValueAt("1:10"),"1:10") Do pReplyDoc.SetValueAt(##class(Ens.Util.Time).ConvertDateTime($H,"%q(3)",..MSH7AckDateFormat),"1:7") Set tMSA=##class(EnsLib.HL7.Segment).%New($LB("",1)) Set tMSA.Separators=pReplyDoc.Separators Do tMSA.SetValueAt("MSA",0) Do tMSA.SetValueAt(pReplyCode,1) Do tMSA.SetValueAt(pOriginalDoc.GetValueAt("1:10"),2) Do:$G($$$ExpectedSequenceNumber) tMSA.SetValueAt($$$ExpectedSequenceNumber,4) Do pReplyDoc.AppendSegment(tMSA) Set pReplyDoc.IsMutable = 0 Quit $$$OK }}
go to post Jeffrey Drumm · Dec 14, 2018 There's also the ^DATABASE routine in %SYS for creating databases, but it provides no options for creating/managing namespaces.%SYS>d ^DATABASE 1) Create a database 2) Edit a database 3) List databases 4) Delete a database 5) Mount a database 6) Dismount a database 7) Compact globals in a database 8) Show free space for a database 9) Show details for a database10) Recreate a database11) Manage database encryption12) Return unused space for a database13) Compact free space in a database14) Defragment globals in a database
go to post Jeffrey Drumm · Aug 3, 2018 It's possible that a proxy is in use for web access. Browsers can generally auto-discover and configure for those, but other web clients can't ... at least most of the time.
go to post Jeffrey Drumm · Aug 2, 2018 Does it happen if she logs into the management portal as herself from another workstation? Have you tried starting her browser(s) in Safe mode (no add-ins/plug-ins loaded)? Have you cleared the browser's cookies and cache? Disabled anti-virus? Is it possible that she has JavaScript disabled?
go to post Jeffrey Drumm · Jul 10, 2018 If you're really set on using the ? notation for pattern matching, see the "ObjectScript Pattern Matching" section of the documentation. In the pattern field of the Match function in the expression editor, you would enter the pattern without a leading question mark. For example, you can use the string ".A" to match any number of upper or lowercase characters, or ".AP" to match any number of upper/lowercase and punctuation characters.
go to post Jeffrey Drumm · Jul 10, 2018 the Matches method uses the ? (question mark) syntax for pattern matching, not regular expressions. I much prefer the latter ...
go to post Jeffrey Drumm · Jul 9, 2018 If you expect to be using regular expressions frequently, it might be worth your while to write a classmethod that extends Ens.Rule.FunctionSet and wraps $MATCH or $LOCATE in something that can be called from a business rule (or DTL for that matter)./// Custom methods for business rules and DTLsClass User.Rule.FunctionSet Extends Ens.Rule.FunctionSet{/// Accepts a string <var>pString</var> and regular expression pattern <var>pPattern</var>/// as arguments; returns 0 for no match, and a positive integer indicating the match's /// position if there is a match.ClassMethod REMatch(pString As %String, pPattern As %String) As %Integer { Return $LOCATE(pString,pPattern) }}You could use $MATCH instead of $LOCATE in the method above, but $MATCH() assumes the supplied pattern is begin- and end-anchored. In other words, $LOCATE("this","is") returns the positive integer 3, which for all Cache boolean purposes evaluates as true. $MATCH("this","is") returns 0 (false) since "^is$" does not match "this".If the class you create extends Ens.Rule.FunctionSet and resides in your production's namespace, it will be selectable from the function dropdown list in both the Business Rule and DTL expression editors.
go to post Jeffrey Drumm · Jul 9, 2018 Three possibilities:Caché wasn't installed to run as cacheusra second, administrative group was created for performing start/stop operations and users will need to be added to that instead (see @Katherine Reid's comments)Someone jiggered the permissions for the binaries in <installdir>/bin; those will need to be fixed
go to post Jeffrey Drumm · Jul 1, 2018 When you say you can't telnet from your machine, do you mean that you don't have a telnet client installed and/or cannot install one?Are you connecting to the server via a local LAN connection or through a VPN? There may be port-range restrictions for non-local IP addresses in the VPN server's configuration. Even if you're not using a VPN client to connect, there may be a firewall between your location and the server's location that filters traffic based on source network and/or destination port. Finally, there may be similar rules in the Caché host's internal firewall that could impact connections from specific local networks or hosts. This would explain why an Atelier connection works but a Studio connection does not.It's also possible that your workstation's firewall/anti-virus may be blocking outbound traffic on specific ports or port ranges. If it's so locked down that you can't install a telnet client to test with, I wouldn't be surprised if this was the case.
go to post Jeffrey Drumm · Jun 21, 2018 What's the use case for this data? What sort of system(s) will it be delivered to? Have you discussed with their vendors how this data might be digested by the downstream applications?
go to post Jeffrey Drumm · Jun 15, 2018 Great!One caveat, though (and not exclusive to the method you're using): If you're using the Source property as the ComponentName argument, it will contain "Ens.MonitorService" for events such as Queue Wait Alerts.I inherited a rule where Source was used heavily for alert routing decisions, and worked around it by creating a rule that assigns the Ens.AlertRequest property SourceConfigName to Source early in the rule.
go to post Jeffrey Drumm · Jun 14, 2018 You could write custom methods that query the source config item's properties for those values and call them from your routing rules. However, a more supportable solution would be to implement managed alerts, which will make those properties directly accessible to you in the Ens.Alerting.NotificationRequest object that's created from the Alert Manager business process.See Configuring Alert Management in the documentation.
go to post Jeffrey Drumm · Jun 14, 2018 If your'e sure a result set of no more than 1 row will be returned, just call the %Next() method of the Snapshot object. That'll position the cursor on the first (and, hopefully only) row.