Admin Beginner Flashcards

1
Q

lookup relationship

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

hierarchical relationship

A

a type of lookup relationship

only available on the User object, e.g. creating management chains between users

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

master-detail relationships

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

app

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

objects

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Records

A

are rows in the object database tables. records are the actual data associated with an object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

fields

A

columns in the object DB tables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

org

A

short for organization. refers to a specific instance of Salesforce

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

declarative development

A

developing without code

you use forms, and drag and drop tools to perform powerful customization tasks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

programmatic development

A

uses Lightning components

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

places where there might be a salesforce solution

A
heavy email collaboration
reliance on spreadsheets
shared local documents
time-intensive, repetitive manual steps
impact on only a few departments
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

salesforce architecture

A

–> applications: sales, service, marketing
(consistent, powerful functionality)

–> platform: lightning, heroku, appexchange
(data services, AI, API)

–> salesforce: CRM data, authentication, access model
(trusted, multitenant cloud)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

multitenant cloud

A

shared resources for data clients

access to the same computing power, data storage, and core features

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

metadata

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

API

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

setup menu: administration

A

where you manage your users and data; you can do things like add users, change permissions, import and export data, and create email templates

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

setup menu: platform tools

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

setup menu: settings

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

data model

A

a way to model what database tables in a way that makes sense to humans

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

standard objects

A

objects that are included in salesforce; common business objects like Account, Contact, Lead, and Opportunity are all standard objects

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

custom objects

A

objects you create to store information that’s specific to your company or industry

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

data import wizard

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

data loader

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

SOAP API

A

data loader uses the SOAP API to process records
for faster processing, you can configure it to use the Bulk API instead
the Bulk API is optimized to load a large number of records simultaneously
it is faster than the SOAP API due to parallel processing and fewer network round-trips

25
Q

steps to follow before you start importing any data

A
  1. create an export file
  2. clean up the import file for accuracy and consistency. this involves updating the data to remove duplicates, delete unnecessary information, correct spelling and other errors, and enforce naming conventions
  3. compare your data fields with the salesforce fields you can import into, and verify that you data will be mapped into the appropriate salesforce fields. you might need to fine tune the mapping.
  4. make any configuration changes required in salesforce to handle the imported data. for example, you might need to create new custom fields, add new values to picklists, or temporarily deactivate workflow rules.
26
Q

SOAP vs. Bulk

A

While SOAP API retrieves data in batches of up to 2,000 records (or up to 200 records, if two or more custom fields of type long text are selected), Bulk API allows batches of up to 10,000 records. Bulk API batches have the same record count limit for both querying and loading data to Salesforce.

27
Q

data export service

A

an in-browser service, accessible through the Setup menu
it allows you to export data once every 7 days or 29 days
you can automate it
weekly: enterprise, performance, unlimited
29 days: professional/developer

28
Q

data loader

A

client app that you install separately
it can be operated through the user interface or the CLI
the latter option is useful if you want to automate the process, or use APIs to integrate with another system

29
Q

why is creating a custom object tab important?

A

without a custom tab, you can’t add a custom object to an app

30
Q

lightning apps

A

give your users access to sets of objects, tabs, and other items all in one convenient bundle in the nav bar

31
Q

some things you can include in a lightning app

A
standard objects (most)
custom objects
visualforce tabs
lightning component tabs
canvas apps via visualforce tabs
web tabs
32
Q

use lightning experience manager to:

A
  1. view all your salesforce apps
  2. create lightning apps or connected apps
  3. see which apps are visible in lightning experience
  4. easily manage apps
33
Q

what happens when you create a list view chart for an object?

A

When you create a list view chart for an object, such as Opportunities or Leads, the chart is associated with the object. The chart is available for any list view that you have permission to see for that object, except the Recently Viewed list.

34
Q

compact layout

A

control which fields your users see in the highlights panel at the top of a record
also they control the fields that appear in the expanded lookup card you see when you hover over a link in record details, and in the details section when you expand an activity in the activity timeline

35
Q

do compact layouts also control how records display in the salesforce mobile app?

A

yes

Compact layouts also control how records display in the Salesforce mobile app. If your company uses the Salesforce mobile app, you can help your users see what they need on mobile screens, where space is limited and quick recognition of records is important.

36
Q

two ways to customize a page in Lightning Experience

A
  1. customize a page’s layout

2. customize a page’s content

37
Q

page layout editor

