Training and Certification

Rubel Khan's Blog

Archive for the ‘Dynamics CRM’ Category

Deploying Microsoft Dynamics CRM 4.0

Posted by Rubel Khan on October 31, 2009

At a Glance:

  • Software components of a CRM system
  • The development lifecycle
  • Elements of a CRM solution
  • A look at multi-tenancy
If you’re used to thinking of CRM as just a sales and marketing management tool, think again. Microsoft Dynamics Customer Relationship Management is a platform for developing applications that manage and track information and processes related to real-world objects. Those objects might be customers, but they can also be just about any entity (and related activities) that you need to manage.
As with any large-scale custom solution, there are some basics related to deployment that need to be understood. In this article, I am going to cover a few fundamental concepts related to Microsoft Dynamics CRM deployment, including how these concepts can be used to support a full product lifecycle deployment. I will also discuss managing multiple deployments as part of a single-solution release, and how multi-tenancy should and should not be used as part of the entire solution lifecycle.
I want to make clear at the outset of this article that when I refer to a Microsoft Dynamics CRM “solution,” I mean the totality of all customizations, extensions, custom coding, schema changes, and so forth. A solution is not just one thing; it is all of your changes together.
Behind the scenes, a Microsoft Dynamics CRM solution is a standard ASP.NET 2.0 and Microsoft .NET Framework 3.5 data-driven Web application. The three-tier system includes the following major components:
Data Tier SQL Server 2005 or SQL Server 2008 database. Using SQL Server 2008 requires a hot fix as described in the Knowledge Base article “Support for Running Microsoft Dynamics CRM 4.0 together with Microsoft SQL Server 2008.”
Middle Tier Microsoft Internet Information Services (IIS) 6.0 or later Web front end; SQL Server Reporting Services (SRS) 2005 or SRS 2008; ASP.NET 3.5; custom Windows Services.
Client Tier Microsoft Internet Explorer 6.0 or later client; ASP.NET 2.0 or later; Microsoft Office Outlook 2003 or Office 2007 client (with optional offline access); others such as SDK consumers and third-party mobile clients.
Microsoft Dynamics CRM also relies on a variety of external systems including Microsoft Exchange Server 2003 or later and Active Directory.
The Solution Development Lifecycle
A Microsoft Dynamics CRM solution goes through the same lifecycle that a custom application development project would, which might look something like the process depicted in Figure 1.
Figure 1 The application development cycle
This entire process would be supported by several environments that together comprise the development, test, and production systems. In the world of any multifaceted enterprise application, this, of course, can turn out to be surprisingly complex. If, for example, you were to mirror your environments, you might end up with something that looks like Figure 2.
Figure 2 Mirroring your dev, test, and production environments
That’s three domains, three domain controllers, three mail servers, three Web servers and three database servers—and this model assumes that SRS and CRM are on the same box, and it does not take into account things such as load balancing. Now let’s imagine you add redundancy and a few external services such as Microsoft Office SharePoint Services (MOSS), and you could end up with a scheme like the one in Figure 3.
Figure 3 Increasing complexity
For cost and complexity reasons, trade-offs might be considered to balance the need for environment isolation against the need to keep costs down and manageability up. Organizations have thus looked to a variety of techniques, such as virtualization and the Microsoft Dynamics CRM built-in multi-tenancy features, to address these challenges.
When designing a set of environments to support your CRM project’s lifecycle, there are several schools of thought and, depending on what principles are important to you, you might choose to go one way or the other. At one end of the spectrum, designers promote total isolation using exact replication. These folks believe that the only way to validate that something will work outside of production is to have a test environment that is 100% identical to the production environment. Every server, every bit, and every setting must be identical and completely isolated from development and production for testers and IT to accept and believe something will work in production.
In contrast, others think that sort of isolation doesn’t really matter at all. If they could, they would develop and test directly in the production environment. They tend to see the redundancy as a waste of time and money, and they are certain delivery would be easier if they could just get in there and make things work.
Hopefully, you fall somewhere in between these extremes and will be open to the idea that when it comes to a Microsoft Dynamics CRM-based solution, it is possible to develop a hybrid that balances complexity, cost, isolation, and manageability.
Elements of a CRM Solution
Microsoft Dynamics CRM solutions components can be divided into four major buckets, and your solution may include one, two, three, or all four.
Customizations They include form, grid, schema, and metadata changes; security roles; workflows; system settings; and templates. Microsoft Dynamics CRM customizations are provided as one or more (typically one or two) zipped XML files. They are imported into a CRM deployment via the Outlook or Web client “Settings | Customization” area and then are “published” to make them active. All of this can be automated using code that is written against the Microsoft Dynamics CRM SDK.
Extensions These include reports and custom code such as plug-ins that must be deployed separately from the customizations. Plug-in registration information is stored as an XML file and can be deployed via either a command-line or Windows Form application provided by Microsoft. This also can be automated via code written against the Microsoft Dynamics CRM SDK.
Custom Code Anything developed as part of your solution, and it might consist of external Web services, custom Web application components, and so forth. The rules and practices for deploying the custom code should be no different than for any other custom Web application.
Data Any information that needs to be imported into an environment for that environment to function. This might include domain data (such as a list of product codes) or users. The data that your solution needs can be deployed into your Microsoft Dynamics CRM instance using scripted code or CRM’s Bulk Import feature, or with some form of external process using BizTalk or other ETL (extract, transform, load) tool. Some data, such as Users, needs to be created manually or through Microsoft Dynamics CRM SDK calls.
I like to think of CRM solution deployments just as though they were custom application development deployments. This means that during development and test, each new build of the solution is installed from a clean base system and the process is as repeatable and scripted as possible.
What about Multi-Tenancy?
Now let’s discuss what the environment you are going to deploy them into should look like. You may have read about the Enterprise Edition of Microsoft Dynamics CRM 4.0 support for a feature called multi-tenancy, which lets you partition multiple instances of Microsoft Dynamics CRM within a single deployment. This means that several completely distinct organizations with their own reports, workflow, customizations, and schemas can be run on the same set of hardware using the same physical servers and the same database instances and IIS Web sites.
At first glance, this might appear to be the panacea that solves all of our manageability, isolation, and cost conundrums. Such a solution might be visualized as in Figure 4.
Figure 4 A multi-tenancy-only solution
This seems logical because each organization gets its own physical database on the shared SQL Server or instance (which includes customizations, workflows, users, roles, and settings) and its own SQL Reporting Services folder.
This model works perfectly well if those distinct organizations are part of different team or departmental solutions. This, after all, is what multi-tenancy was designed for. While it is true that each organization (or tenant) gets its own database, they all share the same organizational unit (OU) and Active Directory groups, and they will all share the same platform services and front-end application as well. This means that the same asynchronous service and IIS Web site will be shared among organizations. The front-end servers are able to “host” these different organizations through a URL provider that determines, based on the URL, which organization to host.
Take these URLs as an example: crmserver/ContosoDevOrg/loader.aspx and crmserver/ContosoTestOrg/loader.aspx. The CRM server looks at the root directory to determine the name of the organization to serve up. If no root organization name is found, as in the case of crmserver/loader.aspx, the server defaults to the first organization created in the deployment or the one where the calling user has access.
Because the same Web site is used for both organizations, if you have custom code as part of your solution, it too will be shared by both organizations; for example, crmserver/ContosoDevOrg/ISV/mycustomdialog.aspx and crmserver/ContosoTestOrg/ISV/mycustomdialog.aspx.
Both point to the same physical file on disk, such as C:\inetpub\wwwroot\isv\mycustomdialog.aspx. Since it is likely that the version of a custom extension would be different between Dev, Test, and Production, this can pose a serious problem. Let’s assume, for example, that Build 11 of your application is currently being developed, while Build 9 is in UAT (user acceptance testing) for test. If you attempt to use multi-tenancy to solve your environment problem, you will have a hard time isolating these two builds. In such situations, some of you might be tempted to try the solution shown in Figure 5.
Figure 5 Attempting to use different IIS servers to segregate your custom solutions code
In that model (if you are no longer using the Network Load Balancing address), users might hit a URL that looks like this:
Development 192.168.1.100/ContosoDevOrg/loader.aspx
Test 192.168.1.105/ContosoTestOrg/loader.aspx
Production 192.168.1.110/Contoso/loader.aspx
This model lets you have three separate front-end servers, hosting three different organizations, with three different code bases on disk. As long as a user doesn’t inadvertently hit the wrong organization on the wrong server, everything should work out perfectly.
Unfortunately, since all front-end servers are considered a part of the same deployment, difficulties start to arise a little further downstream than you might realize at first glance. This really becomes a challenge if your solution uses asynchronous plug-ins or workflows, because while you can control which servers your users hit, you cannot control which asynchronous service will process events and requests for which organizations.
This is because all asynchronous services in a deployment work in a round-robin manner, and, as such, your development server’s asynchronous service might process a workflow, system job, or asynchronous plug-in response to a request from your test server, thus blowing the isolation requirement right out of the water. In addition, if your custom code that is run by this asynchronous process relies on files that must be deployed on disk to the server (such as a configuration file or a file in the Global Assembly Cache, or GAC), you will get version conflicts.
It is important to note that, for the most part, these challenges arise only when you are writing custom code that needs to be deployed on disk or if your custom code relies on resources that would be available only on or from a particular server. If your solution is simple and only uses customizations (schemas, forms, views, and so forth), workflows, and reports, you won’t have any problems using the approach in Figure 4.
So what is multi-tenancy for and when is it a good solution for product lifecycle environments? Multi-tenancy was originally designed to solve a hardware problem related to the hosting of multiple distinct tenants in a production environment, and it does this very well. Previously, in Microsoft Dynamics CRM 3.0, each deployment, or tenant, had to have its own dedicated SQL Server or SQL Server instance, as well as a front-end server.
This was true for many reasons, including the fact that deployment-specific settings used to be stored in the registry and on disk. All of these configurations have now moved to the database, so a single application server is able to handle multiple organizations. Multi-tenancy comes in handy for hosted versions of CRM including Microsoft Dynamics CRM Online.
Design Considerations
Now that you’re aware of some potential issues, let’s discuss some points to keep in mind as you design your deployment. The answer, of course, is that it depends. It is certainly possible to run a full CRM environment (including the domain controller, SQL server, and Web server) on a single box, as you can see on the Microsoft Dynamics CRM 4.0 Virtual Machine demonstration (see the “CRM Resources” sidebar for the URL). It is very common to use a single machine virtual image for a development environment. For test, however, it is important to validate key production environment challenges, and, for this reason, I recommend having your test environment mirror your production environment in terms of structure but not capacity. Your environment might look like the one in Figure 6.
Figure 6 The test environment structure should mirror the production structure
In this approach, you try to minimize physical hardware of the infrastructure using virtualization and further attempt to minimize virtualization resources by virtualizing only key scenarios that need to be tested. You will be able to allow your developers to develop on a single server image (or images, if they have their own virtual machine on their personal desktops) if you ensure that they will pay attention and be aware of the environment to which their solution will be deployed. The issues that developers should be paying attention to are the same issues you should be building your test environment to validate, including:
Make the Settings Configurable Don’t, for example, assume the server will respond to localhost or a particular port.
Be Aware of Multiple Servers Don’t assume things will work without setting up proxy users or trust for delegation.
Keep Load Balancing in Mind Be very careful with session state and caching. Note that Microsoft Dynamics CRM is designed to be completely stateless and work well with a round-robin load balancer.
Think about Multi-Tenancy When multiple tenants are hosted on a single machine, they share the same process space. This means that elements such as caches need to be keyed by the organization name so that users from one organization will not inadvertently utilize data from another organization. In addition, when you have client-side code that has links or calls back to the server, you need to be sure that the calls preserve the organization name in the URL; otherwise, you might hit the default organization or an organization you do not expect.
Key Takeaways
Isolation Is Important When designing your solution, keep in mind which approach (as illustrated in Figures 4, 5, or 6) will work best for you and be aware of when and where your custom code might run. It’s also worth noting when you do not need to worry about such issues because of the type of extensions your solution uses.
Virtualization Virtualization helps reduce complexity in building an environment that mirrors key test scenarios of production. Here is some guidance about the setup. Put CRM and SQL Server on separate servers. This helps verify trust for delegation and other related issues. CRM servers should be load-balanced, which will help identify session, caching, and cross-server issues. Finally, put the domain controller and e-mail on separate servers; this helps in identifying connectivity issues.
Refresh Environment for Each Build As a general rule, it’s a good idea to create backups either of the virtual environments or simply of the Microsoft Dynamics CRM databases (Data and Config) that can then be restored to get the server back to a “vanilla” state. You then do a full clean deployment into a fresh environment each time, including custom code, customizations, plug-ins, and domain data.
Redundancy/Performance Testing Can Be Done Separately Except for very large organizations, you can usually tackle failover and performance testing through isolated simulations and not through “real-world” build-outs. This means that it is not necessary for you to attempt to build out a test environment that enables testing of these scenarios. As an alternative, you can rely on testing them either in production or in separate one-off environments.
In closing, Microsoft Dynamics CRM is a scalable, enterprise-class system that, when appropriately configured and deployed, can handle small teams, enterprise-wide solutions, and every option in between. Trying to determine which product lifecycle environment is right for you will depend on a variety of factors.
Generally speaking, multi-tenancy is not an ideal way to address the product lifecycle development challenges of complex solutions and is best used when it is fully understood. Simple solutions that require only basic customization or that make use of properly coded and isolated custom extensions that don’t rely on disk resources or server-specific access should do just fine following the model depicted in Figure 4.
If your solution demands more isolation, server-specific resources, or access (perhaps an external service is only allowed through your VLAN from one specific server to another), and so forth, I recommend going with the model shown in Figure 6. And I’d recommend avoiding the approach that Figure 5 illustrates, as it is a hybrid hack at best.
Ultimately, Microsoft Dynamics CRM can be deployed in thousands of configurations, and exactly what is right for you will depend on what your solution requires. With a better understanding of multi-tenancy, single-server development environments, virtual test environments, and what testable scenarios are important to you, you should be able to design a product lifecycle deployment that is both functional and cost-effective.
Aaron Elder (Microsoft Dynamics CRM MVP) works for Ascentium, a technology consulting and interactive marketing agency. Visit the Ascentium blog at ascentium.com/blog/crm.

