Salesforce first error: INVALID_CROSS_REFERENCE_KEY, Entity not available

1.5k Views Asked by At

When I am trying to run my test class I am getting the below error.

System.DmlException: Update failed. First exception on row 0 with id 8023B000000ekyaQAA; first error: INVALID_CROSS_REFERENCE_KEY, Entity not available: [PricebookEntryId]

Also in the stack trace of debug log I am getting the below message

Class.OBOrderLineItemCreate.updateObjectMethod: line 367, column 1

I have Created the product and referenced the Standard price book. And have created the Pricebookentry, Order and Order line item. I am not sure why I am getting this error. Can anyone please help me with this and let me know what am I doing wrong? Thanks in advance.

My test class code is as below

Product2 prod = new Product2();
        prod.Name                = 'Inb Enterprise';
        prod.Description         = 'Annual subscription,80 topics, 40,000 company locations';
        prod.productCode         = 'ABC';
        prod.Service_Type__c     = 'Inb';
        prod.OB_Sub_Type_Name__c = 'Inb';
        prod.isActive            = true;
        insert prod;

        Pricebook2 standardPricebook = new Pricebook2(
            Id = Test.getStandardPricebookId(),
            IsActive = true
        );

        update standardPricebook;

        standardPricebook = [SELECT Id, IsStandard FROM Pricebook2 WHERE Id = :standardPricebook.Id];


        //Id pricebookId = Test.getStandardPricebookId();
        //Test.startTest();
        PricebookEntry standardPrice = new PricebookEntry();
        standardPrice.Pricebook2Id = standardPricebook.Id;
        standardPrice.Product2Id = prod.Id;
        standardPrice.UnitPrice = 10000;
        standardPrice.IsActive = true;
        insert standardPrice;


        Order ord                       = new Order();
        ord.Name                        = 'Test Order';
        ord.AccountId                   = acc.Id;
        ord.Pricebook2Id                = standardPricebook.Id;
        ord.Customer_Success_Manager__c = am.Id;
        ord.Agency_Name__c              = agc.Id;
        ord.OpportunityId               = opp.Id;
        ord.Purchase_Order__c           = '783983';
        ord.EffectiveDate               = Date.today();
        ord.Status                      = 'Draft';
        ord.OBSyncStatus__c             = 'Inactive';
        ord.End_Date__c                 = Date.today();
        insert ord;

        OrderItem oli                = new OrderItem();
        oli.OrderId                  = ord.Id;
        oli.PricebookEntryId         = standardPrice.Id;
        oli.Quantity                 = 5;
        oli.UnitPrice                = 35;
        oli.OBSyncStatus__c          = 'Inactive';
        oli.Line_Item_Start_Date__c  = Date.Today();
        oli.Line_Item_End_Date__c    = Date.Today();
        oli.Bonus_Units__c           = 25;
        oli.Geography__c             = 'US';
        oli.Unique_Line_Item_Name__c = 'Inb Order';
        insert oli;
1

There are 1 best solutions below

0
On

You don't need the code of instantiating the Pricebook2 object. Get rid of that code and use the code below.

standardPrice.Pricebook2Id = Test.getStandardPricebookId(). 

Do the same for ord.Pricebook2Id also.