HI,
I have a requirement for creating data maps for multiple entity. I want to import the data to two different entities from a single CSV file. I was trying to create the data maps for the same and faced some issues while importing the data. . Following is the XML code i used for creating the data map. Can any one help me ASAP. What should be the value for Source Entity Name..?
<Map Name="Project and Property Map" Source="Import">
<Description>Data map created automatically using the map settings specified during an import.</Description>
<EntitiesPerFile>Multiple</EntitiesPerFile>
<EntityMaps>
<EntityMap TargetEntityName="md_project" SourceEntityName="Book1" Dedupe="Ignore" ProcessCode="Process">
<AttributeMaps>
<AttributeMap>
<SourceAttributeName>ProjectName</SourceAttributeName>
<TargetAttributeName>md_name</TargetAttributeName>
<ProcessCode>Process</ProcessCode>
</AttributeMap>
</AttributeMaps>
</EntityMap>
<EntityMap TargetEntityName="md_property" SourceEntityName="Participating" Dedupe="Eliminate" ProcessCode="Process">
<AttributeMaps>
<AttributeMap>
<SourceAttributeName>PropertyName</SourceAttributeName>
<TargetAttributeName>md_name</TargetAttributeName>
<ProcessCode>Process</ProcessCode>
</AttributeMap>
</AttributeMaps>
</EntityMap>
</EntityMaps>
</Map>
*This post is locked for comments