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
VRKVRK 

Insufficinet access rights on cross-reference ID

Hi 
------------
Issue : Insufficinet access rights on cross-reference ID

Scenario : 
created process builder based on the Asset Object by follow critiria:

AND( AND( NOT ( ISPICKVAL([Asset].ADV_Classification__c,"") ), 
NOT ( ISPICKVAL([Asset].Accounting_Code__c,"") ), 
NOT ( ISPICKVAL([Asset].Accounting_Product__c,"") ), 
NOT ( ISPICKVAL([Asset].Executive_Summary__c,"") ), 
NOT ( ISPICKVAL([Asset].Accounting_Class__c,"") ) ,
ISPICKVAL( [Asset].Status, "onboarding") , 
OR( ISPICKVAL(PRIORVALUE([Asset].ADV_Classification__c) , ""), 
ISPICKVAL(PRIORVALUE([Asset].Accounting_Code__c) , ""), 
ISPICKVAL(PRIORVALUE([Asset].Accounting_Product__c) , ""), 
ISPICKVAL(PRIORVALUE([Asset].Executive_Summary__c) , ""), 
ISPICKVAL(PRIORVALUE([Asset].Accounting_Class__c) , "") ) ) )

Immediate actions:
Create a Record
RecordType : Task
Assigned To ID  : Assign Task Queue
Related to ID   : {Asset.Id}

This issue is getting for only few profiles, But admin profiles not getting 

I verified, profile have proper access for Task , Asset and required fields

And this is happening after Winter 21 Refresh .................

Do you have any ideas ?

Thanks
VRK
-----------------------
Best Answer chosen by VRK
AbhishekAbhishek (Salesforce Developers) 
INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY, insufficient access rights on cross-reference id:[] is a common issue when you try to update or create data with insufficient access on a record. Kindly check the user profile and check whether the user has access to insert/update that record.

For further suggestions try the method as mentioned below,

https://www.infallibletechie.com/2012/12/insufficient-access-rights-on-cross.html#:~:text=INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY%2C%20insufficient%20access%20rights%20on,to%20insert%2Fupdate%20that%20record.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks.

All Answers

AbhishekAbhishek (Salesforce Developers) 
INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY, insufficient access rights on cross-reference id:[] is a common issue when you try to update or create data with insufficient access on a record. Kindly check the user profile and check whether the user has access to insert/update that record.

For further suggestions try the method as mentioned below,

https://www.infallibletechie.com/2012/12/insufficient-access-rights-on-cross.html#:~:text=INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY%2C%20insufficient%20access%20rights%20on,to%20insert%2Fupdate%20that%20record.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks.
This was selected as the best answer
VRKVRK
Thanks Abhishek,
My issue is related to Data ........but your post help me to proper analysis these types of Issues
I know its difficult to analysis for INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY,
 
VRKVRK
Hi Abhishek,
let me know do u have any idea on this :
https://developer.salesforce.com/forums/ForumsMain?id=9062I000000IS2dQAG
Thanks
VRK