I am trying to build a smart notification using the activity management piece in Lawson, and I was wondering if anybody can think of a better way to do this:
My infoset has a budget, a commitment and actual amount. I am supposed to notify a user when the expense spent on a project reaches a threshold value which is 5% of a budget.
My expense equals the actual and commitment amount. I have added an calculation column in my sql which is called the remaining amount which is ( budget – (actual + commitment).
When this amount reaches 5% of the budget the user should get notified. This has completely stumped me and I have tried different ways but cannot get this to work. A combination of condition calculation will just not work. Any ideas ?