Hello everyone,
Can Business Rule applied or run after form load ? So I have a needs whereby, my field will only set to be mandatory, when the record is saved on the 1st time. For example : I'm creating new record, in one of the field lets say "Description", is not mandatory, user can save this new record. But after 1st saved, I want this Description to be mandatory. Problem is I have a Javascript to make an autosaved at first time the form load.
In my head, I would think like this :
- Had 1 business rule to check some field, I have 1 field which is an autonumber, which will have value when it's saved.
- So when this field is contain data, my business rule is Set Business Required this Description, if not contain data, don't make field Description as Business Required.
Is this make sense ?
Well, I tried like that, but it's not working, because it's looks like when it is saving (my java script to auto save running) then in that instance, the field "Description" is mandatory, so it is already return error.
Kindly advice whether it's possible to make the business rule run after form load, so my data will be saved first then displayed fully on the screen, then right after that my field become mandatory. So only at the 2nd time and after, when user click save, it will throw message that field is empty.
Thanks