Display of “Skip Required Entries for Now” Option

Workflow Manager 2020

When a workflow request collects data in the first workflow step or in subsequent workflow steps, sometimes the user needs to answer questions on multiple pages (each defined in a separate data group) before submitting the data to complete the step. Some of these pages may include questions specified as required.

The user can click Next to scroll through all of the pages in a data entry workflow step even if required questions on one or more pages have not been answered. When the user clicks Submit on the last data entry page, if there are any unanswered “required” questions, an error message will appear, listing the questions that need to be answered. The user can then click the page name to return to that page and answer those questions.

Regarding postponing the answering of required questions, you have two options:

User is required to select the “Skip required entries for now” option—You can configure Workflow Manager so that the user is required to select the Skip required entries for now option in order to be able to proceed to the next page when required questions have not been answered.

“Skip required entries for now” Option

Automatically enable ability to skip required entries—You can configure Workflow Manager so that the Skip required entries for now option is not displayed, and the user is automatically permitted to proceed to the next page of questions even though “required” questions remain unanswered.

The SkipRequiredElements setting in the appSettings section of the web.config file determines whether or not the Skip required entries for now option is displayed:

    <add key="SkipRequiredElements" value="0" />

The SkipRequiredElements setting has two possible values:

User required to select an option to proceed—If the SkipRequiredElements setting is set to 0, the user will be required to select the Skip required entries for now option on each data entry screen that contains a required field in order to proceed to the next page of questions even though “required” questions remain unanswered. (Default)
User not required to select an option to proceed—If the SkipRequiredElements setting is set to 1, the Skip required entries for now option will not be displayed on each data entry screen that contains a required field, and the user is automatically permitted to proceed to the next page of questions even though “required” questions remain unanswered.