Decision Table
Hi,
I have a requirement to calculate a risk score based on multiple parameters.I need to terminate the processing of my decision table if it meets a certain outcome. I could not think of any good appraoches. Below are my thoughts. Please let me knwo if they are correct or there is a better way of implementing it.
1. Break the logic into mutliple decision tables for each parameter. Collate values from diff decision tables in a decision tree and if the outcome meets that criteria then exit the decision tree logic in between otherwise continue.
2. Create a declare on change to track value of the particular field and if it meets the criteria then use ticket to jump to a later step.
Please let me know.