Mass Edit Profiles in Salesforce
10:33 AM
There is an
easy way to edit multiple profiles with just a couple of clicks. You may
find this in the official salesforce.com help and training, but i just
thought of sharing it here.
Enable Enhanced Profile List View (if you have not already)
- Your Name --> Setup --> App Setup --> Customize --> User Interface and
select the "Enable Enhanced Profile List Views" checkbox under the "Setup"
section.
Go to Profile View
- Setup --> Administration Setup --> Manage Users --> Profiles
You can create views to select the object or tab permissions that you want to display in the list view. Remember to use correct object or tab names to search.
Select the Profiles that you want to edit. Double Click the permission that you want to edit, and click Save. The Profiles that you selected will now be updated with the new permission.
Enable Enhanced Profile List View (if you have not already)
- Your Name --> Setup --> App Setup --> Customize --> User Interface and
select the "Enable Enhanced Profile List Views" checkbox under the "Setup"
section.
Go to Profile View
- Setup --> Administration Setup --> Manage Users --> Profiles
You can create views to select the object or tab permissions that you want to display in the list view. Remember to use correct object or tab names to search.
Select the Profiles that you want to edit. Double Click the permission that you want to edit, and click Save. The Profiles that you selected will now be updated with the new permission.
2 comments
This comment has been removed by the author.
ReplyDeletepublic class mySecondController {
ReplyDeleteAccount account;
public Account getAccount() {
if(account == null) account = new Account();
return account;
}
CAN YOU PLEASE SOLVE MY PROBLEM
public PageReference save() {
// Add the account to the database.
insert account;
// Send the user to the detail page for the new account.
PageReference acctPage = new ApexPages.StandardController(account).view();
acctPage.setRedirect(true);
return acctPage;
}
}
Error: Illigal assignment from system.pagereference to pagereference