Questions tagged [redhat-decision-manager]

10 questions
2
votes
1 answer

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 would also be different for Canada and Category…
josesuero
  • 3,260
  • 2
  • 13
  • 19
2
votes
1 answer

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 project from our company dedicated gitlab site…
0
votes
1 answer

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 have 3 clients (A, B, and C) For client A we want…
0
votes
1 answer

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 rule construction happens inside a 'function'. My…
0
votes
2 answers

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 deploying a project, I can see it listed under…
0
votes
0 answers

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 wanted to achieve. This is my decision table…
Abhishek Singh
  • 236
  • 1
  • 8
0
votes
0 answers

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

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 branch remotely, I'm currently doing: BRANCH=$(git…
josesuero
  • 3,260
  • 2
  • 13
  • 19
0
votes
1 answer

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 children; } public class Child { private String gender; } When…
Ng Kar Fei
  • 13
  • 4
0
votes
1 answer

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 map; // ... getters and setters } public class ParameterModel{ private…