Trailhead Week 1 - Thursday Flashcards

1
Q

data model

A

a way to model what database tables look like in a way that makes sense

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

tables of data =

A

objects

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

columns =

A

fields

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

rows =

A

records

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

an account spreadsheet or table =

A

Account object
- with fields and a bunch of identically structured records

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

Standard objects

A

Included with Salesforce.
- Common business objects like:
Account
Contact
Lead
Opportunity

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

Custom objects

A

Objects that you create to store info that’s specific to your company or industry
(ex) Property name, Br, Bath, Price/sq foot

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

Objects are___________ for your information

A

containers

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

Field Type: Identity

A

A 15-character, case-sensitive field that’s automatically generated for every record.
- Record’s ID = its URL.
(ex) An account ID looks like 0015000000Gv7qJ.

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

Field Type: System

A

Read-only fields that provide information about a record from the system, like when the record was created or when it was last changed.
(ex) CreatedDate
LastModifiedById
LastModifiedDate

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

Field Type: Name

A

All records need names so you can distinguish between them. You can use text names or auto-numbered names that automatically increment every time you create a record.
(ex) A contact’s name = Julie Bean.
(ex) A support case’s name = CA-1024

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

Field Type: Custom

A

Fields you create on standard or custom objects are called custom fields.
(ex) a custom field on the Contact object to store your contacts’ birthdays

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

__________, system, and ____________ are standard on every object in Salesforce.

A

Identity & Name Fields

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

Data Type: Checkbox

A

Simple “yes” or “no”

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

Data Type: Date or DateTime

A

Like birthdays or sales milestones

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

Data Type: Formula

A

A value that’s automatically calculated based on a formula that you write
(ex) a real estates commission on a home sale

17
Q

You want to think about what kind of ______ you’re trying to store when you create a custom field.

A

Data

18
Q

2 main types of object relationships

A
  1. lookup
  2. master-detail.
19
Q

Lookup Relationships

A

links two objects together so that you can “look up” one object from the related items

20
Q

Lookup relationships can be one-to-one or _____________.

A

one-to-many – “casual”

21
Q

The Account to Contact relationship is one-to-many because …

A

…a single account can have many related contacts.

22
Q

Master-Detail Relationships

A

one object is the master and another object is the detail

23
Q

The master object controls certain ____________ of the detail object, like who can view the detail’s data.

A

behaviors

24
Q

Typically, you use lookup relationships when objects are only related in ________ cases

A

some
(ex) Sometimes a contact is associated with a specific account, but sometimes it’s just a contact

25
Q

Objects in lookup relationships usually work as __________ objects and have their own tabs in the user interface.

A

stand-alone

26
Q

In a master-detail relationship, the detail object _______ work as a stand-alone

A

doesn’t

27
Q

If a record on the master object is deleted, all its related detail records are_________ as well.

A

deleted

28
Q

When you’re creating master-detail relationships, you always create the __________ _______ on the detail object.

A

relationship field

29
Q

Hierarchical relationships are

A

only available on the User object, similar to a lookup relationship

30
Q

You can use ______________ ________ for things like creating management chains between users

A

hierarchical relationship

31
Q

Schema Builder is a tool that lets you ____________ and ______________ your data model.

A

visualize and edit your data model

32
Q

Schema Builder is a tool that lets you _______ and _______ your data model

A

visualize and edit

33
Q

Schema Builder is a handy tool for introducing your Salesforce customizations to a co-worker or explaining the way ___________ throughout your system.

A

data flows