Wednesday, December 31, 2014

Adding InsideView To Your CRM Instance

May the seasonal greetings you feel most comfortable with be upon you. My last post for 2014 before getting into the New Year’s Eve celebrations.

If you are outside the USA you may have heard about something called InsideView, and that it is free for Dynamics CRM, but not had much experience with it. The reason for this is it is not added, by default, to CRM Online, except for CRM Online instances on the US servers.

This is how you can add it to your CRM 2013/2015 instance. Admittedly I have not tried this for on-premise but it should work there as well.

Get an Instance of CRM

Firstly, you will need an existing CRM instance. If you are looking for a trial, here is the link. At the time of writing, the page steers you towards getting an agent to walk you through the hearty goodness of CRM. If you are more interested in spinning up a trial than speaking to people, scroll down a bit and look for the blue arrow.

image

After a few clicks, you will have a trial instance and are ready to go. To make sure it was not being added, I went to an account record in my new trial and, sure enough, no InsideView pane.

Interestingly, a demo I set up a few weeks ago (for the calculated fields review and through a pre-configured partner link) did have an InsideView section but nothing inside but a link on how to set it up.

This is the magic link you will need to get InsideView in CRM.

Get the InsideView Solution File

Going to the link, gives you the solution file.There are a few terms and conditions you must give the nod to before acquiring it but, assuming they are good, you are in.

image

You should obtain a file called “Insights_3_4_online_managed”

Install the InsideView Solution File

The file installs like any other Solution file. It took a minute or two for mine to complete but it did so in the end.

image

The warning was about labels not working for languages not installed in the instance and was nothing to worry about.

Enable Syncing

Next we need to connect Insideview to CRM. To do this, go to the solution file in Settings-Solutions, double-clicking on the InsideView solution and going to the Configuration section.

image

Then click on the start button and grant and accept access to your CRM system.

Eventually you will see a success message.

image

Fixing the Form

The first thing you will notice is the default forms have been updated. Adjust, as required although do not delete the InsideView objects unless you are completely sure; they are quite tricky to add back.

There is a tab called insights but you will not see a lot in it. It is hidden by default and, even then it seems to only show ‘out of the box’ for old-style i.e. legacy 2011 forms, not the new style. This is a shame as it is nicely laid out and has a few useful functions.

image

I tried all sorts of parameters to get it working in the new forms and finally found success with this:

image

which rendered like this:

image

The main changes were the title of the tab (going from Insights to InsideView) and the parameter version changes i.e. dropping the form name. I assume it was one or both of these that finally cracked it.

I even managed to do a successful sync of information from InsideView to my Contact record.

image

Data Quality

While it is handy to have this tool outside of the USA, the quality of the data outside of the USA is not great. Doing a vanity search i.e. creating a Contact with my name, returned nothing useful.

image

So I tried our Prime Minister (the rough Aussie equivalent of the President), Tony Abbott. The first few hits were not great.

image

but eventually, towards the end of the eleven, we got close (zero points to the Reader’s Digest though, unless they know something I do not).

image

Conclusions

If you are InsideView-curious, this is all you need to start playing. Be warned though the data is not great for individuals outside of the USA and if InsideView are looking to piggyback on the international success of Dynamics CRM, they will need to address this.

Wednesday, December 17, 2014

Dynamics CRM 2015 Calculated Fields

Microsoft invited me to write a review of the calculated fields available for all the field types in CRM 2015. Here is a link to the stub (from which you can get to the full article).

Wednesday, December 10, 2014

Screwy Surface Driver Behaviour

I am blogging this so it may help others and so I have a reference for the future.

I went to boot my aging Surface 1 Pro this morning and the type keyboard and wifi adaptor were non-functioning (no wifi and no keyboard, only trackpad and stylus).

I beat my head against this for a while and finally figured it out thanks, in part, to this article.

If you find yourself in the same situation, here is the trick to fixing the problem:

  • Go to File Explorer and Right Click on This PC and select Manage

image

Unlike in the diagram above, you will see yellow exclamation marks against the Surface Type Cover Filter Device and the Marvell AVASTAR 350N Wireless Network Controller.

  • Right click on the Type Cover and select Disable
  • Detach the Type Cover
  • Restart the machine
  • Once restarted, come back to the Device Manage and re-enable the Type Cover by right-clicking

The type cover should now be working and you will be able to type again (you can open up Word or Notepad to test)

  • Uninstall the Marvell AVASTAR (but do not tick the uninstall driver box)

image

  • Right click on the top of the device tree (where it says Uranus on mine) and select Scan for Hardware Changes

The network adaptor will reload and work again.

Monday, December 1, 2014

Fixing Lead Conversion in CRM 2013

The Problem

One of the more subtle changes with CRM 2013 was with Lead conversion. In the old days of 2011, you had a wealth of options when it came to changing your Lead into something else.

image

The resulting Opportunity can be for an existing Account/Contact or a new one. Alternatively (as is the case for one particular client of mine) you do not have to create an Opportunity at all, but simply create an Account or Contact.

In CRM 2013, things changed.

image

The dialog box is gone, presumably to make CRM more touch-friendly. Also the system now assumes you want to create an Opportunity. If you fill in the ‘Existing Contact’ or ‘Existing Account’, these will be used as the Customer the Opportunity belongs to (with Account taking precedence). However, if these are left blank, a new Account, Contact and Opportunity are created, just as if the three tick boxes had been selected in the CRM 2011 days. The option missing is the case when we do not wish to create an Opportunity; just an Account or Contact record.

The Solution

The most elegant solution is to replace the Qualify button with your own button and code behind it the behaviour you seek but, failing this, we can provide users an alternative which, as is often my way, codeless.

My approach is to add the Status Reason field to the form and add a Status Reason of ‘Convert to Account’ (or ‘Convert to Contact’, or both). The user then simply changes the Status Reason and a workflow takes care of the rest.

Using this approach you can build in practically any qualification behaviour you want. In the case of a Lead to Account conversion, you create the new Account, link it to the Lead and then change the Lead to Qualified. The workflow is relatively simple and easily adjustable down the track if the business processes change.

If you wish to hide the original Qualify button, consider a tool like the Ribbon Workbench. Also, you can combine the best of both worlds and put some code behind a cloned Qualify button which calls an Action. This combines the elegance of a button replacement with the flexibility of workflow configuration.

You can also use the Status Reason approach to circumvent the usual qualification process in CRM 2011. One client felt the CRM 2011 qualification pop-up was too confusing and easy for the user to do the wrong thing. By using the same approach, the user simply changes the Status Reason and the system handles the rest. In the case of an Opportunity for an existing Account or Contact, you may need a lookup to feed the information to the workflow when the status changes but that is about it.