Source: http://technet.microsoft.com/

Posted in Deployment, Dynamics CRM | Tagged: | Leave a Comment »

Learn Microsoft Dynamics CRM

Posted by Rubel Khan on August 30, 2009

Get started

Sharing and assigning records

Learn to share and assign records to other users. Length: 3:02 minutes View this video…
 

Converting records

Learn to convert records from one record type to another as part of the sales life cycle. Length: 2:56 minutes View this video…

Create a personal view

Learn to create a personal view using Advanced Find. Length: 2:58 minutes View this video…

Sales overview

Microsoft Dynamics CRM sales functionality can help you track sales. This overview demonstrates how to create a lead, convert the lead into an opportunity, and provide a quote. Length: 12:00 minutes View this video…

Customer service overview

Microsoft Dynamics CRM offers many customer service tools. This video demonstrates how your customer service staff can create and track customer service requests and tasks. Length: 14:54 minutes View this video…

Service scheduling overview

This overview video demonstrates the customer service scheduling capabilities, including types of scheduling and defining services, in Microsoft Dynamics CRM. You will also learn how to use the Help files to find the information you need. Length: 13:55 minutes View this video…

Working with accounts and contacts

This demonstration shows you how to work with Microsoft Dynamics CRM accounts and contacts in Microsoft Office Outlook. Length: 05:30 minutes View this video…

