| Perfil de GregGreg Olsen - Yellow Duck...FotosBlogListas | Ajuda |
|
28 de abril CRM - Free ExtensionsCRM Extensions have a free CRM simple extensions download available here:
Info from there site:
CRM Extensions offers a variety of extensions free of charge.
20 de abril CRM - Visio Shapes for Microsoft CRM 3.0Handy file located on the MSDN Code Gallery is the Visio Shapes for Microsoft CRM 3.0.
"Typically a large part of this effort is to develop a Functional Design Document or Vision Document that describes exactly what we are going to build on the Microsoft CRM Platform. These documents typically include screen mockups of what the final UI may look like ...."
"To make this process easier we developed a set of 29 custom Visio shapes, that when used in conjunction with other Visio Windows XP User Interface shapes, allow our Project Managers to quickly and easily design mock CRM UI screens that meet almost any client requirement"
So if you need to do some UI design work for CRM it might help to check these out first:
To make this even easier, you can download the Visio Shapes from here also:
Note: Please read Microsoft Public License (Ms-PL) regarding this file for usage. Greg Olsen Yellow Duck Guy CRM 4.0 - Visual Studio implements intellisense for ISV.Config, SitemapSpotted this article regarding Visual Studio 2008 (might as well use the latest version!) implementing intellisense while modifing the ISV.Config or SiteMap which I thought was pretty cool.
If you have a spare 10 minutes, check this article out with Visual Studio 2008. Make sure you have a copy of the latest CRM 4.0 SDK to get the required Schemas.
Article here thanks to Jonas Deibe:
Greg Olsen Yellow Duck Guy 15 de abril CRM 4.0 - Change The Default View In CRM 4.0CRM 4.0 unfortunately (same with CRM 3.0) has the default view hard-coded inside the product for Activites associated with a Contact. Therefore we have to make a change to one of the server files in Microsoft CRM 4.0 to change the default value. Our customer requested the default to show "All" instead of "Next 30 days". Which is a reasonable request. AFTER: Default view now is 'All' as shown below: These are the steps to change CRM 4.0 to give you the default of "All"
If you want to know what is changed between the file you downloaded and the file provided by CRM then you could use a file compare tool or simply see the change below: 1: if(!IsNull(oCtrl.DataValue)) 2: { 3: oCallback(oCtrl);
1: if(!IsNull(oCtrl.DataValue)) 2: {3: if(oCtrl.DataValue=="LastXDays;30" || oCtrl.DataValue=="NextXDays;30" || oCtrl.DataValue=="0") 4: {5: oCtrl.DataValue = "All" 6: RefreshGridView(); 7: } 8: oCallback(oCtrl);Hope that helps! Greg Olsen Yellow Duck Guy |
|
|