Conclusions

With the changes between CRM 2011 and CRM 2013, it is possible your previous approach no longer works in the new version. By approaching the problem with the tools available, we can put together something that meets our business need without spending lots of money on consultants and developers. Enjoy ;)

Tuesday, November 25, 2014

Salesforce: The Bear Awakens

Before I look at the Salesforce numbers each quarter, I always fear it will be more of the same. Not the case this time around with more mixed signals than a Morse code operator with a hand tremor. We also have my predictions to weigh up so let us see how I fared.

The Numbers

I was asked last week if I make these numbers up. The answer is no. The majority come directly from Salesforce’s own website. The ‘earnings’ call transcripts I get from Seeking Alpha, Google statistics from Google Trends and the insider trade statistics from Yahoo (which get them from the SEC filings lodged by Salesforce). All I bring to the table is Excel’s graphing and trend analysis tools.

 

2014 Q3

2014 Q4

2015 Q1

2015 Q2

2015 Q3

Revenue

1,076,034

1,145,242

1,226,772

1,318,551

1,383,655

Subscription Revenue

1,004,476

1,075,001

1,147,306

1,232,587

1,288,513

Revenue Cost

268,187

273,530

292,305

307,831

333,211

Operating Cost

905,778

975,458

989,808

1,044,154

1,072,486

Salesforce Income

-124,434

-103,746

-96,911

-61,088

-38,924

Highest Transaction

     

2,037,819,946

2,502,030,346

Transaction Growth qoq

       

23%

Revenue Growth # yoy

287,636

310,561

334,139

361,457

307,621

Revenue Growth % yoy

36%

37%

37%

38%

29%

Revenue Growth % qoq

12%

6%

7%

7%

5%

Total Cost % yoy

39%

46%

37%

36%

20%

Staff

12,770

13,312

14,239

15,145

15,458

Staff Growth (yoy)

37%

36%

38%

20%

21%

Margin

-11.56%

-9.06%

-7.90%

-4.63%

-2.81%

Growth Difference

-3%

-9%

1%

2%

9%

Cash

651,750

781,635

827,891

774,725

846,325

Accounts Receivable

604,045

1,360,837

684,155

834,323

794,590

Cash/AR

108%

57%

121%

93%

107%

There is a new addition to the rows here with the ‘Highest Transaction’ row. This is taken from the trust.salesforce.com site and is the highest Transactions value shown for the date range at the time of writing. As discussed previously, the transaction count is my new basis for predicting an approximate user base for Salesforce. Quarter on quarter, transactions (and therefore subscribers) rose 23%. Nice work.

Staff growth is still low and is suggesting a new normal for Salesforce. The loss for the quarter was a mere $38 million which is the smallest it has been for about two years so also not a bad result.

Revenue and Cost Growth

The big change is in Cost Growth. At an annual growth rate of 20%, this has practically halved, compared to recent quarters, and is close to the growth rates from five years ago. Marc has put the brakes on sales and marketing spending. This, in turn, has put a dent in Revenue Growth but not to the same level. Revenue Growth was down to 29% meaning Salesforce has reversed the trend of costs outpacing sales and, if they keep it up, means they can sustainably return to profit. This is reflected in the Growth Difference where we now see three quarters of positive difference (revenues accelerating away from costs). Another great outcome.

Here it is graphically.

image

Both Revenue Growth and Cost Growth have dropped but Cost Growth more so. The moving averages are now at about the same point meaning, if things progress as they are, we are moving from costs spiralling out of control to sustainable profitability.

Subscribers

Using the formula derived previously, as mentioned, subscribers have grown 23% to around 17 million. In terms of how profitable they are, in line with the growth changes, we see a positive result.

image

The key line here is the bottom one. Income (profit/loss) is still negative (about -75c per user per month) but is trending in the right direction (it is about half of what is was last quarter) and could well be close to positive next quarter.

Cash and Accounts Receivable

image

The two remain entwined this quarter with Cash nudging slightly above Accounts Receivable. While this is good, it is too early to call this a win with the moving average remaining largely unaltered.

Earnings Call Buzzword Bingo

The rule is the words on the list have had ten or more mentions in the past five periods with the text used being the call transcript after the introduction and up to, but not including, questions.

 

2014 Q3

2014 Q4

2015 Q1

2015 Q2

2015 Q3

Number of words

3700

3700

2400

4731

3922

Customers/Customer

39

25

22

38

34

Revenue

37

29

19

27

26

Cloud

31

14

15

22

47

ExactTarget

21

15

7

8

1

Platform(s)

21

12

10

13

27

Service

19

13

13

15

12

Sales

16

4

6

6

7

Growth

14

12

9

18

16

Marketing

12

11

5

10

8

Cash

10

16

10

11

9

Mobile

7

5

2

8

8

Operating

7

10

11

11

8

Enterprise(s)

7

3

8

10

8

EPS

5

6

6

6

5

Salesforce1

0

11

6

7

7

Dreamforce

     

11

14

Analytics

       

14

This quarter we say goodbye to ‘Mobile’ and ‘EPS’ (Earnings Per Share). As to why Marc is no longer pushing his EPS statistics, I am not sure. The magical non-GAAP treatment is still turning a standard EPS loss into a non-standard EPS profit so why not? Could Marc be finally distancing himself from the black art of non-GAAP numbers?

Similarly, the push for mobile seems to have waned with “Cloud” and “Platform(s)” being the Salesforce catchcry of the quarter. In the case of both of these words, mentions literally doubled since the last call.

Salesforce, it seems, is no longer a social CRM and it is not a mobile app development tool; it is a cloud development platform.

The newcomer our list is ‘Analytics’. Now that Salesforce actually has some Business Intelligence tools in the form of the “Analytics Cloud”, it is doing its best to promote them.

The only word in danger of dropping off the Salesforce newspeak vocabulary list next quarter is “Sales”. The origins of Salesforce as a sales force automation tool are being lost as it diversifies to be more than just CRM.

Google Trends

Nothing too surprising here. Salesforce continues to focus on North America, with Dynamics CRM being more spread across North America, Europe and Australasia.

image

image

Insider and Institutional Sales

I tweeted earlier this week about a significant shift in insider sales. Here are the numbers from Yahoo.

 

2014 Q3

2014 Q4

2015 Q1

2015 Q2

2015 Q3

Insider Sales

0.50%

0.50%

0.50%

0.40%

4.70%

Institutional Sales

