java - Incomplete WSDL - Account class is missing a child relationship with a custom object -
i generated enterprise wsdl, in account class has bunch of fields , relationships custom , native objects, not have relationship need use in code.
any ideas why it's omitted? know wsdl generated based on permissions of user creating it, that's not case here.
more details, if needed:
custom object name "attachment_category__c". it's child relationship account called r00n30000000vdrheaa.
i expect see following field declaration in account class:
private com.sforce.soap.enterprise.queryresult r00n30000000vdrheaa;
similar present following ones:
private com.sforce.soap.enterprise.queryresult notesandattachments; //standard object private com.sforce.soap.enterprise.queryresult legal_documents__r; //custom object
i expect getr00n30000000vdrheaa() method in account class, same has getlegal_documents__r(), it's not there.
you need go setup , give relationship real name.
Comments
Post a Comment