gpt4 book ai didi

salesforce - SOQL:访问联系人所有者字段

转载 作者:行者123 更新时间:2023-12-01 12:37:52 25 4
gpt4 key购买 nike

我正在尝试编写一个 SOQL 查询,它将获取联系人对象的标准字段之一“联系人所有者”,这是一个查找(用户)字段:

enter image description here

字段名称是“Owner”,但是当我尝试查询时

SELECT Contact.Owner FROM Contact

我收到一条错误消息,指出没有这样的字段。

SELECT Contact.Owner, Contact.Name, Contact.Rule_Class__c
^
ERROR at Row:1:Column:8
No such column 'Owner' 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.

如何抓取这个字段?

谢谢!

最佳答案

这是关系字段的正常行为

enter image description here

你可以把OwnerId想象成一个别名

SELECT LastModifiedBy.Name,  LastModifiedBy.Id, LastModifiedById FROM Contact 

SELECT CreatedBy.Name, CreatedBy.Id, CreatedById FROM Contact

也可以使用 Workbench或开发人员控制台或 Eclipse 来构建您的查询,而不是使用 salesforce 设置界面

工作台 enter image description here

开发者控制台 enter image description here

关于salesforce - SOQL:访问联系人所有者字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27950181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com