Skip to main content
Majid Hosseini (cgi) が「#Ohana」で質問

Hello

I have a requirement that let internal users to upload files to opportunity records but our external users (community cloud users) are NOT allowed to upload files.

So any idea/workaround how to hide/remove Add Files button for a profile?

 

Thanks in advance

hide/Remove Add Files button for specific profile

7 件の回答
  1. 2023年11月22日 15:55

    There is no solution for this issue yet. I hope Salesforce (SF) will provide a solution soon. In the meantime, I implemented a workaround using a validation rule. If we want to prevent a user from uploading a file into Salesforce, we can use this validation rule. I tried it, and it worked.

    We cannot hide but we can prevent it .

    Use Content Version object and use this VR in this object  :

    AND($Profile.Name="ProfileName", ISNEW(), NOT(ISBLANK(Title))) 

0/9000