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
salesforcerrrsalesforcerrr 

visualforce page listing all opportunity products

Hi, 

i would need to visualize all opportunity products (opportunity line items) in one visualforce page.
- also allowing me preferably to create views like with standard record types
- being able to edit records directly from the view

 A simple solution like this is possible for activities: 
<apex:page >
    <apex:enhancedList customizable="true" type="Activity" height="500"/>
</apex:page>
However for opportunity line items the best thing i could find in the forum was post: https://developer.salesforce.com/forums/?id=906F0000000MNcGIAW

Is it possible to have this generalized and not just create a visualforce page listing products from a specific opportunity but all? 

Thank you