-
DarkLight
The following articles describe how to use the Single Dataloader to insert data into Salesforce. The data is inserted via a CSV file.
- Log in to your ARM account.
- Hover your mouse over the DATALOADER module and select DATALOADER.The dataloader screen is best viewed when the zoom setting is 75% on your Chrome/Firefox browser.
- Click INSERT on the right side of the screen.
- Choose your Salesforce Org and your org environment (Production or Development Edition, Sandbox, or Pre-Release).
- The corresponding URL and your Username are automatically generated based on the above selection.
- Click LOGIN AND FETCH OBJECTS to fetch all the objects from your Salesforce Org.
- Select the object in which you wish to insert the data. For example, Account, Contact, Lead, etc. You can use the search function to search through your objects and the filter button to quickly filter your standard/custom objects.
- Click NEXT.
- On the next screen, you can import your file from your local directory. Upload the CSV file you wish to import by clicking the UPLOAD button.
- A notification pop-up will display the number of records that will be impacted. Click OK.
- The next step is to prepare your field mappings. Field mappings match columns in your CSV to fields in your Salesforce Org.
- You can automatically map the members and the fields using Automap. It compares the destination fields with the fields available in uploaded CSV files and, if both match, the value is selected automatically.
- The number of fields mapped out of the total number of fields is displayed below the Automap checkbox.
- Use the search option to look up a field by name from the long list in order to map it.
- Use the Filter dropdown to choose which fields to display:
- ALL: Displays all fields whether they have been mapped or not.
- MAPPED: Displays only the fields which have been mapped yet.
- UNMAPPED: Displays only the fields which haven't been mapped yet.
After selecting the filter, the list updates automatically as you map or unmap each field.
- Make sure you have mapped all the required fields. Otherwise, you can't move forward. Click NEXT.
- On the Process Summary screen, you can:
- Give the process/job a Name.
- Select the Category. Categories are used to classify and group similar processes having similar functionality. In simple terms, you are assigning similar processes to a category. You can either select an existing category or create a new category by clicking the + icon.
- View the main Object.
- View the operation Type (Insert).
- View the number of impacted Records.
- Use Bulk API.About Bulk APIThe Bulk API is based on REST principles and is optimized for inserting, updating, and deleting large sets of data. You can use the Bulk API to process jobs either in serial or parallel mode. Processing batches serially means running them one after another, while processing batches in parallel means running multiple batches simultaneously. When you run a bulk API job, processing more batches in parallel means giving that job a higher degree of parallelism, providing your overall run with better data throughput.
- You can schedule your tasks so they start running regularly. You can choose between Daily, Weekly, or On-demand schedules.
- Finally, click on SAVE to save your task and run it later.
- Your task is listed on top of the lists in the Dataloader Summary screen.
- Click Run to start dataloader immediately before the scheduled time.
- Select the configurations here:
- Use Batch Size.About Batch SizeWhenever the Bulk API checkbox is left unchecked, the Batch API is used.
Salesforce Batch API is based on SOAP principles and is optimized for real-time client applications that update small numbers of records at a time. Although SOAP API can also be used for processing large numbers of records, when the data sets contain hundreds of thousands of records, it becomes less practical. In those cases, Bulk API is the best option. Batch API processes data in smaller batches than bulk API, resulting in a higher API call usage per operation on large volumes of data. - Disable workflow rules.About Disable workflow rulesThe workflows of the Salesforce objects are deactivated, and the data is transferred from the source to the destination sandbox. Once the migration is complete, workflows are reactivated.
- Disable validation rules.About Disable validation rulesValidation rules verify that the data a user enters in a record meets the criteria you specify before the user can save the record. On selection, all the validation rules of the Salesforce objects are deactivated, and the data is transferred from the source to the destination sandbox. Once the migration is complete, validation rules are reactivated.
- Insert/update with null values.
- Use UTF-8 file encoding for file read and write operations.
- Use Batch Size.
- Click RUN.
- The number of successful or failed records inserted can be seen in the Results of Last Run section. The values in this field are updated dynamically while the job is still running. You can view the records or download them to your local system. The records are generated in CSV format.
- The number of impacted records can be seen in the Records section. The value in this field is updated dynamically while the job is still running.
More Options
- Edit: Modifies or updates the process details.
- Abort: Aborts the process while it is still running.
- Schedule: Sets the schedule at which the process must run.
- Delete: Deletes the insert process
- Log: Provides information about the execution of the inserted task.
- VR/WFR: ARM lists all the validations/workflow rules that were set. The UI lists all the validation rules, and users have to enable them for the disabled validation rules (if required). For more info, refer to the article: Validation/ Workflow Rules. Sample VR/WFR attached:
- Clone: Creates a copy (clone) of the insert process. Operation type and object name are displayed. Enter the Process Name in the field. The default Salesforce Org is automatically selected. To choose a different org use the dropdown list. To upload a different CSV file select the Choose Different Data CSV File check box. Finally, click Clone.
Was this article helpful?