Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /home1/oijoiv2f/public_html/wp-content/themes/entaro/template-posts/single/inner.php on line 23

Custom settings

Custom Settings

They are similar to a custom object, it enables a user to create custom data, make an association between them similar to the custom object. The difference is that the custom settings are exposed in the application cache, this data can then be efficiently accessed without querying the database and reduce the overall overhead at the server and improves the efficiency of the App. The custom setting can be used with validation rule, apex class or formula fields etc.

There are two types of custom settings:

  1. List Custom setting
  2. Hierarchy Custom Setting

List Custom setting provides a reusable set of static data, we can put frequently access data in the custom setting and this can be accessed without SOQL query to the database. Data in list custom setting does not change with profile or user and is available throughout the organization.

Hierarchy custom setting is based on organization’s hierarchy profile logic and is not available throughout the organization. It checks the context of the user for its profile, organization and then returns the lowest value.

The custom setting can be created from UI of Salesforce and can be managed after creating the setting.

Custom Setting methods

These methods are all instance specific methods, they are called and operate by a particular instance of the custom setting. Custom methods are divided based on the type custom setting we are accessing.

List Custom Setting Methods

The following are instance methods are used to fetch values from list custom settings.

  1. getAll(): Map of the dataset is returned in this method
  2. getInstance(dataSetName): it returns the data of the specific dataset mentioned in the method.
  3. getValues(dataSetName): it returns the data specific to the dataset name mentioned in the method.

Hierarchy Custom setting methods

The following are instance methods are used to fetch values from Hierarchy custom settings.

  1. getInstance(): the return result is specific for a particular user.
  2. getInstance(userId):returns the result specific for a  specific user.
  3. getInstance(profileId):returns the result specific for a  specific profile.
  4. getOrgDefault(): Returns the result for the Org
  5. getValues(userId): Returns the result for the specific user.
  6. getValues(profileId): Returns the result for the specific user

Also, Have a look at the below resources:

  1. Best Salesforce Interview Questions book with Apex and Visualforce concept explained

Also, Have a look at the below learning resources:

  1. SOQL (Salesforce Object Query Language)

  2. Apex Trigger Best Practices and the Trigger Framework

  3. Salesforce Interview Question and Answers Part 2

  4. Salesforce Interview Questions on Test Class

  5. Salesforce-lightning-interview-questions-2018

     6. Salesforce Interview Questions Batch Class 

7.  Custom Setting in Salesforce

Sumit Datta

Sumit Datta

I am a 5x Certified Salesforce developer with overall 7 years of IT experience and 5 years of Implementation experience in Salesforce. I am here to share my knowledge and help Beginners in Salesforce to understand the concepts of Apex, Visualforce, Salesforce Lightning and Salesforce Configuration.

4 Comments

  1. Mohsin July 27, 2017 Reply

    Really helpful blog.. please add more needful data..

  2. […] Custom settings […]

  3. […] defined as a test class ? How is a test method defined? ************** more questions to come. Custom setting | SalesforceNextGen. Custom Settings They are similar to a custom object, it enables a user to create custom data, make […]

  4. […] To know more about the custom setting kindly go through the post here. […]

Leave a Comment

Your email address will not be published.