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
SAHG-SFDCSAHG-SFDC 

Display All Oppty Products for an Opportunity

I am trying to send the user to the Oppty products page for a particular oppty ,  This is taking the user to the individual oppty product , How to send the user to list of oppty products?
 
<td>
                          <apex:outputLink value="/{!p.id}/e?retURL=/{!Opportunity.id}"
                             target="_top" style="color:blue ;" >Edit All</apex:outputLink> 
                        </td>
Advance thanks :)
 
Rashi Garg 30Rashi Garg 30
Try using this.
 
<td>
 <apex:outputLink value="/00k?id={!Opportunity.id}&retURL=/{!Opportunity.id}"
           target="_top" style="color:blue ;" >Edit All</apex:outputLink> 
 </td>
Hope this helps.

Thanks,
Rashi