Questions tagged [business-rules]

A business rule is a statement that describes a business policy or procedure. Business logic describes the sequence of operations that is associated with data in a database to carry out the rule.

A business rules engine works by separating execution code for business rules from the rest of the business process management system. This allows the end user to change business rules without having to ask a programmer for help. When a change is made, the engine will evaluate the change's effect on other rules in the system and flag the user if there is a conflict. Business Rules Model

497 questions
0
votes
1 answer

Unable to configure server for deploying rules using IBM ODM

I followed this YouTube video https://www.youtube.com/watch?v=dIJ-VLkuw0s at 10:15 min, they have added "http://localhost:9080/res" as server URL when I tried the same , I got below error The location "http://localhost::9080/" is not a valid file…
Waageesh
  • 17
  • 5
0
votes
1 answer

Help with Business Rule

I have a nodeset that contains various number of nodes with unique values. I want the rule to fire if the nodeset contains nodes with some of the possible values. Example: Instance containing a nodeset with one node with Y=1 AND another node with…
Martin Bring
  • 1,176
  • 1
  • 7
  • 17
0
votes
0 answers

Parsing in Excel

Need to parse the strings in excel with a single formula which has different patterns and rules listed below Any . or space within a name was considered to be a delimiter. For example the full employee name of ‘A.B.C Bobby’ was considered to have…
msv
  • 15
  • 3
0
votes
1 answer

Doe Code Effect Rule Engine work persisted data?

Hello I stumbled into the Code Effects. The idea behind is very interesting to me, especially the Rule Editor. Would the engine work with the data that is already saved to a database through entity classes (referred as source objects in Code…
John
  • 691
  • 1
  • 8
  • 23
0
votes
0 answers

How to Dockerize CodeEffects Rules Engine Angular Implementation

We are using CodeEffects Rules Engine with Angular Implementation and trying to dockerize the application. But the build is throwing an exception; need help from this group in resolving the error. Below is my docker script and also attaching the…
user12133234
  • 371
  • 2
  • 5
  • 15
0
votes
1 answer

Create Contactor with paramater for ExternalAction

How I can create Contactor in code effect for ExternalAction , I have this code [ExternalAction(typeof(Service), "SendEmail")] And I want send email when success Evaluate but without write send code in SendEmail, I want use call interface to send…
Sam
  • 1
0
votes
1 answer

Is there a way to write nested if based on calculation in Codeeffects editor?

I have to create a business rule for the below set of conditions, due to the limitation of nested-if I am unable to write the below rule. Could you please suggest a workaround for the below scenario? please note that these numeric values could be…
0
votes
0 answers

HtmlHelper does not contain a definition for CodeEffects

I copy code from project to another project to use it in our project but I face issue in view , I get this error 'HtmlHelper' does not contain a definition for 'CodeEffects' and no accessible extension method 'CodeEffects' accepting a…
Satish
  • 1
  • 1
0
votes
1 answer

Using Ajax API for codeeffects

Can I using API restful to EvaluateRule without send ruleData, I want send objectVM in post API and loop in list of rules, without pass ruleData in API [HttpPost] public ActionResult EvaluateRule(Patient patient) { …
Sara
  • 1
0
votes
1 answer

Dynamic list as parameter in Action

How I can create Dynamic list as parameter in Action to use it in function after then [Action("Send Email", "Send Email")] public void SendEmail(CaseRequest caserequest, [Parameter(ValueInputType.User, Description = "Output message")]…
Sara
  • 1
0
votes
1 answer

Why does this Drools scenario cause an infinite loop?

I'm working on writing a rule set in Drools and the following situation causes an infinite loop by retriggering the rule: rule "My Rule" when a1:ObjectA() b1:ObjectB(field1 > 0 || a1.field1 in (1,2,3)) ObjectB(field2 >…
0
votes
0 answers

BizTalk Rule Composer does not update rules after adding new vocabularies

I inherited a BizTalk application that is using Rule Composer to set up policies. I introduced new vocabularies and added new rules, however the new rules does not take effect after deploying the policies to BizTalk. I can see that the old…
Mindan
  • 979
  • 6
  • 17
  • 37
0
votes
1 answer

Drools check if one property from list is present in other list

I have got followed structure: public class Proposal { private final List products; private final List customers; } public class Customer { private String id; private String country; } public class Product { …
Łukasz Woźniczka
  • 1,625
  • 3
  • 28
  • 51
0
votes
0 answers

Does drools-6.5 has backward compatibility of drools-2.5?

We are using drools-decisiontables-2.1.jar to generate XMLs from Rulesheets(.XLS file). And, using drools-core-2.5 version to read those XMLs. Now, we are upgrading from weblogic11g/Java6 to weblogic12c/Java8 and drools-2.5 is failing. JARs used in…
tbaveja
  • 76
  • 11
0
votes
1 answer

How could I set a dynamic message through Rule editor?

I need to set a dynamic message based on the parameter fields value in the rule editor. for e.g If A < B or A > C then set Message to A value should be in between C and D