function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
reatlimecoreatlimeco 

apex:detail edit button produces an insufficient privileges

Here is the visualforce code:

 

<apex:detail subject="{!$User.contactId}" relatedList="true"/>

 

Trying to let the Portal user edit their own contact record including custom fields.

 

 

The profile of the Portal user has Read and Edit checked for Contact records also.

BulentBulent

are you using partner portal?

Customer portal doesn't give you edit permission on account and contacts.

Portal users can edit their information via the standard my profile page provided by the portal 

Naveed AnwarNaveed Anwar

Hi,

 

I have encountered the same problem. Whether object is custom or SObject the error remains the same.

Between i am an administrator. Plese see the following code:

 

<apex:detail subject="{!account}" relatedList="true" title="false"/>

 

public List<Account> getAccount()
{
return [Select a.name From Account a Limit 100];
}

 

Thanks!