Get data into Microsoft Dynamics CRM

Importing customer data

In this video, you learn how to import your data, and avoid the pitfall of having to spend time on repetitive data entry: 3:09 minutes View this video…

Using duplicate detection

This video guides you through the steps of how to run duplicate detection, and then merge or delete duplicate records. 3 minutes View this video…

 
Data migration overview

You have multiple options for migrating data into Microsoft Dynamics CRM. The video shows you three of these options, including using wizards to import your information. Length: 10:00 minutes View this video…

Get data out of Microsoft Dynamics CRM

Using Advanced Find

In this video, learn the steps for running queries in Advanced Find, including entering the criteria, or fields, that will help you filter your search. Also, save your Advanced Find search results as a personal view that you can access any time you want. Length: 3:11 minutes View this video…

Create a personal view

This video walks you through the steps for creating a personal view and saving it using Advanced Find. Includes how to set the criteria and how to define which columns are displayed. Length: 3:08 minutes View this video…

Reporting overview

Take a complete tour of using Advanced Find to find information, exporting data to Microsoft Office Excel to analyze it, using default reports, and creating your own reports by using the Report Wizard. Length: 15:39 minutes View this video…

Set up Microsoft Dynamics CRM for your business

Customization overview

Microsoft Dynamics CRM is a customizable solution for your business. This demonstration walks you through how to customize existing entities to fit your operations, and how to create your own entities. Length: 13:00 minutes View this video…

