我在 Salesforce 的联系人对象中创建了一个自定义字段,其 API 名称为“Resume_Text__c”,并且我正在通过编写以下 SOQL 使用 Java 实现进行 SOAP 调用以获取该字段的值。
SELECT Resume_Text__c FROM Contact
但是执行查询会引发以下异常。
No such column 'Resume_Text__c' on entity 'Contact'. If you are attempting to use a custom field, be sure to append the '__c' after the custom field name. Please reference your WSDL or the describe call for the appropriate names.'
那么如何通过 Soap API Java 实现访问自定义字段呢?