I am trying to retrieve the display value of a lookup field in a plugin for MS Dynamics CRM 4.0. The value of the attribute is a GUID which points to another entity (owner of salesorder in this case). "Normal" attributes I retrieve with a code like this:

CrmDateTime  serviceOrderDateDT = (CrmDateTime)entity["submitdate"];
                      serviceOrderDate = serviceOrderDateDT.Value.ToString();

Any ideas on how to do this for the display value of a lookup field?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted
Owner ownerLookup = (Owner)entity["ownerid"];
string ownerName = ownerLookup.name;
link|improve this answer
1  
Thanks for your reply. When I do this I get : "the given key was not present in the dictionairy". My salesorder does have a owner offcourse! Any ideas? – AaronTjong Dec 1 '09 at 13:58
2  
You need to make sure ownerid is in your column set when you retrieve the entity. – Boone Dec 1 '09 at 14:35
feedback

Actually, you need to cast that property to type Owner not Lookup, i.e.: (Owner)entity["ownerid"]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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