python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
What does a drools fact check (when) return when one uses the "in" operator
I have the following rule
rule One
when
vg1 : Vgdoc(code() in ("IA1003", "IA1004"), colour == "red")
then
.. do something with vg1
end
when I use the vg1 in t...
Goozo
Votes: 0
Answers: 1
Drools - check if argument is null before calling query
Inside the drools rule file, I'm trying to match the request object against inserted facts using a query (backward chaining). How do I check for null for the request object attribute? If the attribute...
user1251226
Votes: 0
Answers: 1
No globals have been defined for this package
I have created 2 rules and one global variable in same drl file inside the jboss wrokbench(business-central).
Rules:
package com.myspace.samplerules;
import com.myspace.samplerules.Transaction;
globa...
Dileep Chandran
Votes: 0
Answers: 0