Hello all.
I am making a modification to the OpportunitiesList screen. I need to make sure that the Description field in the grid is hidden for roles that do not have the priviledge to see this information. My approach is to ad a Show/Hide Field/Object action on the OnScreenLoad event that will look at the role of the current user and hide the field if the user does not have a certain role.
My problem is that I don't know which event to use in order to ensure that the action sequence I need to create will be run anytime the grid refreshes.
Here is the sequence I want to apply.
Assign Value to Action Result -- Get the user Record ID
Retreive Value From Table -- Look up the roles of the user
Start Conditional Statement -- If the user does not have the ... role
Show/Hide Field/Object -- Hide the Description field
Stop Processing More Actions -- Return
End Conditional Statement -- End If
Show/Hide Field/Object -- Else show the description field
Please help if you can...