Hello,
I’m facing an issue with a DMN decision table where I’m getting an unwanted output in specific cases. Here’s a summary of my scenario:
Inputs and Execution Context:
- Product (produit): “sante”
- Age (age): 26
- Number of Properties (nombreDePropriete): null
- Medical History (antecedentMedicaux): “oui”
Given these inputs, the output I receive is:
- Coverage (couverture):
[dentaire, optique, hospitalisation, pas de couverture]
this is a screenshot from the cockpit :
Issue
I want to prevent "pas de couverture"
from being returned in cases where other coverage options apply (such as “dentaire,” “optique,” or “hospitalisation”).
Question
Is there a way to specify a “default” or “else” rule that only executes if no other rules match? I’d like to make sure "pas de couverture"
is only returned if the inputs don’t satisfy any other rule.
Thanks in advance for any guidance on how to achieve this!