I’ve a table data:
I identify the cases where I need to identify the ORG ER which will be rejected and I need to insert it in a table of reject
Here the rule 1 that I identify
<code>ACT N = 0 and BUD N = 0 and ACT N_1 =0
or ACT N <> 0 or BUD N <> 0 or ACT N_1 <>0
</code>
<code>ACT N = 0 and BUD N = 0 and ACT N_1 =0
or ACT N <> 0 or BUD N <> 0 or ACT N_1 <>0
</code>
ACT N = 0 and BUD N = 0 and ACT N_1 =0
or ACT N <> 0 or BUD N <> 0 or ACT N_1 <>0
Here are the cases of the org ER which I need I keep it
Here is the rule 2 that identify
<code> ACT N <> 0 and BUD N and 0 and ACT N_1 <>0
OR ACT N = 0 or BUD N = 0 or ACT N_1 =0
</code>
<code> ACT N <> 0 and BUD N and 0 and ACT N_1 <>0
OR ACT N = 0 or BUD N = 0 or ACT N_1 =0
</code>
ACT N <> 0 and BUD N and 0 and ACT N_1 <>0
OR ACT N = 0 or BUD N = 0 or ACT N_1 =0
Using this two rules, I get some errors, could you please help me to get the correct rules?