I have the following code in a DRL file
rule "MyExample"
when
$eentity : ExampleEntity()
$sentity : SecondEntity( secondField == $eentity.getMainField())
then
System.out.println(true);
end
This works, but I need to convert it to a spreadsheet. I tried so many options, but no one works. How can I write this rule in the decision table?
source
share