function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Eric Blaxton.ax1862Eric Blaxton.ax1862 

How can I show Account details on related Opportunities?

First off, thank you for reading this and any help.

 

I created a Custom Registration Object that stores Product Registrations tied to an Account.  The requirement is to see these Account Product Registrations on the Opportunity.

 

What do you all recommend?

 

Regards,

Eric

 

 

Atul111Atul111
There are two approaches
1. Create a junction object between Opportunity object and product Registration object including account also add add the object in opportunity related list. Whenever user will create the opportunity you have to create record in this object using trigger.

2. Create a inline VF page and display the all product reg records related to this account.

Please let me know if you have any query.