2.75%

2.72%

2.71%

2.67%

3.20%

Insider sales (sales of shares by the Salesforce executive) have jumped tenfold. I have often talked about the constant sales for shares by key figures such as the CFO but a tenfold increase in offloading in the previous six months of transactions is huge.

In fact, digging into the details, it is only one of the executive whose selling has caused this shift: Marc Benioff, CEO and Chairman. Marc used to sell a lot of shares, back in the old days, but had not sold too much for close to two years. Then, in June this year, something changed. Marc, between 9 June and 7 November offloaded something like 1.8 million shares (roughly worth $100m). Yahoo also tells us Marc has 39 million shares in Salesforce (about 6% of all the shares in the market according to the Salesforce financials) which means this little sell off was about 5% of his holdings.

I cannot guess why Marc has retained so little of his company or why he is striving to own less, when he speaks so positively about the future prospects of Salesforce and, in this quarter, the numbers show optimism.

Looking to the Future

Last quarter I predicted revenues of $1.4b (they were $1.38b) and a loss of $40m (it was 39m) so I am pretty happy with my work, especially with the predicted loss, which Salesforce predicted would be twice as high.

Next quarter I predict revenues of $1.46b-1.48b and a loss of around $20m (Salesforce predict $1.44b in Revenue and around $60m in loss)

Conclusions

Salesforce are fighting back to profitability and, if it was not for Marc offloading his ownership of the company, this would be a glowing report card for the company. Diversification of their product offering seems to be working and, if it is, it will become evident in the next couple of quarters.

Why Marc and other members of the executive continue to wax lyrical about the future of the company only to immediately sell their ownership of the company confuses me to no end. One possible reason is that they feel the price of the shares is too high and, even if Salesforce go from strength to strength, their money can be better invested/spent elsewhere. This is pure speculation, of course.

Profitability and sustainable growth has eluded Salesforce for years now. This quarter has been the first to give me hope that such goals are possible for them. The full year results and the next couple of quarters will confirm if my optimism is well founded.

Friday, November 14, 2014

Another Successful Summit

CRM_MVPs2014

Winding up after another really great MVP Summit. For the CRM MVPs, Summit was a little unusual this year. Microsoft’s CRM Product team were in Barcelona for Convergence 2014 Europe when the main MVP Summit was on, so Microsoft generously put on a ‘Special Summit’ just for the CRM group a week later, on the product team’s return. Microsoft was under no obligation to do this, so it was greatly appreciated by all.

What’s Coming

The product team have been very open this year with the MVPs, including them in giving feedback on design elements and opening up the pre-release programs to them for testing. As usual I am under NDA on this week’s content but I can say I am very excited about the upcoming ‘Fall Release’ and beyond. There is a nice balance of new features and tidying up the existing system, which is great.

If you are curious about what is coming, some information was released at Convergence 2014 Europe and the videos are available here.

What is really impressive is how much the product team are doing, given the product family has increased so much. Not only are they working with the core CRM product but they now have Parature, Social Listening, Dynamics Marketing and the Unified Service Desk to either develop directly or integrate with (all on the existing  six month release cadence). Getting all these moving parts to work with each other is no simple task and I do not envy them in this but they appear to be tackling it very well.

The MVPs

mvp_summit2014

A big part of Summit is meeting up with ‘The Family’. It was a term used a lot this week to describe the group and it is accurate. We are, despite being from all over the world, quite closely knit. There were also a few new MVPs this year, which is great. As the product grows, it is almost impossible to be across everything so mixing with other individuals, passionate about the product, is a great way to ‘fill in the gaps’ on the knowledge (and share a few war stories).

Another thing which was apparent was there is a bit of consolidation going on in the CRM partner ecosystem. Oakton has two CRM MVPs on staff (me and Andre Margono). This used to be quite unusual but there were two partners, represented at Summit, which have three CRM MVPs on staff, which is unheard of.

The other thing I noticed this year was the proliferation of Surfaces (you can see some of them in the first photo). While there was one or two Apple devices in the room, I believe there used to be more, but the Surface seems to have supplanted them. I am writing this on my old Surface Pro 1 and it still does the job.

Conclusions

Flying close to 20 hours (each way) for a few days with Microsoft seems like a crazy endeavour but I never regret it. It is easy to forget there are real people behind the products so meeting them is both impressive and humbling. Interacting with the product team and with my fellow CRM MVPs is always a revitalising and enlightening experience. I have said it before and maintain it is still true; there are none more generous and giving than the Microsoft MVPs. I am proud to be a member of this family and hope to be so for as long as possible.

Thursday, October 30, 2014

Book Review: Microsoft Dynamics CRM 2013 Unleashed

Introduction and Disclaimer

Back in July, I mentioned a second book review that I had to do for Dynamics CRM 2013 Unleashed. Three months on and I have finally got to it. As usual, my compensation is a free e-copy of the book. Here is the link to buy the book and here is what it looks like.

Microsoft Dynamics CRM 2013 Unleashed

Marc I know through his time as a Dynamics CRM MVP and also through his company’s product, Parrot, which I have mentioned in the past.

Overview and Structure of the Book

This is a big book (over 1100 pages) with 33 chapters. Thankfully, there is a Table of Contents and Index to help with navigation. The structure is:

  • Introduction
  • Chapter 1: How This Book Is Arranged
  • Chapter 2: New Features of Microsoft Dynamics CRM 2013
  • Chapter 3: xRM Explained
  • Chapter 4: CRM Online
  • Chapter 5: Navigation
  • Chapter 6: Working with Customers
  • Chapter 7: System Personalization
  • Chapter 8: Working with Sales
  • Chapter 9: Working with Marketing
  • Chapter 10: Working with Service
  • Chapter 11: Reporting and Dashboards
  • Chapter 12: Settings
  • Chapter 13: Advanced views and Connections
  • Chapter 14: Filtered Lookups
  • Chapter 15: Client configuration Options
  • Chapter 16: Email Configuration
  • Chapter 17: Mobility
  • Chapter 18: Solution Concepts
  • Chapter 19: CRM 2013 SharePoint Integration
  • Chapter 20: Azure Extensions
  • Chapter 21: Customizing Entities
  • Chapter 22: Process Development
  • Chapter 23: Plug-Ins
  • Chapter 24: Web Services
  • Chapter 25: Advanced Solution Management
  • Chapter 26: xRM (Extended) Deployments
  • Chapter 27: Forms Authentication
  • Chapter 28: Data Management with Dun & Bradstreet
  • Chapter 29: Data Management with InsideView
  • Chapter 30: Marketing Automation with Marketo
  • Chapter 31: How to Get Support for Your System
  • Chapter 32: On-Premise Requirements
  • Chapter 33: MarketingPilot, NetBreeze, and Yammer

