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?
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!