Salesforce 从一个主详图关系向连接对象添加字段

Salesforce 从一个主详图关系向连接对象添加字段,salesforce,Salesforce,在Salesforce Junction对象中,我可以引用公式和/或用户界面中两个主-详细关系中的字段,还是必须切换到Apex代码?我可以编写apex,但我尽量使用内置工具: 使用Trailhead教程中的示例 1. A Job Position Object (Project Mananger, Sr Developer, etc). 2. A Posting Website Object (Monster.com, Dice.com, etc). 3. A "Job Posting" Jun

在Salesforce Junction对象中,我可以引用公式和/或用户界面中两个主-详细关系中的字段,还是必须切换到Apex代码?我可以编写apex,但我尽量使用内置工具:

使用Trailhead教程中的示例

1. A Job Position Object (Project Mananger, Sr Developer, etc).
2. A Posting Website Object (Monster.com, Dice.com, etc).
3. A "Job Posting" Junction Object to link the two.

Let's say I add a field to the Job Position Object called "Close Date" to keep track of the date the position closes. Can I display this field on the layout page of the Job Posting Junction object without using Apex code and/or a custom VisualForce page?

谢谢

你绝对可以做到。您可以使用公式字段,只引用对象的关系名称和字段名称,例如,类似于Job\u Position\u r.Close\u Date\u c,或者如果愿意,您可以在创建公式时使用“插入字段”按钮,该按钮将允许您通过UI选择所需的对象/字段