12 questions
-1
votes
1
answer
86
views
Call one of the two decision table from parent decision table in Drools DMN
I have a decision table that takes Age as an Input and returns OLD or YOUNG if Age >50 & Age <50. Based on this I need to call one of the two decision table (One for old and one of Young). ...
1
vote
0
answers
135
views
Drools facts filtering with eval does not work for boolean with quotes ""
I have guided decision tables with a boolean condition column with predicate as follows
"$param" == "NA" ? true : "$param" == boolFlag
The decision table source ...
0
votes
1
answer
175
views
Red Hat Decision Manager - DMN Modeling One to Many
We are looking into using Red Hat Decision Manager as our Rules Engine. One thing that isn't clear is how would one setup a one to many relationship using DMN w/ FEELS. Here is an example:
Suppose we ...
0
votes
1
answer
126
views
How can I create a decision table in Red Hat Decision Manager with only metadata information about the rule
I am trying to map a set of rules defined as decision tables in FICO rule engine to Red Hat decision manager. The existing decision table contains metadata information about the rule and the actual ...
0
votes
2
answers
329
views
Why do I get a 404 error when curling into Kie Server after deploying a project in Red Hat Decision Manager?
I am trying to curl into Kie Server after deploying a project in Red Hat Decision Manager.
I have followed the instructions at here, including the configuration of the standalone-full.xml file.
After ...
0
votes
0
answers
824
views
Is it possible have OR condition in excel decision table
I am new to drools and I am exploring the decision table. I want to OR two columns in the decision table is it possible? Please go through the example it will help to understand my question and what I ...
0
votes
0
answers
105
views
Run rules on database using rule engine
Is there a way where we can define the rules in rule engine like REDHAT decision manager and implement those rules on the tables in databases .
Thanks in advance!!!
0
votes
1
answer
74
views
Get Drools saved branch on post-commit githook
I want to push all changes on a drools git repo to a GitHub repository, I managed to get it working only for the master branch.
I'm trying to get the branch being saved in order to push to the same ...
2
votes
1
answer
1k
views
DMN Table per condition
I want to leverage on DMN to create a calculation, but the rules for this vary per country per category, so the rules USA and category1, would be different than the rules for USA and category2, and ...
2
votes
1
answer
249
views
Import project from git in Redhat Decision Manager(RHDM) deployed in Openshift
Using the steps defined in deploying red hat decision manager on red hat openshift container platform (Redhat site), I was able to deploy the RHDM in my minishift server, however when trying to import ...
0
votes
1
answer
196
views
Drools Rule Template error [Error: unclosed @if{} block. expected @end{}] when placeholder is used
drools rule template cannot be compiled if placeholder is used in subclass collection list.
I have this simple class structure
public class Parent {
private List<Child> children;
}
public ...
0
votes
1
answer
898
views
Drools get object from map mvel cast exception
I am using jboss EAP 7.2 and Red Hat Decision Central 7.5.0
I have a custom objects like that
public class Model{
private String id;
private Map<String, Object> map;
// ... getters ...