I have added a custom field to the Address entity. The Account entity has a number of address fields (address1_x..) that eventually somehow map back to the actual Address entity. I would like to add a custom "address1_" field to the Account entity and have it map back to the custom field I have added to the Address entity. Is this possible?

link|improve this question

54% accept rate
feedback

2 Answers

Not natively. You'd have to develop a custom plugin or some other process to copy the field over.

link|improve this answer
feedback

Not as far as I am aware (one of the many things I dislike about the way addresses are implemented in Dynamics CRM).

One option would be to create a new property on account that mirrors the property on the address e.g. on address you have new_newproperty and on account you also have new_newproperty.

Then using a plugins registered on Account Create, Account Update, Address Create and Address Update you could keep the values in sync by mirroring changes from one to the other.

Not ideal by any means.

link|improve this answer
I was afraid that was the case. Custom plugin it is. – Chad Nov 3 '11 at 1:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.