[SalesForce] New button on listview not appearing for some users in Salesforce1 app

enter image description here

The new button for this object is overridden by a vf page. It is showing in the sf1 app for admin users but the same button is not showing up for some other non admin users in sf1. Profiles and other object related settings seems fine here. Am I missing something here ? Pls help. Available for salesforce mobile apps checkbox is true.

Best Answer

If this button is related to a publisher access, this issue can happen if non-admin profiles are not having access to the Visualforce page and/or a related Apex Class.

To verify permissions, go to Setup | Manage Users | Profiles. Then open the User Profile having the issue. Click on "Visualforce Page Access" and verify that the Profile has access to the Visualforce page being used. If it is not listed, click the Edit button and add the required Page.

If your Visualforce page uses an Apex Class, repeat these steps for "Apex Class Access".

Once this is done, test and confirm the Publisher Action is now visible to the User.

Related Topic