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

Create a business rule in MDM 2012 that tests the Sum of attributes of an entity

I have created an entity on MDM 2012 and I like to create a business rule that tests if the SUM of 3 attributes is 100. I didn't find a way on the Action Panel to use arithmetic operators or simply a SUM function.
0
votes
1 answer

Lightweight Date-driven business rule configuration without database

I'd like to be able to have a list of values available to a web service where the contents of that list can be preconfigured to change starting on a given date. For example, let's say we had a new feature that was rolling out in the USA on a state…
James Daily
  • 587
  • 6
  • 21
0
votes
1 answer

How to translate a text in business rule- service now

Heh guys,I am new to service now. I am doing translation in my portal for english and french. For custom text I have done like this Server script: data.welcomeMsg= gs.getMessage('Welcome to the portal'); Html:

{{data.welcomeMag}}

It…
krish
  • 1,077
  • 6
  • 24
  • 49
0
votes
1 answer

Listing the functions in a KieBase

I am uploading three drl files with three functions in each drl. Can I get the list that contains all the 9 functions that are loaded in my KieBase.
Sathish Kumar
  • 189
  • 1
  • 2
  • 14
0
votes
0 answers

Drools - Parse XML Data from Another System and Decide Business Rules

I have the following requirement and I not sure how to go about it using Drools. Background: Completely new to Drools - never heard of it until last evening. Using Drools is mandatory Deadline is tomorrow :) I have been into Software Development…
aeon
  • 1,029
  • 2
  • 13
  • 23
0
votes
1 answer

Alternative way for Throwing UserFriendlyException and Exception Handling for Business Rule Validation

Considering the cost of throwing exception, an alternative way is something like this: public interface IValidationDictionary { void AddError(string key, string message); bool IsValid { get; } } public class ModelStateWrapper :…
user5709087
0
votes
1 answer

How to do null or empty check in drools - mvel dialect?

When the configList is null, the AND logic should not proceed further, but I am getting this error - "array index out of bounds". Below is the rule : rule "testRule" when config : Config( configList != null && !configList.empty &&…
0
votes
1 answer

How to determine if an object is an instance of a certain class in IBM Rules Designer/ODM?

This may be an easy one, but I haven't found an easy way to determine in a rule that an object in working memory represented by an implemented interface is a specific class in IBM Rules Designer 8.8.1. For example, assuming HousingPeriod is an…
0
votes
2 answers

Business Rules Engine for angular Application

I am currently designing a sales application (Angular 6 + Bootstrap) to be a responsive application for one of the telecom operators and my system users are more than 10K user who is accessing the system daily for sales activities on the same time…
Mohamed
  • 31
  • 1
  • 4
0
votes
1 answer

How to find how many rules are associated with a rule task in IBM ODM/Rule Designer 8.8.1?

I'm new to the IBM Rule Designer (8.8.1) and my team has inherited a project that contains numerous rule flows, subflows, rule/action tasks, etc. I'm attempting to document at the task (ie. rule flow node) level, but there are instances where 100+…
0
votes
0 answers

Antlr is used to parse grammar. What can be used to compose grammar?

We have few business rules which are written using string append. We use Antlr lexer and parser to generate tree and evaluate rules. I am exploring an option where instead of using string append, what can I use to generate business rules which can…
0
votes
1 answer

Update a javascript script on-the-fly

Let's say I have a script that runs a for loop that outputs x number of new script lines depending on what a user answers. This script's main purpose is to construct an outgoing SOAP message with defined parameters. The for loop creates additional…
0
votes
1 answer

Instantiate a Powershellprobe in ServiceNow

I have defined a PowershellProbe with a script which recieves a Parameter (powershell_param_someparam). Running the Script from on the GUI works successfully, yet I have no idea how would I be able to Access and Trigger this Pobe from a bussiness…
mh133
  • 135
  • 12
0
votes
2 answers

CRM 365 Business Rules Deactivated but still running on forms?

I am in the process of re-writing the Business rules for our CRM Installing on Office 365. The problem is, the old ones I have decided to turn off due too the changes that are taking place on the new versions of the form. However, when I deactivate…
0
votes
0 answers

Drools rule using accumulate

Hello I it is my first time involved in drools project. I have created some simple rules that work fine, however I have trouble with more complex rules that use the accumulate function. Below I have this rule. rule "1" no-loop when $msg :…
IsidIoan
  • 403
  • 2
  • 5
  • 13