Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Error importing AttributeMap in Dynamics 365


View products that this article applies to.

Symptom

When attempting to import a solution in Dynamics 365, you encounter the following error:

"The import of solution: [solution name] failed.

Error code 8004f016"

The grid within the error dialog includes a row of Type = Mappings. The detail text shown for this row is the following message:

"A managed solution cannot overwrite a AttributeMap component on the target system that has an unmanaged base instance. The most likely scenario for this error is that an unmanaged solution has installed a new unmanaged AttributeMap component on the target system, and now a managed solution from the same publisher is trying to install that same AttributeMap component as managed. This will cause an invalid layering of solutions on the target system and is not allowed."

Download the XML log file and open in Excel. In the Components tab locate the cell: 0x8004F016

In the next column will be an error message that includes the id of the component:

"A managed solution cannot overwrite the AttributeMap component with Id= [component ID] which has an unmanaged base instance. The most likely scenario for this error is that an unmanaged solution has installed a new unmanaged AttributeMap component on the target system, and now a managed solution from the same publisher is trying to install that same AttributeMap component as managed. This will cause an invalid layering of solutions on the target system and is not allowed."

↑ Back to the top


Cause

As mentioned within the error details, the most likely scenario for this error is that an unmanaged customization has been made on the default solution in the target organization. This will cause an invalid layering of solutions on the target system and is not allowed.

Example: Your Dynamics 365 instance already has a component such as a custom AttributeMap that was created by editing the default solution. If you later try to import a solution with that same AttributeMap (component) as a managed solution, you will encounter this error.

↑ Back to the top


Resolution

For AttributeMap the managed component can be found with two Web API queries and then deleted in the target:

  1. Open a browser to your organization and then duplicate the tab.
  2. Replace the [GUID from Error] with the GUID from the error message from the log file and then append to your organization:

    api/data/v9.1/attributemaps([GUID from Error])?$select=_entitymapid_value,sourceattributename, targetattributename

    Example:
    https://MyOrganization.crm11.dynamics.com/api/data/v9.1/attributemaps(0a7bb84f-3d3c-e911-a977-0022480187f0)?$select=_entitymapid_value,sourceattributename,targetattributename

    This is the output:

    {

    "@odata.context": "https://MyOrganization.crm11.dynamics.com/api/data/v9.1/$metadata#attributemaps(_entitymapid_value,sourceattributename,targetattributename)/$entity",
    "@odata.etag": "W/"5299006"",
    "_entitymapid_value": "1172d7cc-3c3c-e911-a977-0022480187f0",
    "sourceattributename": "css_mapfieldparent",
    "targetattributename": "css_mapfieldchild",
    "attributemapid": "0a7bb84f-3d3c-e911-a977-0022480187f0",
    "_organizationid_value": "112f329f-0a5f-4e2c-a2f0-c54e4824faa9"
    }

  3. Replace the [_entitymapid_value]" with the value from the first query and then append your organization:

    api/data/v9.1/entitymaps([_entitymapid_value])?select=sourceentityname,targetentityname

    Example:
    https://MyOrganization.crm11.dynamics.com/api/data/v9.1/api/data/v9.1/entitymaps(1172d7cc-3c3c-e911-a977-0022480187f0)?select=sourceentityname,targetentityname

    This is the output:
     

    {
    "@odata.context": "https://emeacrm3.crm11.dynamics.com/api/data/v9.1/$metadata#entitymaps(sourceentityname,targetentityname)/$entity",
    "@odata.etag": "W/"5296276"",
    "sourceentityname": "css_testamparent",
    "targetentityname": "css_testamchild",
    "entitymapid": "1172d7cc-3c3c-e911-a977-0022480187f0",
    "_organizationid_value": "112f329f-0a5f-4e2c-a2f0-c54e4824faa9"
    }

  4. Use the information retrieved from the two queries to identify the AttributeMap:

    "sourceentityname": "css_testamparent",
    "sourceattributename": "css_mapfieldparent",

    "targetentityname": "css_testamchild",
    "targetattributename": "css_mapfieldchild",

  5. An AttributeMap cannot exist without a 1:N relationship. Look for the following in the target organization:

    1:N relationship from [sourceentityname] ->[targetentityname] based on fields [sourceattributename] -> [targetattributename]

  6. Locate this component in the target organization by navigating to Settings, Customizations, Customize the System.

  7. Click Entities and then Open [sourceentityname]

  8. Select 1:N Relationships

  9. Sort by Related Entity and open relationship to [targetentityname]

  10. Select Mappings on the left

  11. Remove the mapping with:

    Source Name: [sourceattributename]
    Target Name: [targetattributename]

  12. Attempt to import your solution again.

 

↑ Back to the top


Keywords: 8004f016, AttributeMap, 0x8004F016

↑ Back to the top

Article Info
Article ID : 4494576
Revision : 4
Created on : 3/18/2019
Published on : 3/18/2019
Exists online : False
Views : 339