Custom Field Types - Subscriber Preferences Flashcards

1
Q

The media team at Prestige Worldwide uses a custom object called “subscriptions” in Salesforce to manage prestiges various content offerings. Prestige offers magazines, newspapers, books, and e-books. Subscribers can be subscribed to none or any of the above offerings. What custom field type would be best to capture the subscriber preferences in Salesforce? Choose 1

A. Text field
B. Picklist field
C. Formula field
D. Multi select picklist fields

A

D.

A multi select pick list field allows users to select more than one picklist value from a list. A multi-select picklist field also allows a user to select no pick list values if a subscriber cancels their subscription.

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

What is each value in the multi select picklist separated by in a standard view or when exporting data?

A

Semi-colon (;)

Magazine;Book

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

How does a Formula field get populated?

A

Formula field value is automatically calculated based on other values or functions in Salesforce. A formula field is read-only and does not appear on the record edit page.

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

What is the difference between formula field in a validation rule in Salesforce?

A

Any change in the formula is automatically reflected in the value of the formula field.

Validation rules verify that the user entered data meets the specified standards in a record before the record can be saved by the user.

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

Sally is thinking of using the ISCHANGED function? When does it return true and when does it return false?

A

ISCHANGED(field)
Compares the value of a field to the previous value and returns true if the values are different. If the values are the same, this function returns false.

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

What function should Sally use to determine if a field has a value?

A

ISBLANK(field)

Determines if an expression has a value and returns true if it does not. If it does contain a value this function returns false.

A field is not considered empty if it contains a character, blank space, or zero.

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

What function should Sally use to determine if a value in the pick list field is equal to a specific value she wants to check?

A

ISPICKVAL(picklist, value)

Determines if the value of a pick list field is equal to a text literal you specify.

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

What function do you do you use to reverse a logical expression?

A

NOT(logical)

Returns false or true and true or false

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

What does the function PRIORVALUE() do?

A

Returns to previous value of a field

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

Sally wants to return the current date without the date. Which function should she use?

A. NOW()
B. TIMENOW()
C. TODAY()

A

B.

Returns of value representing the current time without the date.

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

Sally wants to return the current day, month, year without the time. Which function should she use?

A. NOW()
B. TIMENOW()
C. TODAY()

A

C.

Returns the current day, month, year as a date data type.

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

What does the Now() function return?

A

Returns the date/time value of the current moment. It’s useful when you are concerned with specific times of day as well as the date.

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

Sally wants to write a formula to send an email 10 days from the close date, which of the following would accomplish this?

A. Today() - TargetCloseDate =10
B. TargetCloseDate - Today() =10
C. Today() - TargetCloseDate >=10
D. TargetCloseDate - Today() >=10

A

B

Since the Target close date is in the future we will subtract that from today’s date and when that value equals 10, send the email.

Always subtract the greater number from the Lesser number

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