在Salesforce Junction对象中,我可以从公式和/或用户界面中的两个主-详细关系中引用字段吗?还是必须切换到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?谢谢!
发布于 2015-02-07 06:13:05
你绝对可以做到。您可以使用公式字段,只引用对象的关系名称和字段名称(例如,类似于Job_Position__r.Close_Date__c的名称),或者,如果您愿意,也可以在创建公式时使用“插入字段”按钮,这将允许您通过UI选择您想要的对象/字段。
https://stackoverflow.com/questions/28098759
复制相似问题