Tagged Questions
The business-rules tag has no wiki summary.
12
votes
7answers
4k views
Where are the Business Rules in MVC
Now that everyone is talking about MVC, I notice that the business rules are not being addressed. In the old days of the 3-tier architecture, The business rules were in the middle layer. Where do they ...
10
votes
4answers
198 views
Business rules that are valid for specific time span – how to manage in an orderly manner
I just started working for a government agency and I have come across an interesting problem: business rules depend on legislature and as such they have to respect the exact time periods that ...
8
votes
6answers
820 views
What pattern/patterns work best for developing rule/decision engine
I am working on a decision engine / rule evaluation engine. For example:
Input: Customer and all the offences done by the customer
Output: Consequences of the offences
A sample case would be:
...
8
votes
4answers
318 views
How do you share configuration information or business rules between languages
I'm looking for best practices for using the same data in different places without repeating yourself - this could include configuration or business rules.
Example 1. Data validation rules where you ...
7
votes
1answer
250 views
How can developers let business users define application logic?
I'm working on a new application at work, and a manager is really pushing the concept of a business rules management system (BRMS) and a workflow management system, and I'm trying to figure out the ...
7
votes
3answers
883 views
When is a Business Rules Engine used
When is a Business Rules Engine used?
What is the difference between Business Rules Engines and scripting/configuration/customization
7
votes
12answers
2k views
Should a business rule violation throw an exception?
Should a business rule violation throw an exception?
6
votes
6answers
3k views
PHP Business Rule Engine
Are there any Business Rule Engine
implemented in PHP ?
If yes, please list them.
If not, than why not, what are the
reasons behind not having Business
Rule Engine in PHP and having it in
Java ?
5
votes
4answers
76 views
Application design - modifiable business rules
Am looking for some advice on the design of an application. As I'v signed an NDA I can't reveal too much about the actual business but will try to explain the requirement.
Essentially, we want to ...
5
votes
4answers
645 views
rules engine design & examples in c#
I am currently writing a .net application with c# and want to check a number of rules and based on passing or failing the rules, perform an action. So I am looking to implement a generic solution that ...
5
votes
2answers
2k views
how to learn Drools or another rule engine fast
We're embarking on a module which will generate some recommendations based on some criteria. The criteria will be in the form of set of Business Rules and hence I was considering using a Business Rule ...
5
votes
4answers
184 views
How do you track where in your code your business rules are implemented?
How do you keep track of the business rules in your application code?
Lets say we are designing an order entry system. One of the business rules might be:
If the stock level of an item drops ...
5
votes
3answers
2k views
Best Open Source Business Rule Management System
Does anyone know of a solid free and/or open source business rule management system. The organization I work for is developing increasingly more complex (business-wise) applications and it would be ...
5
votes
4answers
354 views
Resources for implementing ERP and other Enterprise applications?
When developing an ERP-like software or any other complex business system, what resources do you go to for best practices?
I'm a developer, not an accountant, not a purchaser, not a manager.
I do ...
4
votes
3answers
157 views
Looking for tips to build “TestMaker” (Questions and Responses) application with Evaluation Engine
I'm working on a new project.
My best analogy would be a psychological evaluation test maker.
Aspect #1.
The end-business-user needs to create test questions. With question types. And possible ...
4
votes
1answer
507 views
Business rule validators and command handler in CQRS
I am new to CQRS and I am tying to make sense of business rule validation within the write side (domain). I know that client side validation should be done in terms of valid date (required field, ...
4
votes
2answers
291 views
Constraint-programming in PHP
Are there any constraint-programming libraries for PHP? Something that would be capable of handling a situation like this.
4
votes
1answer
299 views
Business rules integration to User Stories
I have a set of User Stories and I have a set of business rules (primarily laws binding my requirements to be compliant). In Agile SDLC I'm not sure where does theses "rules" are attached to my user ...
4
votes
5answers
663 views
How to unit test business rules?
I need a unit test to make sure I am accumulating vacation hours properly. But vacation hours accumulate according to a business rule, if the rule changes, then the unit test breaks.
Is this ...
4
votes
4answers
423 views
Buisness Rule and Process Management?
After some searching in google and wikipedia, I still can not get a clear image about the "difference" between
BRMS (Business Rule Management System) and BPM (Business process management)/workflow ...
3
votes
2answers
68 views
Regex and non-technical users
Given that:
You have some Key-Value data that can be modified
Modification is done via by applying filters to the data. Filters that control what gets changed are created by non-technical people
...
3
votes
3answers
295 views
applying business rules at the database level
I'm working on a project in which we will need to determine certain types of statuses for a large body of people, stored in a database. The business rules for determining these statuses are fairly ...
3
votes
3answers
163 views
How can I use an SQL statement stored in a table as part of another statement?
In our Oracle datbase we have a table called RULES, with a field called SQLQUERY. This field is a varchar with an SQL statement stored. The PK is DM_PROJECT.
A typical statement that is stored could ...
3
votes
4answers
377 views
Code improvements for implementing business logic
I had asked this question previously on SO. This is related to it. We have code base similar to this:
IRecipie FindRecipiesYouCanMake(IEnumerable<Ingredientes> stuff, Cook cook)
{
...
3
votes
2answers
240 views
Business logic/rules - processing in the database or in memory
because of my over abundance of hubris, I am working on a program that would process some of the data better than the current system we are currently using. My question is when the implementing ...
3
votes
4answers
2k views
Criteria to Evaluate Business Rules Engines
We are shopping for Business Rules Engines.
We want to make our core application customizable to different customers with slightly different requirements.
The people who would actually do the ...
3
votes
6answers
514 views
Defining Business Rules
I have been tasked to come up with a list of the Business rules in one of our current applications. We have a very old document that has somethings, but has not been maintained, and as such is very ...
2
votes
3answers
247 views
Dynamic validation using custom rules
I've been using .Net languages for 4 years. I develop 3 tier and 5 tier applications using WCF, ASP.NET for web applications, and C# for windows applications. Every time I start a project, business ...
2
votes
5answers
292 views
Dynamic Business Rules
I am creating an interface where users can build their own business rules out of domain specific objects at runtime, have those rules persisted in the database and then used by the application. Some ...
2
votes
1answer
107 views
Data driven business rules.
I am using SQL SERVER 2005.
I have a table
table1(ID,col1,col2,col3,col4);
Now I have a business logic like:
If col1 >= 126 and col2 > 1 then col3 = 0
if col1 >=126 and col2 < 1 then ...
2
votes
3answers
103 views
How to handle complex and changing business rules
I have to come up with an idea on how to transparently create invoices. Customers are diverse and usually government type institutions. As such, they have strict rules for creating invoices and what ...
2
votes
1answer
62 views
Buisness Rules Engine expected performance
How rule engines are evaluated? What do you test to see if it performs ok or not? Milliseconds per single rule execution? Complexity of a rule? If it's "time per rule", what time is considered to be ...
2
votes
1answer
123 views
Rule Engine - How to store rules to avoid parsing on edit?
My .NET application evaluates user defined rules at runtime. These rules are entered to system via GUI menus by user. I generate a logical statement that corresponds to it and store it in database.
...
2
votes
1answer
185 views
Need biz rule engine to work with asp.net mvc3, ef4.1 code-only
I think I need to add a flexible biz rule engine. I have some
standard biz rules to be enforced
some optional biz rules that customers can turn on/off
User defined/maintained custom rules ...
2
votes
2answers
562 views
What is better way to validate business rules in ASP.NET MVC application with 3 layer architecture?
I'm developing a ASP.NET MVC application with 3 layer classic architecture
1. data access (Repositories)
2. Business logic (Services )
3. Application layer (MVC Controller classes)
The task is follow ...
2
votes
2answers
206 views
Alternatives to decision table
Our app is growing rapidly. So, I begun looking into business rules as a way to separate some of our logic from the code (big DAAAH ;). The main goal is to allow our business guys to edit and deploy ...
2
votes
1answer
85 views
How do you test a business rule when it's a property accessibility?
Here is the catch. I have a business object that has a field named RegisterDate. The business rule as usual says that once it is set, can't be changed.
My first thinking about implementing this field ...
2
votes
2answers
276 views
Sort Java List/Map by order in which items are in an XML File
What I'm looking to do is to sorta a Java List or Map in the order the items are in a XML File.
For Example
I have a list of function names as so:
functionOne
functionThree
functionTwo
The XML ...
2
votes
3answers
219 views
Should business rules be enforced in both the application tier and the database tier, or just one of the two?
I have been enforcing business rules in both my application tier (models) and my database tier (stored procedures who raise errors).
I've been duplicating my validations in both places for a few ...
2
votes
2answers
78 views
How can I model both data and logic in a database?
I'm working on a web app for a magazine that will allow users to log in and renew their subscriptions online. These subscriptions are renewed based on a set of rules, and I'd like to get some ...
2
votes
1answer
1k views
Dynamic business rules engine for ruby on rails
I have an application which will require a "dynamic business rules" engine. Some of the business rules changes very frequently. Some of then applies for a limited set of business accounts. For ...
2
votes
1answer
279 views
Biztalk - possible to create rule/policy programmatically?
It seems that Biztalk only supports making rules via the Business Rules Composer, a design-time tool.
Everywhere I see "programmatic" referring to Biztalk's Business Rules Engine (BRE), I only see ...
2
votes
2answers
462 views
Validate Drivers License numbers?
I am working on a ACH payment processor and was wondering if I can scope the drivers license field against some rules. Any ideas on this? Can I assume numbers only or anything else more like SSN
...
2
votes
2answers
172 views
Unit testing a 'legacy' WPF Application
The product I have been working on has been in development for the past six years. It started as a generic data entry portal into an insanely complex part WPF/part legacy application. The system has ...
1
vote
2answers
22 views
Are there any workflow engines in existence that don't use BPMN and BPEL?
Our business is planning on building a rather large business application with about 2000 or so users.
Many objects in the system require a mildly complex series of approvals, notifications, etc.
For ...
1
vote
1answer
87 views
How should I use BizTalk's Business Rules Engine from a .NET Windows application?
We're developing a WPF business application for internal users, but this problem could apply to WinForms easily as well. We want to leverage a business rules engine to make modifying the rules in the ...
1
vote
3answers
158 views
Is using Rule Engine to implement chain of rules [complex business logic] overkill?
Recently, I am reading about the rule engines in JBOSS Drools Manual [ref - 2.2.5. Strong and Loose Coupling]. Below is the excerpt from it 'If your rules are all strongly coupled, the chances are ...
1
vote
2answers
64 views
Using BPEL for a deployment process
I'm working on a system that is kind of a Business Rules Engine. Rules are authored in a devleopment environment, executed (SQL code gets generated) and tested in DEV, then they are deployed into ...
1
vote
0answers
252 views
Understanding drools-guvnor [closed]
Possible Duplicate:
java code to access drool guvnor
Can any one please help by providing an example in which rules (mentioned in .drl file) are called in java code and processed(using ...
1
vote
1answer
127 views
Free “Business Rules” tools? [closed]
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 ...