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

RTS synchronization disables the BOM in ILOG Jrules

I synchronized my rule project with a rule team server in another machine. Then checked out the rule project from another machine from the RTS. I added a new member to the BOM from my second machine. Then synched it to the RTS. Now coming to my…
Tito
  • 8,894
  • 12
  • 52
  • 86
0
votes
2 answers

How to pass a collection from a rule to a java method

I have a collection of Type Cars which I need to pass from the ILOG Jrules to my Java evaluation method. My Java evaluation method can accept an Object, so a collection can be accepted. I need to process the collection of cars in my Java XOM and…
Tito
  • 8,894
  • 12
  • 52
  • 86
0
votes
2 answers

using static declaring in ilog jrules java xom model

In my java pojo XOM model , I have a static variable say count.I am executing 5 rules and it is increasing the count variable by one. So in the end of the execution I have value as count = 5 . Now if I declare a non static variable count and…
Tito
  • 8,894
  • 12
  • 52
  • 86
-1
votes
1 answer

Stop duplicate input (scanner & arrays)

I'm fairly new at programming. Currently im working on a uni project to create a basic text game using java. The problem im having is trying to figure out how to implement a business rule that does not allow a user to enter the same name. I have it…
Pearse
  • 1
  • 1
-1
votes
1 answer

Question: Can you perform contains operations on a global variable of type list in Drools

i was wondering if i can perform a contains operation on the left hand side (LHS) on a drools rule. Something of the sort: global java.util.List myGlobalList; dialect "mvel" rule "checker" when Task() from myGlobalList then …
Alex Vulchev
  • 201
  • 1
  • 2
  • 15
-1
votes
1 answer

Using ANTLR4 to create functions with no argument

I am still new to ANTLR4 and I am trying to achieve the following I have business rules which consist of logical operation (A= 'text' or B < 1) and getDataDB the function getDataDB does not take any argument. the function will retrieve some data…
OceanWavez
  • 291
  • 1
  • 2
  • 10
-1
votes
1 answer

platform agnostic rules or workflow engine

I have a requirement to use the platform agnostic rules engine which needs to run with my java and .net application. In both the windows and linux platform. Do we have any opensource/commercial rules engine. Can someone share some experiences on…
-1
votes
2 answers

How to enforce a business rule across database tables?

I am working on this BANK MANAGEMENT SYSTEM database project (oracle) on sql developer and I have made some progress but I am stuck at this minor problem The problem: I have a table of employee with employee id as primary key and in that table there…
-1
votes
1 answer

Free "Business Rules" tools?

I have been tasked with capturing the Business Rules in an legacy program that my company uses a lot. As I was about to start, I fired up Excel and started typing. It took only a very short time to realize that it would be better if there were a…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
-1
votes
3 answers

How to apply business rule in DTOs DDD

I need to apply business rules in a DTO, but this DTO has properties of N entities. I wanted to know the correct way to validate this DTO.
Wilson Santos
  • 105
  • 1
  • 6
-1
votes
1 answer

Is Ilog Jrules a opensource software?

Is Ilog Jrules a opensource software? If yes, can I please know the installation process of Rules Studio and Rules Execution server . I intend to use the eclipse plugin to have Rules Studio to develop business rules. If no, what can be the…
vinr
  • 25
  • 1
  • 10
-1
votes
2 answers

Throwing exceptions vs. catching exception

I am working on re-writing a business layer for one of the apps in company. For now, the business layer will interface directly with the web client. But in the future, it will be encapsulated with service interfaces and will be consumed by the…
Skadoosh
  • 2,575
  • 8
  • 40
  • 53
-1
votes
1 answer

Revise database design of Inventory business due fluctuation cost

I had some sort of IT backgrounds with less-more economic and management understandings and some common senses. I added some functionality to current web based system which used to control quantities of inventory over fluctuation cost. The business…
-2
votes
1 answer

Why will my getter and setter with a constant not work with string.length()?

Is anyone able to explain why when I use a constant within my if statement for String.length() it will not pass a valid test but if I hard code the values within the if statement it will pass? public void setName(String name) { if (name.length()…
-2
votes
2 answers

How to reuse a rule as an action of another rule?

Eg: Rule1: Check if Person's Country is 'United States' Rule2: Check if Person's State is 'Washington, D.C.' Now Rule3 is combination of Rule1 and Rule2 Rule3: if Rule1 then Rule2 here Rule2 is an action that will be executed if Rule1…
Allu Balu
  • 9
  • 1
1 2 3
33
34