1

我在 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 实现访问自定义字段呢?

4

1 回答 1

3

每当您在实施中使用Enterprise.wsdl文件时,您需要确保每次在 Salesforce.com 环境中创建一些新字段和对象时,刷新 Enterprise.wsdl以导入所有依赖映射,否则将与合作伙伴一起使用。 wsdl _

于 2012-11-15T07:57:31.143 回答