- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2022 11:00 AM
Dear Experts,
I need to be able to save this form without filling in mandatory fields. Before filling out the Mandatory field in SCTASK, the technician needs to put their name and pending ticket number.
But currently, it is not possible to do.
Please Help!!!
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2022 09:11 AM
BEST solution for this was to Create a Ui Policy on the Table level. Fixed it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2022 08:50 AM
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
if(g_form.getValue('state') == -5)
{
g_form.setMandatory('add_emp',false);
}
else{
g_form.setMandatory('add_emp',true);
}
DID NO WORK 😞
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2022 09:11 AM
BEST solution for this was to Create a Ui Policy on the Table level. Fixed it