A
  1. control which fields, lists of related records, and custom links users see
  2. customize the order that the fields appear in the page details
  3. determine whether fields are visible, read only, or required
  4. control which standard and custom buttons appear on records and related lists
  5. control which quick actions appear on the page
38
Q

3 primary types of custom buttons:

A
  1. list button – appears on a related list on an object record page
  2. detail page link – appears in the links section of the record detail on an object record
  3. detail page button – appears in the action menu in the highlights panel of a record page
39
Q

creating custom buttons and links

A

add link / button

don’t forget to add to page layout

40
Q

object-specific actions

A

automatic relationships to other records and let users quickly create or update records, log calls, send emails, and more (in the context of a particular object)

41
Q

types of object-specific actions

A
  1. Create actions create records that are automatically associated with related records
  2. update a record actions that make it easy for users to edit records
  3. log a call actions - enter notes about calls, meetings, etc.
  4. custom actions invoke lightning components, flows, visualforce pages or canvas apps
  5. send email actions - available only on cases - give users access to a simplified version of the case feed email action in the salesforce mobile app
42
Q

global actions

A

these can be put anywhere that actions are supported
lets users log call details, create records, or send email, all without leaving the page they’re on

Global actions live on a special layout of their own, known as the global publisher layout. It isn’t associated with an object, and it populates the global actions menu in Lightning Experience. Users can access the global actions menu by clickingGlobal Actions menu icon in the Salesforce header.

if an object page layout isn’t customized with actions, then the actions on those object record pages are inherited from the global publisher layout

43
Q

perks of mobile app

A
  1. included with every salesforce license
  2. app is plug and play
  3. cross platform (runs on android and ios)
  4. offline capabilities
  5. works with desktop version of lightning experience
  6. not just an app; it’s a platform; customizable
44
Q

notes about mobile navigation

A
  • you can set different menu configs for different types of users / users with certain permissions can change their navigation tabs
  • if you want to include visualforce pages, lightning pages, or lightning components in your lightning apps, you must create tabs for them
  • before adding a page to the salesforce mobile app, make sure the page is enabled for mobile
45
Q

quick actions

A

offer a fast way for mobile users to launch a specific workflow in the Salesforce mobile app, like creating records, logging calls, or sharing files.

46
Q

quick actions are great for mobile because…

A
  1. you can create custom actions tailored to your own business processes and use cases
  2. each action has its own unique page layout, so you can limit the fields to just the ones mobile users truly need
  3. you can prepopulate fields on the page layout to save mobile users some time
47
Q

object-specific actions

A
  1. can update records
  2. can create records that are automatically associated with related information. for example, a user could initiate an action that simultaneously creates a contact and associates it with an account.
48
Q

how do you expose object-specific actions in the mobile app?

A

you don’t add them to the global publisher; instead, you make them available to users by editing the object’s page layout

49
Q

don’t remove a required field from the layout unless

A
  1. the field has a default value
  2. you specify a predefined field value for the action
  3. the field already contains data; for example: if the action updates a record, the user entered the required information when they initially created the record
50
Q

4 scenarios in user engagement

A
  1. onboarding: show users where to begin and what’s new or changed. get them to the “aha moment” quickly.
  2. feature discovery and adoption: help beginners become experts; help experienced users learn new things; raise awareness of new features and releases
  3. troubleshooting help: provide just-in-time prompts that help users learn by doing; offer reliable resources and access to support
  4. deeper learning: give users the skills and information they need to get as much value as possible out of your product or application
51
Q

push method

A

use push method when users may not notice or seek out help, but would benefit from assistance

52
Q

pull method

A

use when user is motivated to seek help
help menu!
info bubble!
tool tips!

53
Q

prompt

A

single, small pop-up window that directs users’ attention to a feature, update or call to action
the user notices the prompt, ingests the information or takes action, and moves on

54
Q

walkthrough

A

a series of connected prompts that provides a step-by-step guided experience across a single or multiple page for in-context learning

  • onboard new hires
  • highlight a series of key but related features
  • provide a navigational or feature overview
  • guide users through a multi-step procedure
55
Q

report

A

simply put: a list of records that meet the criteria you define
but you can filter, group, and do math – even make charts!

56
Q

dashboard

A

visual display of key metrics and trends for records in your org

57
Q

a report type determines…

A

which fields and records are available for use when creating a report

58
Q

matrix report

A

when you summarize rows and columns