Need to hide action

Hi All,

I need to hide some related actions from specific groups. Can anyone please help me, how to achieve this?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Rahul009

    Here is a sample expression. If you want any field from record to be referenced and added in condition use rv!record in the condition. You can use and() or or() operators to club the who and when part of condition together.

    For example below, I am allowing my action be visible to the user who created the record, they are part of a specific group, when record statusId is 2 and record's Due Date is today() - then only action should be visible. [P.S. the dueDate is added for the sample, I don't have such a field in my record so its just for example]

    When the combined output of this expression is true then only the action will be visible to allowed users. Let me know if you face any issues while configuring these conditions.

Children