That sounds pretty comprehensive to me so let us see how deep the book goes.

Introduction

The introduction gives a bit of the recent history of Dynamics CRM and how 2013 came to be. It also talks about how Dynamics CRM differs from SharePoint as a ‘platform’. It also talks about some of the complementary technologies which will be introduced in the book. The final claim of the introduction is “You can use Microsoft Dynamics CRM 2013 to manage almost anything. This book shows you how”. This is quite a big claim so it will be worth seeing how it fares.

It also offers the disclaimer that the book was written using the pre-released version of Dynamics CRM 2013 which means mileage may vary with the version as it stands today. Again, this will be something worth checking.

Chapter 1: How This Book is Arranged

I was expecting this chapter to give a brief synopsis of each chapter in the book but this is not the case. It mentions that chapter two talks about the new features of CRM 2013 and that chapter five covers navigation but that is about it. The rest of the chapter describes the book at a much higher level. Firstly it describes how the CRM Online chapters come first and the chapters talking about CRM on-premise are at the end and gives a brief guide on some factors to consider when looking at the deployment mode.

Then the chapter talks about the update cadence of CRM 2013 for online and on-premise.

My preference would be for the chapter to summarise the chapters in the book and say which are appropriate for online and on-premise as well as which chapters are useful for different kinds of users e.g. administrators, end users etc. but it does not do this. Given this is an introductory chapter, this is not the end of the world, so let us move on.

Chapter 2: New Features of Microsoft Dynamics CRM 2013

What I like about this chapter is it talks about the Polaris/Rollup 12 update (which came just prior to CRM 2013) as well as the new features of CRM 2013. Polaris/Rollup 12 was a preliminary step in moving to 2013 and changed the fundamental structure of CRM to make it compatible with browsers beyond Internet Explorer i.e. Firefox, Safari and Chrome.

The chapter gives a good summary of the new navigation, comparing it to the old. For people new to CRM, the shift in navigation from CRM 2011 to CRM 2013 will be irrelevant but for those of us who were used to the CRM 2011 ribbon, the move to the touch interface of CRM 2013 is a big deal so this helps ease you in.

There are a few errors which, for the most part, are a function of things moving on since writing. For example:

  • Bing maps does not quite work as described but this is probably a function of working with the pre-release version of CRM 2013; the broad strokes are correct.
  • The chapter mentions three licensing tiers (Essential, Basic and Professional) but there is also the Enterprise tier which got announced in June 2014, presumably after the publication date.
  • The chapter uses the terms MarketingPilot (now called Dynamics Marketing) and Netbreeze (now called Social Listening)
  • The chapter states Duplicate Detection was removed in CRM 2013 for individual records, which it was, but it was restored in the Spring Release update.

Overall, despite the errata, this is a good summary of the new features and a good introduction to the new navigation.

Chapter 3: xRM Explained

Even today, people get confused about the differences between CRM and xRM and think they are different software products. If you fall into this camp, this chapter is one of the best summaries of how Dynamics CRM can be used as a process and relationship management platform i.e. xRM. There are also some great examples of real life scenarios and how Dynamics CRM approaches them.

Chapter 4: CRM Online

This chapter talks about CRM Online and the potential advantages it offers over on-premise or partner hosted. It also goes into detail about the release cycle for updates and new versions, and the data centers used by CRM Online and the underlying architecture behind these data centers. If you want to get into the details of whether CRM Online is a ‘true multi-tenanted application’, this is the chapter for you. For most of us, we just want to know there are levels of redundancy if things go awry.

The chapter also reviews which certification standards CRM Online meets and the licensing model for accessing CRM Online. As previously mentioned, the Enterprise tier is not covered as this was most likely announced after the book was finalised. However, for the other three tiers, the summary is very good, as well as the details of additional online features such as additional production and non-production instances and the amount of storage you get with CRM Online.

The process described for getting an online trial is a little out of date with the process being a little more streamlined today but it guides you to the right web site. The process for adding and managing users is still pretty much as described in the book. The rest of the chapter, which talks about managing your subscription, is excellent.

Chapter 5: Navigation

This chapter is devoted to getting used to the new navigation design, fleshing out what was started in chapter two. It does a really good job of highlighting how it is different to 2013 and where to find things in the new version.

Chapter 6: Working with Customers

This is an introduction to Accounts and Contacts in CRM. It also covers associated CRM concepts such as Activities, Connections, SharePoint integration and the Audit History. If these ideas are confusing to you e.g. knowing the difference between an Account and Contact, this chapter will put you on the right track.

Chapter 7: System Personalization

Firstly, the chapter starts off talking about the old Workplace area of CRM. In my recently spun up trial, the Workplace is no longer there so, I assume, it is no longer a part of the default SiteMap.

After this, the chapter reviews the personal settings available to an end user although does not provide too many recommendations.

Next it moves into user functionality which is not really personalisation e.g. Dashboards, Activities, importing/exporting data, Duplicate Detection, and Articles. The activity section is quite comprehensive, going into detail about each of the standard Activity types and covering custom activities. The walk through of the Import Wizard is good as this often is daunting when used for the first time, although it assumes everything will go right first time, which is rare.

I did notice one small error with the exporting data section in that it covers three options for exporting data to Excel, but not the fourth.

image

The second option in this list only appears when there are more than one page of records so the error is understandable. The book mentioning the error message which pops up in Excel on exporting is good as this always trips up nervous, new users.

The Duplicate Detection section mentions it has been removed on update and create but, as previously stated, it is now back in the product. Otherwise, this section covers the essentials nicely.

Overall there is a lot of good information in this chapter but I think it should either be renamed or split up into smaller chapters such as ‘System Personalization’ and ‘User Essentials’.

Chapter 8: Working with Sales

This covers the sales module of Dynamics CRM, starting with the new Flow interface (the bar at the top of a record which walks the user through the stages of processing a record). The walkthrough of the Lead qualification process is a good, thorough introduction to how Flow works.

Next are Leads. The chapter considers a Lead to be a ‘potential customer’ but not a potential sale. I am not sure I completely agree with this definition as Leads are Qualified into Opportunities. Also, it is possible to link a Lead to an existing Contact or Account with the new Opportunity being attached to that pre-existing record, which is not mentioned in the chapter. The ability to mass-convert Leads was something I did not know about so I am grateful for reading about that.

