Hierarchical
A special lookup relationship available for only the user object. It lets users
use a lookup field to associate one user with another that does not directly or
indirectly refer to itself. For example, you can create a custom hierarchical
relationship field to store each user's direct manager.
Batch size
In a single insert, update, upsert, or delete
operation, records moving to or from
Salesforce are processed in increments of this
size. The maximum is 200 records. We
recommend a value between 50 and 100.
The maximum value is 10,000 if the Use
Bulk API option is selected.
Start at row
If your last operation failed, you can use this setting to begin
where the last successful operation finished.
Error messages can only be displayed at the top of the page in validation
rules for case milestones and Ideas.
2.What are the different actions that can be made using data loaders?
Using Data loaders we can perform 6 type of action.They are
Insert – insertion of new records
Update – Updating existed records.
Upsert – Update and Insertion of records
Delete – Deletion of records.
Export – Extraction of all records.
Export All – It extracts all records from salesforce including Recycle Bin
records
Soft delete
Hard delete
8.How to handle comma fields while uploading using Data loader?
Data Loader cannot handle commas implicitly because there is no logical path to
follow. If we have any comma field in the Data Loader CSV file for import of the
field content, we have to close the content with double quotation marks “content “.
Then data Loader will be able to handle this operation.
8.How to handle comma fields while uploading using Data loader?
Data Loader cannot handle commas implicitly because there is no logical path to
follow. If we have any comma field in the Data Loader CSV file for import of the
field content, we have to close the content with double quotation marks “content “.
Then data Loader will be able to handle this operation.
6. What is the difference between ISBLANK() AND ISNULL()?
ISNULL() works only for number data type fieds, if we don't populate with value for
number fields it will return true.
ISNULL() won't support TEXT data type fields because text fields never become
null.
ISBLANK() supports both number as well as text data types.
8. What are different ways to make field required in salesforce?
1. While field creation, specify required field as true.
2. Through page layouts
3. Validation rule
4. Apex trigger
This account is qualified