- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 11:00 PM
Hi,
Need to change default value for priority field in MSIM workspace. created UI policy to do the same but it's not working. And we can not change it from dictionary level as it is inherited from task table.
Please suggest.
Thanks,
Solved! Go to Solution.
- Labels:
-
MSIM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2024 04:27 AM
Client script and UI policy both didn't work in our case on workspace, so created before insert business rule. This resolves the issue.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 11:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2024 12:06 AM
Thanks @Community Alums for quick response.
I did try client script but still not able to see priority field updated on workspace.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2024 12:10 AM
Can you share your client script screenshot from the platform here please @Pranali18
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2024 12:13 AM
Below code:
if(g_from.isNewRecord())
{g_form.setValue('priority',5);}