i have a WF in which fields are disabled and these fields are enabled once form is approved now how can i make fields mandatory once form is approved?

  • 14 November 2017
  • 3 replies
  • 4 views

Badge +1

i have a WF in which fields are disabled initially and these fields are enabled once form is approved.

How do i make sure these fields are mandatory after form is approved?


3 replies

Userlevel 5
Badge +14

you should assign a validation rule to respective fields.

I'd assume you a field like 'Status' that tells you whether an item is approved or not. then your rule formula might look like:

Status == 'Approved' && IsNullOrEmpty(NamedControlToBeMandatory)

Badge +1

in the same WF, i have a field which has validation,the validation works fine when form is submitted but it shows error(invalid field) after form is again edited.Not able to figure out reason for it

Userlevel 5
Badge +14

post screenshot of whole error message, configuration of the rule and whole rule's formula

Reply