How Can We Help?
Answer
Business Rule 1
- If demerit points > 10 then
Revoke license
Else if demerits point between 5 and 10 then
Issue $500 fine
End
- If server storage filled > 80% then
Notify DB admin
End
- If failed log in attempts > 3 then
Lock user’s account
End
Business Rule 2
The business rule is given by a retail store. The rule is charge 10%GST for each employee purchase transaction which should be the Total amount. The purchase amount is User Input and GST is System input.
In XMPro, the below condition will be given in the expression editor to calculate the total amount field in the form.
If (Purchase amount != 0 ) Then Total amount = Purchase amount * 0.1 Else Total amount = Purchase amount
Comments are closed.