Admin Beginner Flashcards
lookup relationship
links two objects together so that you can “look up” one object from the related items on another object
1:1 or one-to-many
hierarchical relationship
a type of lookup relationship
only available on the User object, e.g. creating management chains between users
master-detail relationships
one object is the master and another is the detail; the master object controls certain behaviors of the detail object, like who can view the detail’s data
app
a set of objects, fields and other functionality that supports a business process. You can see which app you’re using and switch between apps using the App Launcher. (the dots)
objects
tables in Salesforce DB that store a particular kind of information. There are standard objects like Accounts and Contacts and custom objects like the Property object you see in the graphic.
Records
are rows in the object database tables. records are the actual data associated with an object.
fields
columns in the object DB tables
org
short for organization. refers to a specific instance of Salesforce
declarative development
developing without code
you use forms, and drag and drop tools to perform powerful customization tasks
programmatic development
uses Lightning components
places where there might be a salesforce solution
heavy email collaboration reliance on spreadsheets shared local documents time-intensive, repetitive manual steps impact on only a few departments
salesforce architecture
–> applications: sales, service, marketing
(consistent, powerful functionality)
–> platform: lightning, heroku, appexchange
(data services, AI, API)
–> salesforce: CRM data, authentication, access model
(trusted, multitenant cloud)
multitenant cloud
shared resources for data clients
access to the same computing power, data storage, and core features
metadata
data about data
the structure of your salesforce org
standard and custom configurations, functionality, and code are metadata
magic of salesforce: knows how to store and then immediately serve that metadata after you create it
API
allow different pieces of software to connect to each other and exchange information
when you add a custom object or field, the platform automatically creates an API name to retrieve the metadata and data you’re looking for
setup menu: administration
where you manage your users and data; you can do things like add users, change permissions, import and export data, and create email templates
setup menu: platform tools
most customization happens here
view and manage your data models, create apps, modify the user interface, and deploy new features to your users
programmatic development happens here / this is where you manage your code
setup menu: settings
where you manage your company information and org security. you can do things like add business hours, change your locale, and view your org’s history.
data model
a way to model what database tables in a way that makes sense to humans
standard objects
objects that are included in salesforce; common business objects like Account, Contact, Lead, and Opportunity are all standard objects
custom objects
objects you create to store information that’s specific to your company or industry
data import wizard
accessible through the Setup menu
lets you import common standard objects, such as contacts, leads, accounts, as well as data in custom objects.
it can import up to 50,000 records at a time
simple interface to specify the config parameters, data sources, and the field mappings that map the field names in your import file with the field names in Salesforce
data loader
client application that an import up to five million records at a time, of any data type, either from files or a database connection
it can be operated either through the user interface or the command line
in the latter case, you need to specify data sources, field mappings, and other parameters via config files
this makes it possible to automate the import process, using API calls