function readOnly(count){ }
Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
<apex:page standardController="Account" recordSetVar="accounts" tabstyle="account" sidebar="false"> <apex:pageBlock > <apex:repeat value="{!accounts}" var="a"> <apex:pageBlockSection title="{!a.name}"></apex:pageBlockSection> <apex:relatedList list="Opportunities" subject="{!a.Id}" /> </apex:repeat> </apex:pageBlock> </apex:page>
1. Use Visualforce page to create a list view on Account to display related opportunities.
2. Use report the group opportunities by account
Actually iam trying now through vf.can u help me>