Securing Apex Class
To set Apex class security from the class list page: Click Your Name | Setup | Develop | Apex Classes. Next to the name of the class that you want ....
To set Apex class security from the class list page: Click Your Name | Setup | Develop | Apex Classes. Next to the name of the class that you want ....
To assist with support issues, you may grant your administrator or support personnel the ability to login as you and access your data. In order to test Grant Login access, do ....
The Force.com IDE is a powerful client application for creating, modifying, testing and deploying Force.com applications. Based on the Eclipse platform, it provides a comfortable environment for programmers familiar with ....
To find out what Salesforce edition you have, use the below code SELECT OrganizationType FROM Organization Output from Force.com Explorer:
To check the Scheduled jobs in Salesforce, go to Setupu --> Administration Setup --> Monitoring --> Scheduled Jobs.
There is no limit to the number of records one can access using Explorer. I have retrieved 6,61,603 records.
setTemplateId is used to use Email template using Apex. Sample Code: trigger MemberTrigger on Member__c (after insert) { Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage(); List<String> ccAddresses = new List<String>(); ccAddresses.add('[email protected]'); for(Member__c ....
Collection size exceeds maximum size of 1000 error in Salesforce means List, Set & Map size exceeded more than 1000 to be shown on the Visualforce page. To avoid this, ....
This error means that the Lead record has been converted. Once converted, the Lead record cannot be updated. The Lead object has an IsConverted property. Using that you can check ....
Schema.DescribeFieldResult and Schema.PicklistEntry can be used to fetch picklist values of Salesforce Standard object picklist field. Sample Apex Code: Schema.DescribeFieldResult fieldResult = Account.Type.getDescribe(); List < Schema.PicklistEntry > picklistEntries = fieldResult.getPicklistValues(); ....