0


我希望你能帮我解决我的问题......目前我们有以下结构

+ Account XY
+--+ Opportunity 1
|  +--+ custom Object 1
|     + custom Object 2
+--+ Opportunity 2
|  +--+ custom Object 3
|     + custom Object 4
|     + custom Object 5
|     + custom Object 6
...

帐户 => 机会(查找)
机会 => 自定义对象(主从)

现在我想在相关帐户中显示来自相关机会的所有相关自定义对象
有没有办法解决这个问题而不添加从“成本对象”到“帐户”的查找关系?

4

1 回答 1

0

您将需要此查找,或者您可以使用此列表执行内联 Visualforce 页面。实际上不建议使用查找选项,因为您将在某物上放置一个人为的参考,只是为了让它显示在“帐户”页面中。最好创建一个具有 Apex 的 VF 页面,该页面执行 SOQL 调用以获取相关的 Opportunity->Custom Object 记录。

于 2013-06-18T15:24:51.370 回答