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