- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2018 05:23 AM
Hi,
I have a field of type List, I am trying to assign values to it with the help of a business rule...
proj.setValue("u_users", current.u_user.toString());
i see that this field of type List has red asterisk even though it has value in it.
It looks similar to the above one.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2018 06:51 AM
Hi Vineeth
This occurs in fields which type is list and the system is assigning the value to the field.
You would expect it to be grey since it is populated. You will still be able to save or submit the record without getting the mandatory error message.
You should be able eliminate this by creating a conditional UI policy (make sure Reverse if false is set)
If user is not empty, then set Read only = Leave alone, Mandatory = false, Visible = Leave alone
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2018 05:49 AM
Can you share the business rule and client script if any which you are applying to this table to make Field Mandatory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2018 05:53 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2018 06:02 AM
Hmm would it matter if your code has String in it and it's a list field?
Perhaps it's not the appropriate type of value being put in there and not being recognized fully?
Just a guess...
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2018 06:27 AM
I don't think that is reason because it is assigning the values correctly, also i tried in the below way and even with asterisk is till red.
proj.u_users = current.u_user;