The chapter then moves on to Opportunities which covers the essentials well. Competitors and Products are covered at a high level (nothing about Product set up here with it referencing Chapter 12 as the place to go for this).

Quotes, Orders and Invoices come next with a detailed section on working with each of them. The lifecycle diagrams for Quotes, Orders and Invoices are especially useful to a new user.

Finally, the chapter covers Goal management in CRM. Goals are one of the least understood areas of CRM and have the potential to be very powerful for performance monitoring so the walkthrough here is especially useful.

Overall, a good, high-level review of the sales module.

Chapter 9: Working with Marketing

This reviews the marketing module of CRM. It does not cover Dynamics Marketing, which comes in chapter 33. First come Marketing Lists, which are a good place to start. The creation of static Marketing Lists is covered well but not a lot is mentioned on Dynamic Marketing Lists e.g. they do not appear against the Contact record, if the Contact is a member and cannot be used for Advanced Find queries.

Next come Campaigns with a walkthrough for setting them up. Then, Campaign Responses, talking briefly about their creation and using them, through to conversion as the basis for other records in the system. Campaign Responses are also a poorly utilized area of CRM so it is good to see the basics covered.

The Sales Literature section reviews Sales Literature in CRM. The best feature of Sales Literature (the ability to send multiple attachments in one click) is mentioned.

Finally, the chapter talks about Quick Campaigns and walks through their creation.

Overall, a good overview of the marketing essentials within CRM.

Chapter 10: Working with Service

This covers the third and final module of CRM, the server module, starting with Services and Service Activities. It walks through the creation of a Service and a Resource Group, then talks about the Service Calendar. Next, using the samples created in the previous part of the chapter, it walks through the scheduling of a Service Activity. Overall a good, high-level summary.

Following this are user working hours and business closures and how they are configured; another area often overlooked.

Next Appointments are covered. Although they were covered in chapter 7 so this may revisit old ground.

Arguably the most important entity in the Service Module, Cases, comes next. Again, this covers the essentials such as the Subject hierarchy, Case Activities and resolving Cases.

Articles are again covered but, this time, with more depth than in chapter 7, talking about the approval process and writing Articles in multiple languages.

Finally comes one of the least utilized areas of Dynamics CRM, Contracts. Again, the essentials are covered it this area is of interest.

Like the previous two chapters, a good overview of the module and what it tries to manage. Overlap with other chapters is starting to creep in and perhaps this will be addressed in future versions of the book.

Chapter 11: Reporting and Dashboards

The introduction to this chapter starts well differentiating the kinds of reporting available in CRM (Views, Excel exports, SQL Server Reporting Services (SSRS) etc.). The rest of the chapter focuses on SSRS reports, Charts and Dashboards with things like Advanced Find use being covered elsewhere.

The initial focus here is on running SSRS reports, rather than their creation with the differences between reports in CRM Online and on-premise being covered. Next it walks through creating an SSRS report with the Report Wizard. I am not a huge fan of the Report Wizard as it is quite limited but the chapter arms the user with the tools to play with this CRM feature.

The report scheduling feature of CRM is covered which is great as it is also a feature often overlooked but potentially very useful for longitudinal analysis. Other features such as sharing reports and publishing for external use are also covered.

The section on FETCH is quite brief but gives a flavour for how it is used.

Next comes Charts and Dashboards which equips the reader nicely for setting up their own and, for the advanced user, how to export charts and edit the underlying XML. The chapter calls out the fact that Charts are unprintable and offers SSRS reports as a better option for printing, which is good advice.

For the more advanced user, the chapter then walks through setting up your computer to create custom SSRS reports, walks through the essentials for report creation and then shows how to deploy the reports.

While many of the previous chapters are strongly focused on someone who is new to CRM and probably an end user, this chapter is more for a report writer looking to write reports for CRM for the first time. Therefore, as a chapter which acts as a primer for SSRS reports in CRM, it is very good.

Chapter 12: Settings

This chapter reviews the Settings area of CRM giving a blow-by-blow review of the different areas (Business Management and System Administration). The Product catalogue gets a reasonably detailed review to help with Product setup. Security and user setup also covers what an administrator needs to begin adding users and configuring the security of their system. Finally auditing is covered to allow for this to be effectively set up.

Overall a good review of the settings area which additional detail where it is probably required.

Chapter 13: Advanced Views and Connections

This fills in the gap for reporting, going through the creation of views and the use of Advanced Find. In terms of creating a Personal View from scratch, this will put you on the right track. What would have been nice to see is creating a view from filters, which is possible in CRM 2013, and a very easy way to create simple views.

The chapter also covers the essentials for modifying the system views. What the chapter does not cover is using Advanced Find beyond simple field matching. If you want to get into some of the more powerful features of Advanced Find, this is not the chapter for you.

The next part of the chapter covers Connections. Again, the essentials are covered. Where I see the value of Connections is in subgrids on the form where the Connection Roles can be filtered allowing grids of different related records. For example, if the record is an Account of a hospital, Connections can be used to show, in separate grids, different specialists, administrators, and service staff. This use was not mentioned in the chapter.

Overall a high level summary of view creation and Connections but not a huge amount of depth.

Chapter 14: Filtered Lookups

This is a good chapter to have because, like a few other areas covered, this is an often overlooked part of CRM which has the benefit to provide a lot of value. If you do not know about filtered lookups in CRM 2013, you will love this chapter.

Chapter 15: Client Configuration Options

This chapter walks through setting up the Outlook client. If you need a guide to setting it up, here it is. The finer details, such as synchronization filter setting is not covered.

Chapter 16: Email Configuration

This covers setting up email for CRM through the various integration options. Coverage of the server side synchronization is excellent. Migration from an existing email router to server side synchronization is also covered. If you want to stick with the email router, setting this up is also walked through with a lot of detail.

This is a great administrator’s chapter for setting up email to work with CRM and would make any administrator feel more comfortable with what is often a difficult task.

Chapter 17: Mobility

This covers use of CRM on tablets and mobile phones. The installation of the app for Windows tablets is walked through and the features of the mobility app, and how CRM features work with it, are covered in detail. Installing the CRM app on an iPhone is also covered.

If like me, you have not yet really explored the mobility options for CRM, this chapter is a great place to start and shows the power of the mobile applications.

Chapter 18: Solution Concepts

This chapter reviews the CRM concept of Solutions (containers for customizations). The fundamentals are covered such as populating a solution and exporting/importing solutions. The layering of solutions within a CRM system is briefly mentioned and is an area that causes a great deal of confusion in regards to solution behaviour i.e. which solution wins when both modify the same entity? It is covered in more depth in chapter 25.

