Create a Rule
Introduction
This guide explains how to create rules for a ruleset.
Rules are the main engine of rulesets and the logical implementation of a business rule. For example, suppose you implement a business rule for determining the maximum loan amount given a certain income as input. In that case, the rule is the implementation of the business rule that calculates the actual maximum loan amount:
Income
Calculate maximum loan amount
Maximum loan amount
The result of rules as output
In general, a rule performs a calculation or makes a decision and returns the result as the output of the ruleset. To facilitate different (business) rule scenarios, Rulecube supports different output types, such as string
and date
. For instance, the aforementioned maximum loan amount output is of the number
type.
Procedure
Let's walk through the steps for creating a rule that calculates the maximum loan amount as 25 percent of a person's annual income.
Create a ruleset named
MaxLoan
.Create an input named
AnnualIncome
with Type =number
and Label =The annual income
.Create a constant named
LoanPercentage
with Type =simple
and Value =25
.Click the + sign behind Rules from the left menu. ↳ The Rule details page opens.
In the Name field, enter the name for the rule. For example,
LoanCalculation
.In the Output name field, enter
MaximumLoanAmount
.In the Type list, select number.
In the Expression field, enter the following code to calculate the maximum loan amount:
Click Save.
Try the ruleset out.
Revert changes to an expression
As an extra, let's look at the Revert feature for changes to expressions in Rulecube:
Move back to the rule again.
Change the code for the Expression to:
Now, let's assume you are unsatisfied with this change and want the previous code back. You could retype the original code if you remember, but Rulecube enables you to revert the changes much easier:
Press
Ctrl+S
to save your work.
Additional resources
How-to Guide: Try Out a Rule.
How-to Guide: Call a Rule from Your Software.