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

What is a bi-directional business rule?

Does the following fit the definition of a bi-directional business rule? An employee of the car rental company handles the client but each client can only be handled by one employee.
Da Phuc
  • 1
  • 1
  • 5
0
votes
0 answers

Business Rules 'Get Started' in Bluemix

I'm trying to test my sample ruleapp for Business Rules in Bluemix. When I try to Test under the Decision Services tab in Business Rules I get the error 'Unable to run test.'
0
votes
1 answer

How to shorten CONDITIONS & ACTIONS of decision table in drools 5.5.0

I am inserting an object "ABC" to knowledge session. This object contains a HashMap and that HashMap contains List of Objects of type "Person" and this "Person" contains HashMap to hold Person data such as Name,age,gender etc. Now as i have to read…
0
votes
0 answers

What name can be given to the network log catcher?

I have a task in which i need to name a tool that is displaying some logs of network. I want to give it a better name. Please help me to provide a better name to the tool. Thanks
Gazal
  • 184
  • 1
  • 18
0
votes
1 answer

CodeEffects editor RuleModel object not referenced in MVC

We have CodeEffects rule editor embedded into MVC View. The editor is working well when editing a rule, but from time to time the editor RuleModel object is not instantiated/bound in action controller on server side upon submit (Null reference…
Gezilein
  • 1
  • 1
0
votes
1 answer

Microsoft Dynamics need to specify today's date as a condition for a business rule

I am creating a business rule that changes the contents of the description depending on the time of day that the email is created. Ideally, I would like to specify the value of date to be today's date, as the date is constantly changing. However, I…
0
votes
1 answer

What is a Key Lookup in a Database and what's the difference with Business Rules?

I was wondering what really is a Key lookup in a database ? And what are the differences between Key Lookup and Business Rules? Thank you guys !
Spredzy
  • 4,982
  • 13
  • 53
  • 69
0
votes
1 answer

How to set the rules depending on the entity field?

Situation using Cake 3.2.6 in my CostItemsTable, I have a buildRules function /** * Returns a rules checker object that will be used for validating * application integrity. * * @param \Cake\ORM\RulesChecker $rules The rules object to be…
Kim Stacks
  • 10,202
  • 35
  • 151
  • 282
0
votes
2 answers

Connecting on-premise Decision Center to Bluemix Business Rules Service

I'm trying to configure into my local ODM Decision Center the connection to a Bluemix Business Rules Service (its Rule Execution Server). In the process, I'm getting a generic IO_ERROR while testing the connection on Decision Center console. Error…
0
votes
2 answers

How and when to apply business rules?

Suppose I have a service StateService which has a method ChangeState. ChangeState(State toState, DomainObject object) I have business rules that checks whether the destination state is valid or not in the domain objects current "state", how can I…
Marcus
  • 1,866
  • 1
  • 20
  • 33
0
votes
1 answer

Domain object with aggregate fields

I have domain object like this: class Customer { string FirstName {get;set;} string LastName {get;set;} DateTime DateOfBirth {get;set;} } Product team told me: We have to get customer by ID. Customer has information like FirstName,…
0
votes
1 answer

Rules engine for partial data

Do you know a rule engine (preferable for JVM), which knows to handle partial data? I.e. while some of objects properties are unknown, the rule engine will try understand whether a rule is applicable based on known properties. And so the answer for…
Pavel Bernshtam
  • 4,232
  • 8
  • 38
  • 62
0
votes
2 answers

cakephp 3 build rules that allows checks if data is unique and allows empty

I want to allow users to leave the email and phone blank on the register function. I also want any added emails or phones no. to be unique. However the isUnique function in the build rules is stopping this because it sees that the blank field…
John Hogan
  • 996
  • 1
  • 13
  • 26
0
votes
2 answers

CRM 2013 requirement gathering and expansion, Best Practices

I'm fairly new to CRM 2013, and I've been reading and watching a lot of videos on the subject. I'm hoping someone on the interweb, can offer some tips or suggestions that will resonate with the way I interpret and comprehend this material. I have a…
snapplex
  • 851
  • 3
  • 13
  • 27
0
votes
1 answer

What's the standard BPMN Process design practice when we spwan multiple sub process and manage them?

I'm trying to design a process which will spawn multiple sub process(instances) and finally the outcome of the sub-processes will decide the main process flow. As I agree there can by multiple ways to design the same, but wanted to to check from all…