Thanks for the comments guy, I "Have" embraced the Aware mindset for displaying msgs, however, just to gripe a bit, In my case, if the qty field is > than stock, want to display a msg then update the qty = to the stock qty So I need to add 2 fields to the BO (msgField and flagField) and write logic like this
IF BO.qty > BO.stock THEN
BO.msg = 'You are quoting TOO much'
BO.qty = BO.stock // doing this, causes this rule to run again
BO.flag = 'Yes'
ELSE IF BO.flag = 'No'
BO.msg = ''
ELSE BO.flag = 'No'
I seem need the flag attribute since this rule will be called twice, once when the user enters the qty and then when it is corrected to the stock qty.
Not a problem, but if I could do a DISPLAY MESSAGE from a rule, would be a lot easier.
But still smiling
Bruce