Configuring data duplication settings

Microsoft Dynamics CRM has data duplication functionality to keep unnecessary and redundant information out of the system. This demonstration covers how to configure the data duplication settings for your business as well as how to run duplicate detection jobs. Length: 08:27 minutes View this video…

Set up your staff in Microsoft Dynamics CRM

Working with security roles

This demonstration steps your through maintaining security roles in Microsoft Dynamics CRM. Learn how to create and modify security roles and privileges for your organization. Length: 09:58 minutes View this video…

How to implement territory management

This video walks you through the steps of creating and managing sales territories for your sales team. Length: 10 minutes View this video…

 

Explore the possibilities

Workflow overview: Implementing a sales process

Using the sales process as an example, this video demonstrates how you can use Microsoft Dynamics CRM workflow tools to generate the activities necessary to complete a process. Length: 25:00 minutes View this video…

Workflow example: Simple trade show lead process

This video demonstrating how to create a simple follow up process that fires when you import trade show leads. Length: 10:30 minutes View this video…

Posted in Dynamics CRM, How Do I? Videos | Leave a Comment »

TechNet Magazine: August 2009 Edition Online Now!

Posted by Rubel Khan on August 13, 2009

The August 2009 Edition of TechNet Magazine is now online.  Check out some of the highlights below.August2009  The theme this month is “connecting the dots” using Microsoft BI solutions.  Plus as always there is lots of other good information in there.

