Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. //allcandidates is a list of records
  2.  
  3. for(m=0;m<allcandidates.size()-1; m++) {
  4.  
  5. System.debug(' m' + allcandidates[m]); //2019-01-02 04:18:00
  6. System.debug('m+1' + allcandidates[m+1]); // 2013-02-19 04:19:00
  7.  
  8. if(allcandidates[m].Checkin_Date__c <= allcandidates[m+1].Checkin_Date__c)
  9.  
  10.  
  11. {
  12. System.debug('Condition is true')
  13.  
  14. }
  15.  
  16. List<MyObject__c> records = [
  17. SELECT ...
  18. FROM MyObject__c
  19. WHERE ...
  20. ORDER BY Checkin_Date__c DESC
  21. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement