Module 04 - Customizing Fields Flashcards
What is a field in CRM?
Attribute, in CRM. A column, in the SQL database in the table for the entity.
Each field in CRM requires two things, what are they?
A name that is unique and a type that describes the data that can be stored in the field.
What is the SQL data type equivalent of a CRM single line of text?
nvarchar(n), 2 times n bytes
What is the SQL data type equivalent of a CRM Option Set?
int, 4 bytes
What is the SQL data type equivalent of a CRM Two Options?
bit (yes no, true false, etc), up to 1 byte
What is the SQL data type equivalent of a CRM whole number?
int, 4 bytes
What is the SQL data type equivalent of a CRM floating point number?
float, 8 bytes
What is the SQL data type equivalent of a CRM currency?
money, 8 bytes
What is the SQL data type equivalent of a CRM decimal number?
decimal, 13 bytes
What is the SQL data type equivalent of a CRM multiple lines of text?
nvarchar(max), 2 times number of characters used bytes
What is the SQL data type equivalent of a CRM Date and Time?
date time, 8 bytes
What is the SQL data type equivalent of a CRM Lookup?
uniqueidentifier, 16 bytes, value links to another record (GUID)
What is the SQL data type equivalent of a CRM Image
uniqueidentifier, 16 bytes, value links to an image record (GUID)
When do you need a good understanding of the structure of the SQL database?
When you’re analyzing / improving performance.
What are single line text fields used for?
Text box controls containing small amounts of data.
Single line text format; email?
Validated to conform to an email address. Will open email in email client if clicked.
Single line text format; text?
Plain text, simple line.
Single line text format; text area?
General format for any text, multi-line scrolling text box.
Single line text format; URL?
Store text as URL to start separate browser window if clicked.
Single line text format; Ticker Symbol?
Display quote for stock ticker symbol, as link
Single line text format; Phone?
Supports automatic dialing through Microsoft Lync.
Max length of single line of text fields?
100 characters by default. Can enter value between 1-4000.
What is IME and what do you use it for?
Input Method Editor. Use it to enter Chinese, Japanese, Korean characters. Can active/inactive.
What are option sets and what are they also known as?
Displays list of options from which a user can select on option, aka. picklists.