Also in this edition there is great article on the value of Microsoft Certifications and why they matter.  It’s a great article that talks about the roadmap as we move to new operations systems such as Windows Server 2008 R2 and Windows 7.  Check out the article here.

Posted in Business Intelligence, Dynamics CRM, TechNet | Leave a Comment »

Microsoft Ties Dynamics CRM to Twitter – Business Center – PC World

Posted by Rubel Khan on July 10, 2009

Posted in Dynamics CRM, Microsoft | Leave a Comment »

Exam MB2-633: Microsoft Dynamics CRM 4.0 Installation and Deployment

Posted by Rubel Khan on July 4, 2009

Exam topics covered

The following list includes the topic areas covered on this exam. The percentage indicates the portion of the exam that addresses a particular skill.

Planning a Microsoft Dynamics CRM Implementation (18 percent)
Planning for Business Needs
Planning for Hardware
Planning for Software
Microsoft Dynamics CRM Installation (24 percent)
Understanding Installation Concepts
Understanding Server Roles
Understanding Security
Understanding the Software Installation Process
Microsoft Dynamics CRM E-mail Router (12 percent)
Microsoft Dynamics CRM E-mail Router Configuration Concepts
Configuring the E-mail Router
Microsoft Dynamics CRM for Microsoft Office Outlook (20 percent)
Installing the Microsoft Office Outlook Client
Supporting the Microsoft Office Outlook Client
Redeployment and Upgrading (16 percent)
Understanding the Redeployment Process
Understanding the Upgrade Process
Uninstalling and Repairing (10 percent)
Uninstalling Microsoft Dynamics CRM
Repairing Microsoft Dynamics CRM

Top of page

Audience profile

Individuals who want to obtain a certification on Microsoft Dynamics GP 10.0 Human Resources and Payroll should take this exam.

Top of page

Credit toward certification

When you pass this exam, you earn credit toward the following certifications:

Microsoft Certified Business Management Solutions Specialist
Microsoft Certified Business Management Solutions Professional – Installation and Deployment for Microsoft Dynamics CRM 4.0

Top of page

Preparation tools and resources

In addition to your hands-on experience working with the product, we highly recommend that you use the following tools and training to help you prepare for this exam:

E-Learning courses for this exam

Collection 8911: Installation and Deployment in Microsoft Dynamics CRM 4.0

Note We strongly recommend that you use training materials in conjunction with the corresponding e-learning to prepare for a certification exam.

