function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
shekhar 46shekhar 46 

custom setting & custom metadata

where does the custom setting & custom metadata stored so that we can access them
Best Answer chosen by shekhar 46
SwethaSwetha (Salesforce Developers) 
HI Shekhar,
If you are looking for click path via UI

> For custom settings: Setup | Quick Find | Custom settings | Manage
> For custom metadata: Setup | Quick Find | Custom Metadata Types | Manage Records


Related posts: https://techguysfdc.medium.com/difference-between-custom-settings-and-custom-metadata-types-1bdcdeeb74e6

https://salesforce.stackexchange.com/questions/74049/what-is-the-difference-between-custom-settings-and-custom-metadata-types

If this information helps, please mark the answer as best. Thank you

All Answers

SwethaSwetha (Salesforce Developers) 
HI Shekhar,
If you are looking for click path via UI

> For custom settings: Setup | Quick Find | Custom settings | Manage
> For custom metadata: Setup | Quick Find | Custom Metadata Types | Manage Records


Related posts: https://techguysfdc.medium.com/difference-between-custom-settings-and-custom-metadata-types-1bdcdeeb74e6

https://salesforce.stackexchange.com/questions/74049/what-is-the-difference-between-custom-settings-and-custom-metadata-types

If this information helps, please mark the answer as best. Thank you
This was selected as the best answer
Deepa K 27Deepa K 27
Custom Metadata : All custom metadata is exposed in the application cache, which allows access without repeated queries to the database. The metadata is then available for formula fields, validation rules, flows, Apex, and SOAP API.  Custom Metadata Types stores the records in a memory cache which allows faster retrieval of data when you execute a query.

Custom Settings : All custom settings data is exposed in the application cache, which enables efficient access without the cost of repeated queries to the database. Formula fields, validation rules, flows, Apex, and SOAP API can then use this data. While custom settings data is included in sandbox copies, it is treated as data for the purposes of Apex test isolation. Apex tests must use SeeAllData=true to see existing custom settings data in the organization. As a best practice, create the required custom settings data in your test setup.