• anirbasdev
  • NEWBIE
  • 10 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 1
    Replies
Hi 
I'm using a trigger that calls a @future method to update my Lead after it's created
when i import more than 10 records it doesn't work
Has someone already had this problem ?
thanks in advance
i need some assistance writing a test class for this extension controller :
public with sharing class ControllerOppRel { public Product2 opptyList; public ControllerOppRel (ApexPages.StandardController stdController) { opptyList = (Product2)stdController.getRecord(); } public List<OpportunityLineItem> getOpprel(){ return [SELECT Id, Product2Id, OpportunityId,Opportunity.Name,Opportunity.StageName,Opportunity.Account.Name, TotalPrice FROM OpportunityLineItem WHERE Product2Id=:ApexPages.currentPage().getParameters().get('id')]; } }
can i integrate a visualforce page on a related list?
I have a request to create a visualforce page on the OpportunityLineItem Object that display all the opportunities associated to the same product as this OpportunityLineItem
 
I have a request to create a visualforce page on the OpportunityLineItem Object that display all the opportunities associated to the same product as this OpportunityLineItem