Training materials for this exam

Training materials for Microsoft Dynamics can be ordered through your local partner.

Course 8911: Installation and Deployment in Microsoft Dynamics CRM 4.0

Classroom training for this exam

Course 8911: Installation and Deployment in Microsoft Dynamics CRM 4.0

Supplemental learning resources

Microsoft Dynamics CRM 4.0 Implementation Guide, and online manuals and tutorials found in online Help in the Microsoft Dynamics CRM product.

Additional skills recommended

Working knowledge of Microsoft Dynamics, Windows Server 2003, Active Directory, Microsoft Internet Information Services (IIS), Microsoft Exchange, Microsoft SQL Server 2005, and Microsoft Office Outlook.

Microsoft online resources

MSDN: Designed as a reference for developers, the Microsoft Developer Network (MSDN) features code samples, technical articles, newsgroups, chats, and more.
Training and certification newsgroups: There is a newsgroup for every Microsoft certification. By participating in the ongoing dialogue, you take advantage of a unique opportunity to exchange ideas with and ask questions of others, including more than 750 Microsoft Most Valuable Professionals (MVPs) worldwide.

Top of page

Skills being measured

This certification exam measures your ability to do the following:

Understand and articulate how the components are used in a Microsoft Dynamics CRM 4.0 deployment.
Understand how those components should be effectively installed and deployed to support Microsoft Dynamics CRM. This includes supporting components such as Active Directory, SQL Server, IIS, as well as the Microsoft Dynamics CRM components, which include Microsoft Dynamics CRM Server, Microsoft Dynamics CRM for Microsoft Office Outlook, Microsoft Dynamics CRM E-mail Router, and Microsoft Dynamics CRM sample data.

Top of page

Exam specifics

Time requirements and questions

100 minutes to complete the exam
50 questions, with a passing rate of 70 percent
Multiple choice and multiple answer questions

Registration

Register for Exam #MB2-633, Microsoft Dynamics CRM 4.0 Installation and Deployment.

Register now (Prometric.com)

Note This preparation guide is subject to change at any time without prior notice and at the sole discretion of Microsoft. Microsoft exams might include adaptive testing technology and simulation items. Microsoft does not identify the format in which exams are presented. Please use this preparation guide to prepare for the exam, regardless of its format. Please contact MBS-Cert@microsoft.com with any certification or training-related questions.

Learn more and download samples

Posted in Dynamics CRM, Exam, MB2-633, Microsoft | Leave a Comment »

Exam MB2-632: Microsoft Dynamics CRM 4.0 Applications

Posted by Rubel Khan on July 4, 2009

Exam topics covered

The following list includes the topic areas covered on this exam. The percentage indicates the portion of the exam that addresses a particular skill.

Microsoft Dynamics CRM Concepts (34 percent)
Understanding Microsoft Dynamics Software
Multi-Lingual User Interface and Multi-Currency
Customer-Centered View
Using Microsoft Dynamics CRM for Microsoft Office Outlook
Sales (18 percent)
Microsoft Dynamics CRM Sales Concepts
Opportunity Management
Managing Leads
Sales Order Processing
Marketing (16 percent)
Planning and Creating Marketing Campaigns
Managing Marketing Campaigns
Service Management (18 percent)
Managing Contracts
Managing Cases
Creating a Knowledge Base
Managing Service Queues
Service Scheduling (14 percent)
Understanding the Service Scheduling Life Cycle
Scheduling Services
Maintaining Users and Resources

Top of page

Audience profile

Individuals who want to obtain a certification on Microsoft Dynamics CRM 4.0 Customization and Configuration should take this exam.

Top of page

Credit toward certification

When you pass this exam, you earn credit toward the following certifications:

Microsoft Certified Business Management Solutions Specialist
Microsoft Certified Business Management Solutions Professional – Applications for Microsoft Dynamics CRM 4.0
Microsoft Certified Business Management Solutions Professional – Developer for Microsoft Dynamics CRM 4.0

Top of page

Preparation tools and resources

In addition to your hands-on experience working with the product, we highly recommend that you use the following tools and training to help you prepare for this exam.

E-Learning courses for this exam

Collection 8913: Applications in Microsoft Dynamics CRM 4.0

