• Praveen Kumar 443
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies

Hi all,

 

          how to display list view with multiple standard objects in visual force page. 

 

I display only contact list views, but want display more than one standard object 

 

 

List Name List id

New This Week00B9000000464v7EAA
New Last Week00B9000000464vIEAQ
Platinum and Gold SLA Customers00B9000000464vZEAQ
Recently Viewed Accounts00B9000000464vhEAA
All Accounts00B9000000464viEAA
My Accounts00B9000000464vqEAA

 

so how to display multiple standard object list views 

 

my visual force page:

  

<apex:page standardController="contact" recordSetVar="contact" extensions="aaa">
<apex:pageBlock title="Account Lists">
<apex:form id="theForm">
<apex:pageBlockSection >
<apex:outputpanel >
<table class="list">

<tr>
<th >List Name</th>
<th>List id</th>
</tr>

<apex:repeat value="{!listviewoptions}" var="li">
<tr>
<td > <apex:outputText value="{!li.label}"></apex:outputText></td>
<td ><apex:outputText value="{!li.value}"></apex:outputText></td>
</tr>
</apex:repeat>

</table>
</apex:outputpanel>
</apex:pageBlockSection>
</apex:form>
</apex:pageBlock>
</apex:page>

Hi Board,

I'm facing a issue in trigger where in i'm trying to perform a dml statement using List<sObject>.

It throws exception for me when i have more then 900 records in my list.

Error message is stated below:

System.TypeException: Cannot have more than 10 chunks in a single operation. Please rearrange the data to reduce chunking.