#from row number: 1 rule "Row 1 Payment Eligibility" dialect "mvel" when accountAction : ConsumerAccountWorkActionFact( checkIfExist == "true" ) consumerAction : ConsumerWorkActionFact( checkIfExist == "true" ) accountTagAssociation : ConsumerAccountTagAssociationFact( hasAnyConsumerAccountTagEM == "TAG1, TAG2" ) then RuleEligibilityResult fact0 = new RuleEligibilityResult(); fact0.setEligible( false ); insert(fact0 ); end #from row number: 2 rule "Row 2 Payment Eligibility" dialect "mvel" when accountAction : ConsumerAccountWorkActionFact( checkIfExist == "true" ) consumerAction : ConsumerWorkActionFact( checkIfExist == "true" ) then RuleEligibilityResult fact0 = new RuleEligibilityResult(); fact0.setEligible( true ); insert(fact0 ); end