• Deepu Sandeep
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
How can I modify an existing page layout so that the page layout assigned to managers display

Cases
Acitivity History
Notes and Attachments
Partners

If the page layout is assigned to sales rep those above mentioned related lists should not be display . Is there any way to achieve this ?
How can I modify an existing page layout so that the page layout assigned to managers display

Cases
Acitivity History
Notes and Attachments
Partners

If the page layout is assigned to sales rep those above mentioned related lists should not be display . Is there any way to achieve this ?
Hello all,

I want to pass the List values of an object to the other Visualforce page using a query. Since we cannot pass list as parameter to other page i am using

public PageReference DisplayDetails() {
      
        PageReference reRend = new PageReference('/apex/wrapperCustomObjpage2');
        reRend.setRedirect(false);
        return reRend;
       
    }

But the variables in the controller were reintializing after entering into the other page. I am not able to display the data into pageblocktable. Could any one suggest me the best approach