Question
· May 27, 2021

Business process pointing to operation, can't discover the reason why

Hello,

I'm quite new at InterSystems. I have a business process that's pointing two different business operations, but one of them I don't want it to point to.

I went through the FileSystem settings, data transformations, classes, and code to see what it could be, but I don't see why its connecting to this second operation. 

What other inner-system mechanics would I need to consider? What have might I have missed? 

Product version: IRIS 2020.4
Discussion (6)0
Log in or sign up to continue

If you're talking about drawn connections:

They are defined in OnGetConnections method, check what does it do:

/// Return an array of connections for drawing lines on the config diagram
ClassMethod OnGetConnections(Output pArray As %String, pItem As Ens.Config.Item)
{
}

That said, the drawn connections and this method are just visual docs. Developers are expected to provide this method and keep it relevant but in no way are they beholden to do it.

The only way to know what does any BH do is to go through the code or visual trace.

 Vic Sun

Here's a screenshot, I blacked out company-related info

I just want process.BPL.Momentum to connect to bo.MomentumOperation, not Qure4uSQL

It's disabled at the moment, but even still the drawn line still implies some kind of underlying connection to the qure4u operation doesn't it? 

I'm not exactly sure what you mean when you ask what kind of business process it is.