Posts

Showing posts with the label Advanced Find

Tool Update : Searchable Property Updater for CRM 2011 (1.1.919.75)

Image
One of my fellow MVP asked me for the possibility to display if an attribute is displayed on at least one entity form. This will ease the decision to make an attribute valid for advanced find. I thought it was difficult because of the need to export a solution to get the xml of an entity forms. But it can be achieved a lot more easily! Entity forms, in Microsoft Dynamics CRM 2011, are just like any other entity, so you can simply retrieve the forms with a simple QueryExpression (or QueryByAttribute, in my case). The code sample: QueryByAttribute qba = new QueryByAttribute( "systemform" ); qba.Attributes.AddRange( "objecttypecode" , "type" ); qba.Values.AddRange(entityLogicalName, 2); qba.ColumnSet = new ColumnSet( true ); EntityCollection ec = oService.RetrieveMultiple(qba); So, this new version is much more useful since you can see easily if an attribute is used on a form, and you can also check only attributes used in at least one form by pressing ...

New tool: Searchable Property Updater for Microsoft Dynamics CRM 2011

Image
Today, I finished the upgrade of Searchable Property Updater for Microsoft Dynamics CRM 2011. I posted the tool, the source code and the documentation on codeplex. Use the link below to access to these files: http://searchpropupdater.codeplex.com   As english is not my native language, if someone would like to help me improving the documentation, I will be happy to receive some help.

Searchable Propery Attribute Updater

Image
Hi, The previous post was not the last one... :) You can find in this post the first tool that will make your life easier: Just remember when you customer asked you to remove all these unused attributes form the attribute list of the advanced find form... You navigated through all attrbutes form to modify the Searchable property of each attributes for hours... (maybe am I exaggerating a bit...) The program I give you allows you to update all attributes in a single winform application! Yes it can be! Do not hesitate to give me your comments about this program if you think improvements can be done... Download: