Category Archives: Salesforce Administration

This category contains the posts about Salesforce Administration and non-programming features.

Programmatically Check the salesforce field properties

It is very common that we need to check the field properties of a salesforce object. If there are a large number of fields, it is very time consuming to click on each field one at a time from salesforce user interface.  The following Apex code demonstrates how to print the nullable properties of all the fields in the Account object. You can change it to other objects or print different field properties.

Schema.DescribeSObjectResult r = Account.sObjectType.getDescribe();

Map<String,Schema.SObjectField> M = r.fields.getMap();
for(String fieldName : M.keySet()){
Schema.SObjectField field = M.get(fieldName);
Schema.DescribeFieldResult F = field.getDescribe();
Boolean isFieldreq  = F.isNillable() ;
System.debug (fieldName + ‘ is null:  ‘ +  isFieldreq);

}

The features that have to be enabled by Salesforce Support

Posted on

Hide SFDC Brand
Hide SFDC Logo in CSS (Hide Salesforce Logo in Self Service Portal)
Manage Person Accounts
Multi-currency
More Decimals on Price
Single Sign-On
Translation Workbench
Daily Lead Limit
Daily Case Limit
Upload Size (MB)
Max Active Rules Per Entity (mass workflow rules)
Max Sharing Rules Per Entity
Max Actions per rule
Customizable Forecasting
Create Audit Fields (System Modifiable Fields)
Extended Mail Merge
Encrypted Fields
Disable Email Change Notification AND/OR Add Allowed Domain
Trial Expiration Date
Mass Email Permission (for trial)
Massmail Recipient Limit
Roll-Up Summary Field
Enable Content Delivery Setup
API Returns the state [address] regardless of the user locale
Advanced Search in Sidebar
Campaign association to opportunity from contact
Case duration age in business hours
HTML Solutions
Local Names
Quantity schedule revenue related
Rename Standard Objects
End User Languages
Supply Default Opportunity line item values
Territory Management
License Count Synchronization Between Sandbox & Production
Change “System Administrator” user e-mail address
Data Export
Divisions Enabled
Daily Massmail Limit
Increase API Request Limit Override
Daily Incoming Email Limit
One-Off Salesforce Sandbox Refresh
[Please be advised that the only time we are able to approve sandbox refreshes is when the sandbox did not refresh correctly due to a bug or error.]
Migrating Archived Activities