Note We strongly recommend that you use training materials in conjunction with the corresponding e-learning to prepare for a certification exam.

Training materials for this exam

Training materials for Microsoft Dynamics can be ordered through your local partner.

Course 8913: Applications in Microsoft Dynamics CRM 4.0

Classroom training for this exam

Course 8913: Microsoft Dynamics CRM 4.0 Applications

Supplemental learning resources

Sales Management, Marketing Automation, Service Management, Service Scheduling online manuals, and tutorials in online Help in the Microsoft Dynamics CRM product.

Additional skills recommended

General working knowledge of Microsoft Windows 98, Microsoft Windows 2000 Server, or Windows XP; the installation process; and the Customer Relationship Management process.

Microsoft online resources

MSDN: Designed as a reference for developers, the Microsoft Developer Network (MSDN) features code samples, technical articles, newsgroups, chats, and more.
Training and certification newsgroups: There is a newsgroup for every Microsoft certification. By participating in the ongoing dialogue, you take advantage of a unique opportunity to exchange ideas with and ask questions of others, including more than 750 Microsoft Most Valuable Professionals (MVPs) worldwide.

Top of page

Skills measured

This certification exam measures your ability to understand and articulate how to use and implement the Microsoft Dynamics CRM 4.0 Applications modules effectively, and to use the terms applied in the application to adequately convey solutions to other users.

Top of page

Exam specifics

Time requirements and questions

100 minutes to complete the exam
50 questions, with a passing rate of 70 percent
Multiple choice and multiple answer questions

Registration

Register for Exam #MB2-632, Microsoft Dynamics CRM 4.0 Applications.

Register now (Prometric.com)

Note This preparation guide is subject to change at any time without prior notice and at the sole discretion of Microsoft. Microsoft exams might include adaptive testing technology and simulation items. Microsoft does not identify the format in which exams are presented. Please use this preparation guide to prepare for the exam, regardless of its format. Please contact MBS-Cert@microsoft.com with any certification or training-related questions.

Learn more and download samples

Posted in Dynamics CRM, Exam, MB2-632, Microsoft | Leave a Comment »

Exam MB2-631: CRM 4.0 Customization and Configuration

Posted by Rubel Khan on July 4, 2009

About this ExamThis certification exam measures your ability to do the following:

  • Understand and articulate how to configure the application’s organizational settings.
  • Customize the application by using its built-in customization tools.

Time requirements and questions

  • 100 minutes to complete the exam
  • 50 questions, with a passing rate of 70 percent
  • Multiple choice and multiple answer questions
 
Audience ProfileIndividuals who want to obtain a certification on Microsoft Dynamics CRM 4.0 Customization and Configuration should take this exam.

Additional skills recommended:

  • General working knowledge of Microsoft Dynamics CRM 4.0. It is recommended, but not required, that candidates have completed Microsoft Dynamics CRM 4.0 Applications training.
  • Because this course focuses on customizing database entities, attributes, relationships, and mappings, it is recommended that students have a basic understanding of Microsoft SQL Server and relational database functionality.
Credit Toward CertificationExam MB2-631: CRM 4.0 Customization and Configuration: counts as credit toward the following certification(s):

Note This preparation guide is subject to change at any time without prior notice and at the sole discretion of Microsoft. Microsoft exams might include adaptive testing technology and simulation items. Microsoft does not identify the format in which exams are presented. Please use this preparation guide to prepare for the exam, regardless of its format.

 

Skills Being MeasuredThis exam measures your ability to accomplish the technical tasks listed below.The percentages indicate the relative weight of each major topic area on the exam.

 

Configuring Your Deployment (28 percent)

  • Configuring Business Units
  • Configuring Security
  • Configuring Users and Teams
  • Configuring Organizational Settings
  • Configuring Multi-User Interface Language Packs
  • Configuring Currency Exchange Rates

Customizing Forms and Views (12 percent)

  • Customizing Forms
  • Customizing Views
  • Publishing Forms and View Changes

Customizing Entities and Attributes (32 percent)

  • Maintaining Custom Attributes
  • Maintaining Custom Entities
  • Maintaining Custom Entity Icons
  • Renaming Entities
  • Translating Customized Entity Labels

