Adobe Air Salesforce 使用 id 字段获取详细信息

发布于 2024-09-25 13:39:46 字数 190 浏览 3 评论 0原文

我在使用 Adob​​e Air 获取联系信息时遇到问题。

如果我从 Saleforce 导入联系人,我得到的只是他们所属帐户的 ID。

如何将此 ID 转换为帐户名称。

其他对象(例如案例、机会等)也存在类似的问题,其中所有者、帐户等关键字段仅包含父对象的 ID。

感谢您的帮助

罗伊

I am having a problem using Adobe Air to get contact information.

If I import the contacts from Saleforce all I get is the Id of the Account to which they belong.

How do I convert this Id to the Account Name.

There are similar problems with other objects like Cases, Opportunities, etc where key fields like Owner, Account, etc just contain the Id of the parent object.

Thanks for any help

Roy

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

轮廓§ 2024-10-02 13:39:46

如果您使用查询调用来获取数据,则可以使用名为 SOQL-R 的功能来获取相关数据作为该查询的一部分。例如,此查询将返回联系人的姓名字段和相关帐户的姓名字段。

select name, account.name from contact

您可以将其用于几乎所有外键字段,例如

select name, account.name, lastModifiedBy.alias, account.owner.name from contact

SOQL-R 参考文档有更多信息&样品。

If you're using the query call to fetch the data, then you can use a feature called SOQL-R to fetch related data as part of that query. e.g. this query will return both the contact's name field, and the name field from the related account.

select name, account.name from contact

you can use this for almost all foreign key fields, e.g.

select name, account.name, lastModifiedBy.alias, account.owner.name from contact

The SOQL-R reference docs has more info & samples.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文