Advertisement
Guest User

Untitled

a guest
May 6th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. list<oppSector__c> bSectorList = new list<oppSector__c>();
  2.  
  3. bSectorList = [SELECT Id, Opp__c, SecNum__c,
  4. TYPEOF What
  5. WHEN Opportunity THEN Id
  6. END
  7. FROM oppSector__c WHERE Opp__c = :stackFlightIDSet];
  8.  
  9. system.debug('***************Created List*******' + bSectorList.size());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement