Can someone save a partially completed form to submit later?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-18-2015 02:13 AM
Hi community,
I'm wondering if there is a way that someone can save a partially completed form and be able to submit at a later time?
It's not something we had developed during implementation a couple of months ago, so any assistance would be appreciated.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-18-2015 10:24 AM
Yes, you can. I've actually set this up on Change Request and limited it to a specific state. So for Change especially you may not have all of the change details before you want to save the record so I added a 'Draft' state and as long as the State is still Draft I ignore mandatory fields on submit.
I have a UI policy with condition State is Draft. Then for an Execute if true script I'm running:
function onCondition() {
g_form.checkMandatory = false;
}
For Execute if false script I'm running the opposite
function onCondition() {
g_form.checkMandatory = true;
}
This still shows the mandatory fields with mandatory flags on them so the folks filling out the form know it's mandatory but ignores that flag when it's submitted.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2015 04:19 AM
Thanks for your reply David, it does help very much!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-06-2015 10:25 AM
Hi David,
Is the field checkMandatory a custom field? Would you share you UI Policy setup?
Thanks
Jana

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-09-2015 08:42 AM