[Applies to: Microsoft Dynamics CRM 4.0]
In Microsoft Dynamics CRM Online, list values are created automatically during import if they are not present in Microsoft Dynamics CRM Online. You can create a maximum of 400 list values during the import using the Import Data Wizard. If you need to create more than 400 picklist values, the file should be split into two files.
To prevent records from failing to import, you can either:
List value mapping is not case-sensitive.
Suggested Preparation in Source Files
If you specify that the wizard should customize Microsoft Dynamics CRM Online list values, review your source values to make sure your values are consistent. Import can be a useful opportunity for improving the quality of your data.
Example of Using a Data Map to Map List Values
The following steps show how you would edit the data map for a column in your lead file called "Source", which maps to the Microsoft Dynamics CRM Online Lead Source (leadsource) attribute. The steps below assume you are creating your own data map. For details of the data map elements used in the example, see Data Map Schema Reference.
Source List Value |
Microsoft Dynamics CRM Online List Value |
Comments |
|---|---|---|
"web site" |
Web |
You can map multiple source values to one target value. This can be a useful way to improve data consistency as part of import. |
"our web site" |
Web |
You can map multiple source values to one target value. This can be a useful way to improve data consistency as part of import. |
"trade show" |
Trade Show |
Because mapping is not case-sensitive, this source value will be automatically mapped. |
empty |
Other |
In the mapping, you can specify how empty values are processed. |
<AttributeMap>
<SourceAttributeName>Source</SourceAttributeName>
<TargetAttributeName></TargetAttributeName>
<ProcessCode>Ignore</ProcessCode>
</AttributeMap>
<SourceAttributeName>Source</SourceAttributeName>
<TargetAttributeName>leadsource</TargetAttributeName>
<ProcessCode>Process</ProcessCode>
</AttributeMap>
<SourceAttributeName>Source</SourceAttributeName>
<TargetAttributeName>leadsource</TargetAttributeName>
<ProcessCode>Process</ProcessCode>
<PicklistMaps>
<PicklistMap>
<SourceValue>web site</SourceValue>
<TargetValue>Web</TargetValue>
<ProcessCode>Process</ProcessCode>
</PicklistMap>
<PicklistMap>
<SourceValue>web site</SourceValue>
<TargetValue>8</TargetValue>
<ProcessCode>Process</ProcessCode>
</PicklistMap>
<PicklistMap>
<SourceValue>our web site</SourceValue>
<TargetValue>8</TargetValue>
<ProcessCode>Process</ProcessCode>
</PicklistMap>
<PicklistMap>
<SourceValue></SourceValue>
<TargetValue>10</TargetValue>
<ProcessCode>Process</ProcessCode>
</PicklistMap>
</PicklistMaps>
</AttributeMap>