Overall not a bad introduction to solutions but, as with other areas, there is a lack of depth for the more advanced user. In this case, chapter 25 takes us further.

Chapter 19: CRM 2013 SharePoint Integration

This chapter covers installing and configuring the CRM-SharePoint integration. It refers to using the List Component, which is no longer needed with the Spring Release of CRM, making the process a lot simpler. See here for details on setting up the integration for CRM Online.

Given the process changed after the Spring Release update, I would probably look online if setting up SharePoint integration.

Chapter 20: Azure Extensions

This chapter covers setting up the Azure Service Bus with CRM. If this is something you need to do for your deployment of CRM, this chapter will be invaluable.

Chapter 21: Customizing Entities

A good high-level summary of what can be done. First the essentials of codeless form editing are covered. Then, editing the SiteMap is covered, going through the XML structure. Generally, I rely on Tanguy Touzard’s ToolBox for Dynamics CRM for SiteMap editing (which has now had two plugs in as many blog posts). Similarly the Ribbon XML is reviewed but I would consider looking at Scott Durows Ribbon Workbench first.

Next it talks about the JavaScript events you can attach code to and finally points the reader towards the SDK for plugin extensions.

As with other chapters, this provides a high-level review but the reader will need to look elsewhere for a deep dive.

Chapter 22: Process Development

I really like the table up front talking about the actions available to the different process types. A bit further in is a table of statuses by entity and their corresponding values which is also very handy for general reference.

The chapter provides a good level of detail for all the process types and especially the new ones (Actions and Business Process Flows). It also reviews how to create workflows using XAML and Visual Studio.

Overall a great introduction to processes, especially the new ones.

Chapter 23: Plug-ins

This chapter gives an overview of what a plug-in is and how it works. Then it provides an overview on how to develop and deploy plug-ins. Finally, it discusses de-registering plug-ins and approaches to debugging them.

This is a good introductory chapter for plug-ins. Again for deeper information, go to the SDK or a book devoted to coding for Dynamics CRM.

Chapter 24: Web Services

This chapter provides an overview of the web services available for Dynamics CRM and how to interact with them. As with the other developer-related chapters, it provides a good overview for someone wanting to get an introduction to the subject.

Chapter 25: Advanced Solution Management

This continues from where chapter 18 left off. It is not clear to me why they are so far apart in the book.

This chapter covers solution layers and provides some guidance on using solutions in a development environment. Overall not a bad summary.

Chapter 26: xRM (Extended) Deployments

This chapter provides an example of extending CRM by embedding an ASP.Net application via an iFrame. It also shows how to create a SilverLight Web Resource. Finally it shows how to create an HTML Web Resource.

If these are things you are looking to do, these walkthroughs will prove very useful.

Chapter 27: Forms Authentication

This chapter is specifically for on-premise deployments, looking to set up an internet-facing deployment (IFD). Setting up IFD for CRM is notoriously tricky so I am happy to have a chapter to refer to if I ever need to do it.

A good walkthrough which I am sure will get some use in the future.

Chapter 28: Data Management with Dun & Bradstreet

This chapter talks about the D&B360 add-on for CRM. This is a paid add-on and one I have not worked with. Initially it talks about the importance of clean data and the costs of poor data and then reviews the product. It appears similar to the free InsideView add-on, which the book covers in the next chapter.

If you are looking for a data reference add-on to CRM and considering the Dun & Bradstreet add-on, this chapter is worth a browse.

Chapter 29: Data Management with InsideView

The chapter suggests InsideView is only available in North America but I have used it in demos in Australia without any problem. This being said, the data for Australia was a bit light on the ground with a vanity search drawing a blank.

Another good product summary highlighting lots of features I knew nothing about. Worth a read if InsideView is going to be a key part of your deployment.

Chapter 30: Marketing Automation with Marketo

Marketo is another third party application. In this case it supplements the internal marketing capabilities of CRM. Arguably ClickDimensions is the more popular marketing automation add-on for CRM so I am not sure why this one got a chapter and ClickDimensions did not. This being said, I have heard a lot of good things about Marketo so it is certainly worth considering.

The beginning of the chapter covers what to expect from a marketing automation solution and then it gets into the overview of Marketo. Again, if this is a product you are looking to bring into your enterprise to work with Dynamics CRM, this chapter will be very informative.

Chapter 31: How to Get Support for Your System

This is a chapter often missing from books like this so it is good to see. Firstly, it talks about how a system may be put into an unsupported state which literally means Microsoft may not offer support. Then it talks about the support Microsoft offers for systems in a supported state. It also mentions another key support vector, often missing from other books, the forums.

After this it reviews the various tiers of paid support available for online and on-premise deployments.

Finally, it talks about the value a Value Added Reseller (VAR), otherwise known as a Microsoft partner, brings in terms of direct, tailored support.

Overall a good chapter on the various support options available for CRM in all of its deployment modes.

Chapter 32: On-Premise Requirements

The first part of this chapter is largely a summary of what can be found in the planning and implementation guides for CRM. The use rights table for the different user license levels is very useful. The chapter does provide some thoughts on single-server vs multi-server architectures and the splitting of server roles.

Next, it provides a walkthrough of the server setup and Outlook client setup and finally provides an overview of the process for upgrading CRM from a previous version and a checklist of essential things to configure when setting up CRM.

Overall a good overview of setting up CRM with some useful walkthroughs.

Chapter 33: MarketingPilot, Netbreeze and Yammer

As mentioned, MarketingPilot is the old name for Dynamics Marketing and Netbreeze is the old name for Social Listening.By virtue that Dynamics Marketing and Social Listening were not publicly available at the time of the book’s writing, the coverage of these is quite high-level. Yammer setup and use has a bit more meat on the bones and is a good summary of what to expect from it, in CRM.

While there is probably more information on Dynamics Marketing and Social Listening on YouTube these days, the Yammer summary is a good overview of its integration with CRM.

Conclusions

Wow, that was quite a read. The initial claim of the books was: “You can use Microsoft Dynamics CRM 2013 to manage almost anything. This book shows you how”. While I agree in terms of the flexibility of CRM, the second sentence should probably read “This book starts you on the journey”. It is certainly a broad-ranging book, covering a lot of the CRM system but the downside of this is it cannot go into a lot of detail on all topics.

The pattern, for the most part, seems to be the focus of depth is on the newer components e.g. the elements introduced in CRM 2013. Therefore, the reader who I see getting the most value out of this book is someone who is completely new to CRM and who wants a broad overview or someone who is familiar with CRM 2011 and wants some details on the new features of CRM 2013. In the second case, if the user has a deep knowledge of CRM 2011, quite a few of the chapters will not provide a lot of value e.g. the module overview chapters.

