Question

Rule Process

  • 11 May 2020
  • 1 reply
  • 130 views

Userlevel 5
Badge +9

Can anyone please guide me how i can create a customized XML or input XML business rule where the execution point is Explicit Call.

In short i am trying to create a  (use defined or customized) business rule which will support explicit call (i.e without any DML kind of operations the business rule should execute).

Please provide me one sample data if possible.It will be very helpful for me.


1 reply

Userlevel 3
Badge +6

When your create any Business rule with execution point “Explicit call” , it means you are going to explicitly execute that BR under your  code . (There is specific technical syntax to execute the business rule).

 MetrixList<MetrixList<string>> ruleOutput = this.ExecuteExplicitBusinessProcess(rowIn, "CUSTOMBRXML");……

Here for example , CUSTOMBRXML is a custom XML business rule(can be XML or INPUT XML) where you need to execute. To get more understanding on these code , you must go through FSM technical training conducting  IFS Academy.

Reply