Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public class Examplefilter {
  2.  
  3. Public Static List<Custom_ObjectA> searchforCustom_ObjectA (string Global_Enterprise__c, string Main_HQ__c, String Opportunity__r.Name, String Account_Name__r.Name) {
  4. Return[SELECT Id, Opportunity__r.Name, Account_Name__r.Name, Main_HQ__c, Global_Enterprise__c
  5. FROM Custom_ObjectA
  6. WHERE Main_HQ__c = :Main_HQ__c AND Global_Enterprise__c = :Global_Enterprise__c];
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement