MSIM Workspace

Pranali18
Tera Expert

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, 

1 ACCEPTED SOLUTION

Pranali18
Tera Expert

Client script and UI policy both didn't work in our case on workspace, so created before insert business rule. This resolves the issue.

View solution in original post

8 REPLIES 8

Community Alums
Not applicable

HI @Pranali18 ,

You can use Onload Client script with your conditions rather than using UI policy.

 

 

Thanks @Community Alums  for quick response.
I did try client script but still not able to see priority field updated on workspace.

Community Alums
Not applicable

Can you share your client script screenshot from the platform here please @Pranali18 

 

Below code:

if(g_from.isNewRecord())

{g_form.setValue('priority',5);}