Trailhead Week 1 - Thursday Flashcards
data model
a way to model what database tables look like in a way that makes sense
tables of data =
objects
columns =
fields
rows =
records
an account spreadsheet or table =
Account object
- with fields and a bunch of identically structured records
Standard objects
Included with Salesforce.
- Common business objects like:
Account
Contact
Lead
Opportunity
Custom objects
Objects that you create to store info that’s specific to your company or industry
(ex) Property name, Br, Bath, Price/sq foot
Objects are___________ for your information
containers
Field Type: Identity
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.
Field Type: System
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
Field Type: Name
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
Field Type: Custom
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
__________, system, and ____________ are standard on every object in Salesforce.
Identity & Name Fields
Data Type: Checkbox
Simple “yes” or “no”
Data Type: Date or DateTime
Like birthdays or sales milestones