Salesforce platform Flashcards

1
Q

SALESFORCE APP

A

A set of objects, fields, or other functionality that supports a business process.

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

OBJECTS

A

Database Tables in the SALESFORCE database that store a particular kind of information.

Two types:

STANDARD OBJECT: example accounts, contacts

CUSTOM OBJECT: example - property for a realty firm

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

SALESFORCE RECORDS

A

Rows in 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
4
Q

SALESFORCE FIELDS

A

Fields are COLUMNS in object database tables.

Both standard and custom objects have fields.

Fields can be something like address or price.

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

SALESFORCE ORG

A

ORG : organization.

A specific instance of SALESFORCE.

A company can have multiple orgs

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

DECLARATIVE DEVELOPMENT

A

Developing without code.

Uses forms & drag & drop tools to perform customization tasks.

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

PROGRAMMATIC DEVELOPMENT

A

Uses lightning components, Apex code, and Visualforce pages.

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

SALESFORCE low hanging fruit

A
  • heavy email collaboration
  • spreadsheets
  • shared local docs
  • 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
9
Q

Multitenancy

A

Sharing resources

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

Metadata

A

Data about data.

Fields.

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

API

A

APIs allow different pieces of software to connect to each other and share info.

An access point between your org and the database.

SALESFORCE uses the API name to retrieve the metadata data data you are looking for.

Ex: Hi, {contact Name}

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

Setup

A

Where you customize, configure, and support your org

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

Object manager

A

Where you can view and customize standard and custom objects in your org

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

Setup home

Setup menu

A

Quick links to a collection of pages that let you do everything from managing your users to modifying security settings

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

Main window

A

Where you can see what you are working on

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

Setup home menu

A
  • Administration
  • Platform tools
  • settings
17
Q

Setup

—-administration

A
Where you can manage your users and data.
Examples: 
-add users
-change permissions
-import and export data 
-create email templates
18
Q

Platform tools

A

Where you customize.

View and manage your data model
Create apps
Modify the user interface
Deploy new features to your users
***programmatic development (where you manage code)
19
Q

Setup Settings

A

Where you manage your company information and org security

  • add business hours
  • change your locale
  • view your org’a history
20
Q

Too 5 setup pages

A
  1. Company info
  2. Users
  3. Profiles
  4. View setup audit trail
  5. Login history
21
Q

Setup

—company information

A

Find org I’d
See licensing info
Monitor limits

22
Q

Setup Users

A

Reset passwords
Create, deactivate, freeze users
View info about your users

23
Q

Setup profiles

A

Manage who can see what with user profiles

Create custom profiles

24
Q

Setup -

View setup audit trail

A

See 6 months of history in org
Find out who made changes and when
Tool for troubleshooting org configure issues

25
Q

Setup

-login history

A

See 6 months of login history in your org
View date, time, user, IP address, and more
Use for security tracking and adoption monitoring

26
Q

SALESFORCE appexchange

A

Like the App Store

27
Q

How to develop AppExchange strategy

A
  1. Identify departments that use or will use SALESFORCE
  2. Research apps.
  3. Discuss business cases with department heads to determine exact needs.
    - what business problem is being solved?
    - what are major pain points?
    - how many users need the app?
    - what’s your budget?
    - what is timeline?
  4. Download app in. Test environment (like a free developer edition or sandbox). Ensure there are no conflicts with other installed apps or customizations.
  5. Evaluate what has been tested.
28
Q

Where do I install the app, prod or sandbox?

A

Best case is to install first in test environment like sandbox or developer edition org.

29
Q

Do I give app permissions to admins only? All users? Or specific profiles?

A

Depends.

Plan to modify the user profiles before you install the app.

30
Q

Where to find installed SALESFORCE apps

A

In the “package”

  1. Setup
  2. Select “Installed Packages”
  3. Click package you installed.
  4. Click “view components”
    - here you can determine if there are conflicts with your own configurations.
31
Q

Objects and data models

A

A data model is a way to model what database tables look like in a way that makes sense to humans.

32
Q

Types of objects

A

Objects (database tables) come in 3 types:

  1. Standard
  2. Custom
  3. External
  4. Platform
  5. Big objects
33
Q

Standard object

A

Already included with SALESFORCE.

Examples:
Account
Contact
Lead
Opportunity
34
Q

Custom objects

A

Created by you.

Company or industry specific.

35
Q

How to create a custom object

A
  1. Click gear icon
  2. Click object manager
  3. Click create custom object (top right)
  4. Add label name
    5 add plural label name
  5. Check off box for “launch new custom tab wizard after saving this custom object”
  6. Leave values as default
  7. Click save
  8. Click tab style and select one
  9. Next, next, save.
36
Q

How to create a custom field

A
  1. Setup
  2. Object Manager | Property
  3. Fields Relationships
  4. New
  5. Select data type (ex currency)
  6. Next
  7. Fill out fields label and description
  8. Check “required”
  9. Next next save
37
Q

__c

A

Denotes a custom field

38
Q

How to create a record

A
  1. App launcher
  2. Sales
  3. Click “properties” tab in nav bar (under more)
  4. Click new
  5. Enter info
  6. save