Skip to main content
Anil Madithati (Fivetran) 님이 Salesforce CPQ에 글을 올렸습니다

When im trying to amend a contract getting this generic property error, Cannot read property 'lineVO' of null. is anyone have intel on how to fix it? 

댓글 4개
  1. 2025년 11월 24일 오후 12:22

    Select Id, SBQQ__Contract__c,SBQQ__Product__r.Name,  SBQQ__ProductOption__c, SBQQ__RequiredById__c,SBQQ__ProductOption__r.SBQQ__ConfiguredSKU__c, SBQQ__ProductOption__r.SBQQ__ConfiguredSKU__r.Name,  SBQQ__RequiredByProduct__c, SBQQ__RootId__c,SBQQ__ContractNumber__c from SBQQ__Subscription__c where SBQQ__ProductOption__c != null and (SBQQ__RequiredById__c = null or SBQQ__RootId__c = null or SBQQ__RequiredByProduct__c = null) and SBQQ__Contract__r.EndDate > TODAY and SBQQ__Contract__c = 'XXXXXXXXXXXXXXXXXXXXX'   

     

    Use this above query and check for correct requiredbyid and root id on subscription record if they are null or incorrect.  This will resolve your error. 

     

    Thanks!

0/9000