Enum option display based on user setting value

Hi All,

To have a better user experience, we would like to display certain option for certain level of users. (where we want to have Rejected, Approved by certain user only) we have problem where normal user using using the option rejected and approved.
Following is using enum for selection,

3X_2_f_2f4dd919f0a1cc2166bde5faff22387f0a1ea704.png

we would like to have user with a special text set in their user setting, will able to see Rejected and Approved option.

anyone have any idea, how we could limit the display of enum option, based on the user setting or other better way of using it.

Solved Solved
0 4 945
1 ACCEPTED SOLUTION

Thanks @tsuji_koichi for that,

as suggested, i have create admin key in the user setting, and in the enum field suggest value expression, i do this

IF(([AdminKey] = "mykey111"), LIST("In Progress", "Escalation", "Completed","To Delete","Submitted to QC","Rejected","Approved), LIST("In Progress", "Escalation", "Completed","To Delete"))

Just simple if, it is match the key, display the more option for those who know the adminkey. otherwise display the less option for the user.

let share if anyone has a better suggestion, and thanks to @tsuji_koichi for the solution.

View solution in original post

4 REPLIES 4
Top Labels in this Space