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
Scott McArthur 8Scott McArthur 8 

Implementing many to many relationship with opportunity product

I am looking to implement a many to many relationship with the opportunity product and a custom object. This can't be done in the standard way with a junction object as there seem to be limitations around the opportunity product. I did find a way to do it with an intermediate object but i was a bit complicated from a user experience point of view. Also on the opportunity product does not appear to be possible to have an inline visualforce page or a button to a visualforce page. I am guessing re-implmenting that whole standard page in Visualforce page or doing somethign with a Javascript button might be on the only way. Any ideas appreciated
Andrew EchevarriaAndrew Echevarria
How about a text field which just stores the Id, then a VF page with a get function that runs a SOQL query for the object record via the Id and returns the Name?