The source for this post is an article by Jamie Miley, located here.
While working on a Dynamics CRM v4.0 project for a client, I need to map a custom attribute from the Quote Product form to the Sales Order Product form. After searching through the mappings, I determined it wasn’t available. Well, actually, it’s available just hidden from common view.
To find it, run the following SQL query against the <orgname>_MSCRM database -
Select * from entitymapbase where targetentityname = 'salesorderdetail'
Find the row that has the appropriate SourceEntityName and copy the GUID for that row. Use the following URL and paste the GUID at the end.
http://<yourservername>:<port>/Tools/SystemCustomization/Relationships/Mappings/mappingList.aspx?mappingId=
This brings up the hidden mapping and the best part is that this is a supported workaround!
No comments:
Post a Comment