Incident - When choosing "Awaiting Vendor", "Vendor" tab fields are now mandatory. How do I change?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2022 02:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2022 03:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2022 07:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2022 01:51 PM
Hi,
In this case, the role you have must be validated. If you already have the admin role, try elevating the roles.
Another solution is: create a script so that the fields remain as NOT mandatory. example
function onLoad() {
//Type appropriate comment here, and begin script below
g_form.setMandatory('u_vendor',false);
g_form.setMandatory('u_vendor_ticket',false);
g_form.setMandatory('u_vendor_point_of_contact',false);
}
Regards