Hi,
During my first day at the Convergence I was able to discuss with the Microsoft Development Team for CRM 4.0, codename Titan.
During this discussion they gave a preview of the (new) functionality within CRM. One of those things is personalized workflow. This means that for any user a workflow can be set up, which adds a lot of flexibility to the application. Another new feature is "checking for double records" this functionality is basically where everyone has been asking for.
As you can understand I see a lot of new possibilities for the new version and can't what to start working within.
Monday, March 12, 2007
First day at the Convergence 20007
Geplaatst door Dutch CRM guy op 5:46 PM 0 reacties
Labels: Convergence 2007
Sunday, February 25, 2007
Microsoft Dynamics CRM Analytics Foundation Released!
Microsoft Dynamics CRM Analytics Foundation is a business intelligence solution accelerator for Microsoft Dynamics CRM 3.0 customers and partners.
With Analytics Foundation, executives can better track and manage business performance with dashboards and KPIs. Managers and employees can create reports quickly and make better decisions. Sales, marketing, and service employees can identify and act on new opportunities to grow revenue and improve business efficiency with predictive analytics. Analytics Foundation includes an OLAP cube (UDM) built on the default Microsoft CRM 3.0 schema, dashboards for sales and service, and predictive analytics such as product recommendation, lead potential rating, marketing list generation, and more. Analytics Foundation leverages data management and analytics technologies from the Microsoft Business Intelligence suite of products including SQL Server 2005, SharePoint, Business Scorecard Manager, Excel, and PerformancePoint Server 2007 (when available).
See link http://www.codeplex.com/crmanalytics
Geplaatst door Dutch CRM guy op 11:07 AM 0 reacties
Labels: analytics
Great post on documenting your own CRM customizations
Michael Höhne has posted a great topic about documenting youre own Customizations.
http://www.stunnware.com/crm2/topic.aspx?id=NDoc
Geplaatst door Dutch CRM guy op 10:44 AM 0 reacties
Labels: Documentating
Thursday, August 03, 2006
Microsoft CRM, Backoffice or FrontOffice application in the future?
On this rainy day I was looking out side the window and was thinking on how the future will look like for Microsoft CRM. I came up with the following ideas:
Now a days, many CRM projects are initiated from the needs of a Sales department or Marketing department to centralize the communications with their relations.
Basically this means that the users start to use the CRM interface as their dashboard environment.
What we see is that a user first uses the system as a centralized database, after a while wants to analyze the data, via Reports, analyze tools such as Business Scorecard Manager etc, and finally want a 360 view of the relation, financial, logistical data etc.
This last step can be accomplished by modifying and expanding CRM with add-ons. But looking at the way CRM is build up, only two dimension deep, the application is not intended to be used as a 360 dashboard environment. Looking at the next version of Microsoft CRM, version 4.0, code name "Titan" the new functionality is primary targeted on improving the current functionality.
Microsoft wouldn't be Microsoft if they had not created an application who is intended to for fill these needs, SharePoint.
Looking at the future of CRM we will see that the functionality the CRM application offers, will be, partly, used in the new Front Office applications. Microsoft Office 2007 for the LAN environments and SharePoint 2007 for the internet environments.
One of the critical aspects of a successful CRM project is to look at the future use and positioning of CRM. By creating a route map for the organization, where the needed functionality of CRM is described.
My advice, to the one who is interested, make sure that you have a clear understanding in how CRM is going to be positioned within an organization for now and for the near future.
Geplaatst door Dutch CRM guy op 12:05 PM 0 reacties
Labels: General
Monday, July 31, 2006
Hiding CRM navigation buttons
Within the current version of MS CRM, version 3.0, it is possible to hide
navigation buttons.
The javascript below gives an example for this. Put it in the Onload Event of the
entity you want to influence.
The Element ID's can be found via a simple trick:
Go to the form where you want to hide the buttons. Press Ctrl + N, this
will result that het current page will be re-openend in a new IE Window.
Within this Window you can view the page source code, via the menu options "View" "Source".
//..hide navigation
Hide( window.document.getElementById( "navProds" ) );
Hide( window.document.getElementById( "navRelationship" ) );
Hide( window.document.getElementById( "navOrders" ) );
Hide( window.document.getElementById( "navInvoices" ) );
Hide( window.document.getElementById( "navExistingProducts" ) );
Hide( window.document.getElementById( "navWriteInProducts" ) );
//..hide object function
function Hide( obj )
{
obj.style.visibility = "hidden";
obj.style.position = "absolute";
}
Geplaatst door Dutch CRM guy op 3:11 PM 0 reacties
Generating T.a.v and Briefhoofd for the Dutch Microsoft CRM users
This javascript example can be used to create an "t.a.v" and "briefhoofd" for the
Dutch version of Microsoft CRM. Ofcourse this can also be modified to use in other
languages. I'm just lazy to put it in an other language...
It can be expanded with specific language settings if the CRM instance is used to save Contacts with from different countries.
var strAanhef;
var strBriefHoofd;
var strMiddleName;
var str1;
var str2;
if( crmForm.all.gendercode.DataValue == 1 )
{ strAanhef = "T.a.v. de heer" strBriefHoofd = "Geachte heer"};
if( crmForm.all.gendercode.DataValue == 2 )
{ strAanhef = "T.a.v. mevrouw" strBriefHoofd = "Geachte mevrouw"};
//..Aanhef functionscrmForm.salutation.value = strAanhef + IsNull
(crmForm.all.pager.DataValue) + IsNull(crmForm.all.nickname.DataValue) + IsNull(crmForm.all.middlename.DataValue) + IsNull(crmForm.all.lastname.DataValue) + IsNull(crmForm.all.suffix.DataValue);
//..BriefhoofdcrmForm.new_briefhoofd.value = strBriefHoofd + WordCapitalize
(crmForm.all.middlename.DataValue) + IsNull(crmForm.all.lastname.DataValue) + IsNull(crmForm.all.suffix.DataValue) ;
function IsNull( value )
{if("undefined" == typeof( value ) "unknown" == typeof( value ) null == value )
return "";
else
return " " + value;}
function WordCapitalize(word)
{if ( "undefined" == typeof( word ) "unknown" == typeof( word ) null == word ) return "";
else
return " " + word.charAt(0).toUpperCase() + word.substring(1, word.length);}
Geplaatst door Dutch CRM guy op 3:01 PM 2 reacties