Adobe Air Salesforce 使用 id 字段获取详细信息
我在使用 Adobe 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用查询调用来获取数据,则可以使用名为 SOQL-R 的功能来获取相关数据作为该查询的一部分。例如,此查询将返回联系人的姓名字段和相关帐户的姓名字段。
您可以将其用于几乎所有外键字段,例如
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.
you can use this for almost all foreign key fields, e.g.
The SOQL-R reference docs has more info & samples.