In terms of the content and structure, there are parts of the book which are out of date. However, in defence of the author, the six month release cadence for Dynamics CRM makes it very difficult to keep a book of this size completely up to date. I am experiencing this at the moment as the MVPs update the CRM Field Guide. In some cases the new content was written months ago and, with the release of CRM 2015 on the horizon, there is the real risk that the book will be out of date before it is released.

The structure of the book is probably the area where most improvement can be made. There are areas which repeat information and areas which intuitively should be together e.g. the two chapters on reporting and the two chapters on solutions. This is a relatively easy thing to tighten up and will help explain the structure in chapter 1.

The big positive for me was there are areas of CRM which are traditionally overlooked which are covered in the book. Examples include filtered lookups and report scheduling. These titbits certainly justify the admission price.

Overall, while the structure is a bit loose, the content, as a high level summary of CRM with details on the new elements in CRM 2013, is very good and therefore, for the right reader, this book provides excellent value. If you fit the bill, I recommend you pick up a copy.

Tuesday, October 28, 2014

Using Entity Mapping For Dynamics CRM Solution Documentation and Design

A bit of a different blog this week in that Microsoft put out a call for articles and I put my hand up.

 

It is sometimes the case we are thrown at a CRM system with no documentation and very little knowledge of how the system works and how it has been customized. Perhaps the system has gone out of use and is being revitalised or it is a CRM system from a different country and being localized and repurposed.

Obviously, we can review the system’s customisations and use a tool like Tanguy Touzard’s ToolBox for Dynamics CRM with its Metadata Document Generator to generate a report of the custom fields, but this still does not give a lot of insight into how the system is used.

 

For the rest of the article go here.

Tuesday, October 21, 2014

Revisiting My Most Popular Articles

It has been a little over six years since I began writing this blog and I thought it is time to revisit my most popular articles to see how they stand up (and maybe update a few of them). On my blog page, on the left hand side, there is a “Popular Posts” section, showing the top ten most popular articles.

image

I will focus on these articles for the blog post.

My Themes

There are a few broad subjects I blog about:

Of these, tips and tricks seem to be the most popular with five articles. The rest are a bit of a mixed bag with one workflow article, my two Surface Pro reviews, a high-level piece on Gartner/Forrester reviews and my piece on moving my email to Office 365.

Tips and Tricks

Importing Records

Not a lot has changed with the Import Wizard but one difference stands out. In my original article I lamented at the speed, or lack thereof, of the import as the web service layer could only handle one record at a time. This has changed and batches of files can be passed through the web services for processing on the server side, greatly improving the import rate.

I have not done any testing on how this affects performance of the Import Wizard but my developer friends tell me it has made a significant difference for integration.

LinkedIn Integration

Here there is good news and bad news. The bad news is the LinkedIn integration no longer works and has not for quite a while. The good news is there is a free integration with InsideView now which gives you integration with LinkedIn, Twitter and Facebook.

image

Very powerful and very easy to install. Essentially you install the solution file, add the web resource it contains and label the section as required and you are good to go.

Advanced Find Limitations

Unfortunately all of the limitations from over a year ago are still in CRM. If you are looking to change this, you can lodge recommendations at Connect.

Running a CRM VPC

Three years ago, virtual PC images (VPCs) were the way to go for demonstrating Dynamics CRM; CRM Online was slow in Australia and wifi/network availability in board rooms was not guaranteed and certainly not fast. Things have changed. Frankly, I cannot remember the last time I spun up a virtual machine on my laptop. These days, I look to trial versions of CRM or, if I do need a virtual server, I go to Azure.

Making Records Invisible In CRM

This trick of assigning records to a team in a different business unit continues to serve me well, even though it was written about two years ago. There are often departments in an organisation who believe they have ‘special’ contacts and accounts. This solution means they can still get on board with CRM without losing control.

Workflow and Dialog Tricks

There are plenty of auto-numbering solutions out there but this basic one using workflows covers the essentials. My revised version using synchronous workflows is even better. As a point of note, for a client we recently reviewed whether it was possible to guarantee a unique number generation when using clustered servers. Unfortunately, there are rare occasions when a clustered environment can generate duplicate numbers, even if a plugin solution is employed, although it is rare.

Forrester and Gartner Trajectories

Like the workflow and dialog article, I have also written an updated version of this article. The same four CRM solutions which were leading two years ago, continue to lead today but with Oracle and SAP losing some ground. As the reports come out, I will continue to update the trajectories.

Surface Reviews

Two of my Surfaces review made it to the top ten list. I am writing this blog on my Surface Pro 1, which serves me as well today as it did back then. I occasionally have to flush the index to avoid running out of space but otherwise I have no complaints.

My Surface 2, unfortunately, has a failed battery which means it will only boot up on power and if that power is removed it immediately turns off. We still use it as home but, with no battery, it rarely leaves the house. Fortunately I will be in Seattle in a few weeks and will look to replace it before the 12 month warranty runs out.

Migrating to Office 365

Like my Surface Pro, I continue to use Office 365 as an exchange server and could not be happier. For the price of a couple of coffees each month, I do not need to worry about backups or PST file corruption and I get access to my email/calendar anywhere. In terms of space on my Exchange Server, I have used 19.3G. In my original article from January 2012, I had used 6.63G. This gives me a couple more years of use before I need to delete anything.

image

Conclusions

Overall, I am quite happy how my articles have stood to the test of time. CRM has moved on in some cases, for the better and my review/opinion pieces hold true to my thoughts today. As usual, if there are topics you would like me to blog about, feel free to let me know.

Sunday, September 28, 2014

Bringing Graphs Down to the Record Level

I was recently told that one thing that is well-liked about my blogs are the ‘codeless workflow workarounds’ I occasionally put out. I have not done one for a while so here is one I came across the other day. A client was facing a problem where they wanted to show a graph, usually used for a collection of records, on each record. A good example of this is the ‘Campaign Budget vs Actual Costs (By Fiscal)’.

image

Looking at the definition, we can see that this graph rolls up totals based on fields on the Campaign record.

image

If I wanted to quickly see how a specific campaign was going, it makes sense to have this graph on the Campaign form but this is not possible, although we can add graphs to the record form.

Adding Graphs to a Record Form

A little-known trick is being able to add a graph directly to a form. To do this you add a sub-grid and go to the formatting settings. Scrolling down to the bottom, you see how to do it.

image

