Changeset 6


Ignore:
Timestamp:
2010-11-29 19:07:10 (18 months ago)
Author:
jmccormack
Message:

Upgrade to Winter '11 project format

Location:
Lexnet - View All History Add-On
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • Lexnet - View All History Add-On/.settings/com.salesforce.ide.core.prefs

    r4 r6  
    1 #Tue Jun 29 14:52:44 PDT 2010 
     1#Tue Nov 09 21:19:02 PST 2010 
    22eclipse.preferences.version=1 
    3 endpointApiVersion=19.0 
     3endpointApiVersion=20.0 
    44endpointEnvironment=Production/Developer Edition 
    55endpointServer=www.salesforce.com 
    66httpsProtocol=true 
    7 ideVersion=19.0 
     7ideVersion=20.0 
    88keependpoint=false 
    9 metadataFormatVersion=19.0 
     9metadataFormatVersion=20.0 
    1010namespacePrefix= 
    1111packageName=unpackaged 
  • Lexnet - View All History Add-On/src/classes/ViewAllActivityController.cls

    r2 r6  
    137137        } 
    138138         
    139         String query = 'Select (Select Id, AccountId, WhoId, WhatId, Subject, IsTask, ActivityDate, OwnerId, Status, ActivityType, Description, CreatedDate, CreatedById, LastModifiedDate, Who.Name, Owner.Name, Archtics_CreatedBy__c From ActivityHistories ah order by ActivityDate DESC, LastModifiedDate DESC limit 500) From ' + objectType + ' where Id = :recordId'; 
     139        String query = 'Select (Select Id, AccountId, WhoId, WhatId, Subject, IsTask, ActivityDate, OwnerId, Status, ActivityType, Description, CreatedDate, CreatedById, LastModifiedDate, Who.Name, Owner.Name From ActivityHistories ah order by ActivityDate DESC, LastModifiedDate DESC limit 500) From ' + objectType + ' where Id = :recordId'; 
    140140         
    141141        List<Account> records = Database.query(query); 
     
    157157        } 
    158158         
    159         String query = 'Select (Select Id, AccountId, WhoId, WhatId, Subject, IsTask, ActivityDate, OwnerId, Status, ActivityType, Description, CreatedDate, CreatedById, LastModifiedDate, Who.Name, Owner.Name, Archtics_CreatedBy__c From ActivityHistories ah order by ActivityDate DESC, LastModifiedDate DESC limit 500) From ' + objectType + ' where Id = :recordId'; 
     159        String query = 'Select (Select Id, AccountId, WhoId, WhatId, Subject, IsTask, ActivityDate, OwnerId, Status, ActivityType, Description, CreatedDate, CreatedById, LastModifiedDate, Who.Name, Owner.Name From ActivityHistories ah order by ActivityDate DESC, LastModifiedDate DESC limit 500) From ' + objectType + ' where Id = :recordId'; 
    160160         
    161161        List<Contact> records = Database.query(query); 
Note: See TracChangeset for help on using the changeset viewer.