Customizing Relationships and Mappings (20 percent)

  • Relationship Concepts
  • 1:N Relationship Behavior
  • Creating 1:N Relationships
  • Creating N:N Relationships
  • Entity Mappings

Maintaining Organizations (8 percent)

  • Core Concepts – Multi-Tenancy and the Configuration DB
  • Managing Additional Organizations
  • Importing Organizations
  • Maintaining Servers and Licenses

Posted in Dynamics CRM, Exam, MB2-631, Microsoft | Leave a Comment »

Exam MB2-634: CRM 4.0 Extending Microsoft Dynamics

Posted by Rubel Khan on July 4, 2009

About this Exam

This certification exam measures your understanding of important skills and areas of knowledge used in the development of extensions for Microsoft CRM 4.0.

 
Audience Profile

Individuals wishing to obtain a certification on CRM 4.0 Extending Microsoft Dynamics  should take this exam.

Credit Toward Certification

When you pass Exam MB2-634: CRM 4.0 Extending Microsoft Dynamics, you complete the requirements for the following certification(s):Microsoft Certified Business Management Solutions SpecialistExam MB2-634: CRM 4.0 Extending Microsoft Dynamics: counts as credit toward the following certification(s):

Microsoft Certified Business Management Solutions Professional – Developer for Microsoft Dynamics CRM 4.0

Note This preparation guide is subject to change at any time without prior notice and at the sole discretion of Microsoft. Microsoft exams might include adaptive testing technology and simulation items. Microsoft does not identify the format in which exams are presented. Please use this preparation guide to prepare for the exam, regardless of its format.

 

Skills Being MeasuredThis exam measures your ability to accomplish the technical tasks listed below.The percentages indicate the relative weight of each major topic area on the exam.

 

Extension Approach – 24%

  • Choosing Extension Technology
  • Licensing Requirements
  • Extending the Outlook Client
  • Security Considerations
  • Deployment Considerations

Web Service Programming – 24%

  • Connecting to CRM Web Services
  • Using CRM Data Types
  • Modifying Data
  • Querying Data
  • Using Requests and Response
  • Using Metadata
  • Exception Handling

Custom Workflow Activities – 10%

  • Creating Custom Workflow Activities  
  • Deploying Custom Workflow Activities
  • Troubleshooting Custom Workflow Activities

Developing Plug-ins – 16%

  • Creating Plug-ins
  • Deploying Plug-ins
  • Troubleshooting Plug-ins

Application Programming – 26%

  • Customizing Navigation
  • Adding Menus and Buttons
  • Using IFrames
  • Using the Form Object Model
  • Deploying ASP .Extensions

 

Preparation Tools and ResourcesTo help you prepare for this exam, Microsoft Learning recommends that you have hands-on experience with the product and that you use the following training resources. These training resources do not necessarily cover all of the topics listed in the “Skills Measured” tab.
Classroom Training

Microsoft E-Learning

Posted in Dynamics CRM, Exam, MB2-634, Microsoft | Leave a Comment »

Microsoft Dynamics CRM 4.0 Certification

Posted by Rubel Khan on June 22, 2009

If you are interested in Microsoft Dynamics CRM 4.0 Certification, you may find following information helpful:   

MB2-631

E-Learning: Collection 8912: Customization and Configuration in Microsoft Dynamics CRM 4.0

MB2-632

E-Learning: Collection 8913: Applications in Microsoft Dynamics CRM 4.0

MB2-633

E-Learning: Collection 8911: Installation and Deployment in Microsoft Dynamics CRM 4.0

Book: http://www.microsoft.com/learning/en/us/book.aspx?ID=10598&locale=en-us

Implementation Guide (Some people find this helpful, Specially for 70-633 exam): http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=1ceb5e01-de9f-48c0-8ce2-51633ebf4714

Some Free Introductory E-Learning Courses:

Microsoft Dynamics CRM Concepts, Terminology and Navigation

Customer Relationship Management and Tracking

Microsoft Dynamics CRM Blogs: https://community.dynamics.com/content/crmblogs.aspx?groupid=23

Exam specifics:

Time requirements and questions

100 minutes to complete the exam
50 questions, with a passing rate of 70 percent
Multiple choice and multiple answer questions

Posted in Dynamics CRM, E-Book, E-Learning, Exam, Free Training, MCTS, Microsoft | Leave a Comment »