Ticking the ‘Show Chart Only’ replaces the sub-grid with a graph and displays it on the form instead. In this case, I am replacing the ‘Recent Opportunities’ grid with a graph showing which Campaigns they came from. You can see how it looks at the bottom right below.

image

So all we need to do is add a sub-grid with the same record in it, replace it with our graph and we are sorted.

The Recursive Grid

First we add a 1:N between the Campaign entity and itself.

image

Then we set up a workflow to populate the resulting lookup with the same record, on creation. In this case I have made the workflow NOT run in the background so it appears the moment the record is saved but, for CRM 2011, the trick will still work but you will need to close and open the record to see the magic.

image

The result is a 1:N relationship where the child record will always be the same as the parent record.

Next we add the sub-grid to our form and create a new record to make sure it works (remember to format the sub-grid to have, say, ten lines so the graph is readable).

image

Sure enough, when we create a new Campaign record and save it with data, the graph appears and populates with data just from this record. In this case I set the budget to $10,000 and the Misc. Costs to $8,000.

image

Obviously, you can create a new graph to embed and change the title to give it more context.

Conclusions

If you have a customer looking for a ‘record dashboard’ or perhaps you want to summarise a set of fields on the form in a more graphical way, this trick may be just what you need and, as is my way, completely codeless. Enjoy ;)

Thursday, September 25, 2014

Using Email Templates to Communicate With External Parties

A common requirement for CRM systems is to communicate with non-CRM users as part of a process. In this case, my client’s scenario was regarding Cases where the contribution of a third party was needed. The requirement was to summarize the Case record, attach it to an email and send it off for review and comment by the third party.

The First Thought

My initial thought was an SSRS report. I talked through the solution with the client:

  • We will create the SSRS report for you, summarizing the Case record
  • The user will open the Case and run the report from the record
  • They will then save it to a PDF and attach it to an email
  • Send the email, adding in the recipient

The client was not a fan. There are solutions, such as MyCRM’s ePDF, which would auto-create the pdf but even then the client felt the process was a little awkward.

My Second Attempt

Mulling over the problem for a week, I realised there was a cheaper and simpler approach: email templates. It is quite easy to create an email template summarising the key fields of a record.

image

The client had renamed Cases to ‘Enquiries’ but you get the idea. I even added a default of ‘Unknown’ on the fields, in case they were blank.

I, again, reviewed the process with the client.

  • Open the Case and add an email
  • Apply the template
  • Remove the customer from the To line and look up the Contact you want to send the record to
  • Send the email

Again, the client was lukewarm. This time it was the replacing of the Customer in the To line which could easily be overlooked. I went back to the drawing board.

Third Time The Charm

Extending the previous solution, I set upon using a Dialog. The dialog could be run from the Case and prompt for the Contact to send the information to. The workflow engine then handled the rest.

image

In this case the process was:

  • Open the Case
  • Enter additional text in a field called ‘Additional Information For External Reference’ (a multi-line text field on the Case form, which you can see referenced in my screenshot of the email template above)
  • Run the dialog
  • Look up the contact to send the email to
  • Finish the dialog

The client was happy with the process. The text field populated in the second step could be populated by an Update Step in the dialog, rather than on the form, but this was not needed in my case.

Easy to set up, no coding required and very simple to modify in the future if the process needs changing.

Conclusions

Sometimes it takes a client to push back to deliver the best result. So, if you are a user of CRM, do not hesitate to explore the different options with your CRM consultant. There are often a few ways to achieve the same outcome and it is a case of finding the best result for you.

In this case, with a bit of creativity, the final result was cheaper, simpler, more manageable and more intuitive; a win for everyone.

Saturday, September 13, 2014

Seeing Your CRM 2011 System in CRM 2013

If you are running CRM 2011 and are starting to think it is time to migrate to CRM 2013, there is a quick way to see what it will look like and to see if any of those tricky customizations will break. Minimal technical knowledge is required and it gives you the chance to review the system and document the issues before getting those expensive consultants involved.

Step One: Spin up a 30 Day Trial

The first thing we need is a CRM 2013 environment for us to review. These days this is quite easy and will also give you access to all the Office 365 goodness to try out as well. Start here and follow the prompts. The process used to be a little awkward, jumping between Office 365 and CRM, but this has been improved a lot in the last week or so. In about five screens, you will have an Office 365 account and a CRM Online trial instance.

Provisioning also used to take a few minutes but, on this occasion, it was almost instantaneous.

image

Step Two: Create a Solution File in Your Existing CRM 2011 Instance

This is the most technical step but still reasonably straightforward. Log into CRM as someone with the System Administrator role and go to Settings-Solutions and click the New button.

image

This record will contain all the bits and pieces of our system we want to review in CRM 2013 (once we add them in).

Give it a sensible display name and (non-display) name, add in a publisher (the default one is fine) and put in a version, say, 1.0, then hit the Save button. You should have something like this:

image

You now go through and, for each component type, add in the bits you want to try out. A good place to start is Entities (the different record types in your system). Pick the key entities you want to bring into 2013 e.g. Accounts, Contacts, Activities etc. When you add then in, a message box may open up referring to dependencies. Add these into the solution as well.

If you are unsure about all the other stuff, just stick to entities and you will be fine. If you want to remove a component from your solution, use the Remove button, NOT the delete button, otherwise you will delete the entity from your system!

Step Three: Export Your Solution

When you are finished, click the Export Solution button and follow the prompts, publishing and adding in any other required components. The system will sit and done nothing for a few seconds and then give you a zip file to save. This is your system (without the data).

Step Four: Import the Solution File Into Your CRM 2013 Instance

CRM 2013 is compatible with CRM 2011 solution files (mostly) so it is a case of getting past the smiling lady on the pop up screen and going to Settings (now up the top of the screen).

image

Then to Solutions.

image

Here you can import your solution by hitting the Import button. Again, follow the prompts and, if everything goes ok it will load in your system (maybe with some warnings, which you can ignore). If it errors, this is probably the end of the road as there is something complex in your solution file which the conversion cannot handle.

Assuming it has gone in though, close down the browser, re-open and get back to CRM 2013 and you should see your system in the new environment.

Conclusions

I am involved in a few upgrades for clients at the moment and, while the actual upgrade involves a lot more than the above procedure, if you want to get an idea the look and feel and whether specific customisations will translate to the new environment, this is a great non-invasive way to do it.

This is also a great way, as a consultant, to get people exited about upgrading and can be done easily in less than half an hour while on site. Within an hour you can migrate the system and set up a couple of users for the client to log in as and explore. Enjoy.