{Advanced XRM DEVELOPMENT}Retrieve entity image url for crm 2013/2015

Sometimes we get requirement to find the url of image field on record. Considering example of contacts , here is the example to retrieve the URL below:

QueryByAttribute query = new QueryByAttribute(“contact”);

query.ColumnSet = new ColumnSet(“entityimage_url”);

query.Attributes.AddRange(“lastname”);

query.Values.AddRange(“sample”);

EntityCollection binaryImageResults = _service.RetrieveMultiple(query);

foreach (var record in binaryImageResults.Entities)

{

     String recordName = record.Attributes[“entityimage_url”].ToString();

     Console.WriteLine(recordName);

}

Hope it helps!

Set Currency Programmatically : CRM 2011/2013/2015

I recently needed to set currency for a record in CRM in my plugin. It sounded a good piece of code to refer to my blog as it is often needed. Here it goes:

EntityReference currencyType = new EntityReference();
currencyType.Id = “(The Guid Of The Currency Type Goes Here)”;
currencyType.LogicalName = “transactioncurrency”;

entity.Attributes.Add(“transactioncurrencyid”,currencyType);

For JS reference refer my older blog post: Click here

Hope it helps!

{Dynamics Verified Professional} interview with rajeev pentyala

image

Rajeev Pentyala is a Microsoft Dynamics CRM consultant working with Microsoft in Hyderabad,India. He is not only and old colleague of mine but a great professional

in Dynamics CRM and Microsoft stack of technologies with whom I had chance to work in two back to back projects.

His blog is featured in Top 25 Dynamics CRM blogs and statistics of 425k hits tell a story in itself.

His introduction in his own words:

“I am Rajeev Pentyala, A Master’s Degree holder from Madras University and Microsoft Dynamics CRM Certified Professional.

I have been working on Microsoft technologies like Microsoft Dynamics CRM 4.0 & 2011,ASP.Net,C#.Net, WCF, Jscript, JQuery, Silverlight and SSIS.

In my free time, I would love to play cricket, spend time with family, friends and surf the net for new gadgets and latest technologies.

I am a big Cricket fan and a decent batsman. Please do share your thoughts and suggestions on my posts.”

His blog link:rajeevepentyala.wordpress.com

image

1. Name, current job title and social media links please

a. Rajeev Pentyala, Associate Consultant, Microsoft.

2. What does an average day at work look like

a. Analysis and Design CRM system. Writing few Plug-ins and Client Script. Performance tuning.

3. What different roles/Job titles have you had whilst using CRM

a. Developer, QA, Production Support

4. What job did you did before you starting using CRM

a. Software Engineer with Asp.Net,C#.Net, HTML

5. What was the first version of Microsoft Dynamics CRM you worked with and how long have you been using Microsoft Dynamics CRM

a. CRM 4.0, Total 4 years of CRM experience

6. How do you stay up to date with the CRM

a. Keep tracking the CRM version releases and reading product team technical blogs

7. What one feature would you add to CRM Product.

a. Lock feature at SDK level. Lack of this causing lot of issues with RACE conditions on concurrent user access.

8. What is the best tool/solution you have used recently?

a. Ribbon work bench’s Ribbon editor, Meta data browser from XRM toolkit

9. What CRM certifications do you have, do you try and keep up to date with CRM certifications.

a. Holding all CRM 2011 and 2013 certifications

10. How important is it to have good business analytical skills working with Microsoft Dynamics CRM.

a. For CRM projects, it’s very important to understand the business in detailed, for example security model, you have to be cautious on usage of Business units, Users or Teams.

At design time, if you don’t understand Customer’s business model properly and miss something it could lead to System’s abnormal behaviour.

10 How useful is it to have programming knowledge to become a good Microsoft Dynamics CRM Professional?

a. It’s always good to have .Net background which helps understand SDK better.

11. How often do you travel as a Microsoft Dynamics CRM Professional?

a. Needs bit travelling on UAT, Deployment and Support phases of project.

12. Can you see yourself not using CRM in your career in the future

a. Not sure. But I am sure I will be using Microsoft Dynamics.

13. What are your hobbies outside of CRM.

a. Blogging, Playing cricket.

14. What was the last book you read and what was the last film you watched

15. Has CRM ever got you in trouble with your partner/family.

a) No. I must admit I am not spending much time on blog after marriage.

16. Have you friends ever told you to stop talking/tweeting/blogging about CRM? What does your partner/family member(s) think of CRM

a. No.

17. Tell me something interesting/unusual about yourself

b. First engineer from my family.

18. Who is the first CRM Expert you remember reading/seeing

c. My colleague and friend Nishant Rana.

19. Tips for someone who wants to become a CRM Expert

d. Good knowledge in C#, HTML and Jscript helps you become expert in CRM. Keep update yourself and start a CRM technical blog.

As a certificate of appreciation, here is a certificate from my end:

image

Happy CRMing!

{QUICK TIP} SUPPORTED Configurations for server side sync for CRM 2013/2015

Recently was asked for supported configurations for server side sync for CRM 2015 online. Here is the matrix:

CRM deployment

Email system

Email synchronization

Appointments,

contacts, and tasks synchronization

Protocol

CRM (on-premises)

  • Exchange Server 2010 
  • Exchange Server 2013

Yes

Yes

Exchange Web Services

CRM (on-premises)

  • Gmail
  • Yahoo! Mail
  • MSN1
  • Outlook.com 1
  • Windows Live Mail 1

Yes

No

POP3/SMTP

Microsoft Dynamics CRM Online

Exchange Online

Yes

Yes

Exchange Web Services

Microsoft Dynamics CRM Online

  • Gmail
  • Yahoo! Mail

Yes

No

POP3/SMTP

Source: Technet

Hope it helps!

{Useful to know}Importance of documentation in CRM consulting world

Before starting this article, I want to clarify that I am writing after a long break of holidays and I might be a bit rusty as feels my brain:

clip_image002

That is why I would like to have comments or mails to know how well I am doing after the break.

Anyways, coming back to the title, this year I enter 8th year working in Software consulting industry and most parts of it has been with Dynamics CRM product.

I have had various hats during this time and found some common pain points in terms of documentation standards. Sometimes I have found no documentation. Sometimes there has not been a technical documentation, sometimes a mix has been presented to the client. So from my experience, I feel documentation is more important than code in CRM consulting world. Some of the supporting points below:

· Clarify your business goals, requirements and activities: With a proper documentation, you can share the business goals and requirement with your management and team mates so that they have a clear vision and goals and the activity they perform will be more towards the success.

· Absent technical or design documentation? May be OK in some cases, but the lack of documentation becomes a problem when the design has to be communicated across time (to a developer who will join the team six months later) or space (to a developer working in another country) or a developer leavings takes the design and technical approach with himself/herself, which all are quiet common occurrences in CRM consulting world.

· Design and Specify your implementation: This comes in Architectural/Design documents and it gives you complete overview of how your implementation look like.

· Everything is clearly explained: When you makes End User documentation of the product of implementation, you have to explain each and everything about its working. It describes each feature of the program, and assists the user in realizing these features.

· Anybody can work on other’s code: If you are a developer, it is not sufficient to write good code only but you also need to take cares about the documentation part, which can be helpful to other developers while working in a team. In CRM projects, this becomes important as there are many parallel running projects and consultants switch between projects quickly. This is partly due to shortage of experienced CRM consultants in the industry.

· Helpful in proper communication: A good software documentation is helpful in proper communication. The written procedure helps you to make interaction within several departments.

Often time and budget constraints are the primary cause for CRM consulting industry to not choose to do proper documentation but in order to retain a client who is mostly happy, documentation is the golden keys.

Hope it helps!

{STEP BY STEP}SHAREPOINT INTEGRATION WITH CRM 2013

SHAREPOINT INTEGRATION

Please follow the below steps to setup the SharePoint Integration:

  1. If your CRM organization has not deployed document management, when a CRM System Administrator logs in an alert message will be displayed to enable server-based SharePoint integration otherwise, user can go to Setting à Document Management à Click on Enable Server-based SharePoint Integration.

clip_image002[5]

Note: If you don’t see the alert and have not previously enabled server-based SharePoint integration, clear your browser cache or open CRM using Internet Explorer with In-Private browsing to have the alert display again. Once you configure server-based integration, the alert will no longer appear.

  1. In the Enable Server-based SharePoint Integration alert click Enable Now to launch the Configuration Wizard.
  2. Enter the URL of your SharePoint site that you will use for auto folder creation, and then click or tap Next.

clip_image003

  1. The URL will be checked for being a valid SharePoint online site and for existing in the same Office 365 tenant as your CRM organization. After enabling server-based SharePoint integration you can’t go back to the previous client-side integration. Click or tap Next and then Finish

clip_image004

clip_image006[4]

Note: After you enable server-based SharePoint the options to Install List Components and to enable server-based integration will no longer appear as an option in Document Management.

  1. If any of user sites are invalid, user cannot continue.

clip_image007

  1. Once server-based SharePoint integration is enabled you will need to enable the entities you want available for document management integration. Go to Settings à Document Management à Document Management Settings.
  2. Select the entities to be integrated with document management. Enter the Microsoft Office 365 SharePoint Online URL, and then click or tap Next.

clip_image009

  1. This will validate the URL you entered as well as give you the option to base the folder structure on Account or Contact.

clip_image010

  1. On click on Next button à Alert message would be popup and click Ok

clip_image012[4]

  1. Finally the wizard would show the status of Document Library Create Status:

clip_image014

  1. Browse to your Microsoft Dynamics CRM Online web application. Go to Microsoft Dynamics CRM à Sales à Accounts
  2. Click or tap an account, such as the Adventure Works sample account.
  3. On the nav bar, click or tap the down arrow next to the account name, and then click or tap Documents.

clip_image016[4]

  1. Click or tap Upload, and then browse to a document to upload to the new folder in your Microsoft Office 365 SharePoint Online Team site.

clip_image018[4]

  1. The document is now part of your Microsoft Dynamics CRM Online documents list. To see the document in your Microsoft Office 365 SharePoint Online Team site, click or tap Open SharePoint.

clip_image020

The document is now in your Microsoft Office 365 SharePoint Online Team site.

clip_image022[4]

  1. Great work – you have finished your SharePoint Integration with CRM 2013 Online (Leo)

Hope it helps!

{STEP BY STEP}Migrate Microsoft Dynamics CRM Online to Microsoft Dynamics CRM On-Premises

This blog lists the steps needed to migrate from Microsoft Dynamics CRM Online to a Microsoft Dynamics CRM (on-premises) deployment.

Restore a copy of the Microsoft Dynamics CRM Online database

To receive a copy of the Microsoft Dynamics CRM Online database, contact Technical Support.

Restore the Microsoft Dynamics CRM Online database

The backup of your Microsoft Dynamics CRM Online database must be restored by using a server running the same, or a later version, of Microsoft SQL Server. Restore the copy of the Microsoft Dynamics CRM Online database to a computer running SQL Server in the target Microsoft Dynamics CRM (on-premises) deployment. To do this, follow these steps.

Restore the Microsoft Dynamics CRM Online database (.bak files)

  1. Open Microsoft SQL Server Management Studio, and then connect to the appropriate instance of SQL Server.
  2. In Object Explorer, right-click Databases, and then click Restore Database.
  3. Type the name of a new database in the To database open text box. The database name must include _MSCRM in the name. For example the database name is PoC_MSCRM.
  4. On the General page, in the Source for restore section, click From device.
  5. Click the browse button in the From device option. This opens the Specify Backup window.
  6. In the Specify Backup window, click the Add button to open the Locate Backup File window.
  7. Select the file you want to use for the restore operation, and then click OK.
  8. Click OK to close the Specify Backup window.
  9. Mark the checkbox in the Restore column next to the backup set option.
  10. Click OK to begin the restore process.

Apply the required updates

Apply all required updates to the Microsoft Dynamics CRM (on-premises) deployment.

Import the Microsoft Dynamics CRM Online Organization

Import an organization in Microsoft Dynamics CRM (on-premises). The time to complete the import of the organization is dependent on multiple factors. These factors include the size of the database you are importing, the number of users, and the hardware used.

Import the organization

  1. Open Deployment Manager
    Open Deployment Manager by clicking Start, click Programs, click Microsoft Dynamics CRM, and then click Deployment Manager.

clip_image002

  1. Start the Import Organization Wizard
    Right-click Organizations, and then click Import Organization.
  2. clip_image004
  3. Select the SQL Server
    In the Select SQL Server window, select the SQL Server database that you restored in the SQL Server list, and then select the organization database in the Organization database list.

clip_image005

  1. Specify the Organization Name
    Type a Display name and a Name for the organization in the Specify the Organization Name window.
  2. clip_image006
  3. Specify the Reporting Services Server
    In the Specify Reporting Services Server window, type the Microsoft SQL Server Reporting Services server URL for the organization in the Report Server URL field.

clip_image007

  1. Select the Method for Mapping UsersSelect the appropriate method for mapping users from the Microsoft Dynamics CRM Online deployment to the Microsoft Dynamics CRM (on-premises) deployment. Users must already exist in Active Directory for the Microsoft Dynamics CRM (on-premises) installation. The installation wizard does not create the users automatically. To complete the mappings, the user who runs the import operation must be mapped to a user in Microsoft Dynamics CRM (on-premises).
  2. The following list provides information about the methods available in the Import Organization Wizard. Note, these options will be presented after selecting “Select Custom Mapping Options” and clicking next:
    • Keep existing user mappings: Do not use this option when you migrate from Microsoft Dynamics CRM Online to Microsoft Dynamics CRM (on-premises). If you use this option, you will receive an error message and no users will be mapped.
    • Manually map users: You can use this option to manually map users in the Microsoft Dynamics CRM Online organization database to existing users in the target Active Directory.
    • Generate a new mapping file: Select this option to create a sample XML mapping file. Then, you can exit the wizard, modify the user mapping file to select how users are imported, and then run the Wizard again. The user mapping file is created in thedrive:\Program Files\Microsoft Dynamics CRM\Tools folder. The file contains the following information:

XML

<MappingConfiguration>

<UserMapping old=” someone@example.com ” new=”” />

</MappingConfiguration>

    • Auto-map users: Select this option if you want to automatically map the user settings by selecting from the following options:
      • Active Directory account name: Do not use this option when you migrate from Microsoft Dynamics CRM Online to Microsoft Dynamics CRM (on-premises). This option attempts to match users based on Active Directory account name.
      • Microsoft Dynamics CRM full name to Active Directory full name: You can use this option to match users based on the First Name and the Last Name attributes from the Microsoft Dynamics CRM Online organization to the First Name and the Last Name values stored in Active Directory. We recommend that you use this option if the names are consistent between the Microsoft Dynamics CRM Online deployment and the target Active Directory.
      • Use existing map file: This option uses the mapping file created in the Generate a new mapping file option.
        clip_image008
  1. Edit the User Mappings
    In the Edit User Mappings window, the suggested mappings from the Auto-map options can be reviewed or can be overridden to specify other user accounts. In most situations, an error will be received that not all users were mapped successfully.
  2. The best practice to follow when you import to a limited number of licenses is to disable users in Microsoft Dynamics CRM Online prior to requesting a copy of the Microsoft Dynamics CRM Online SQL Server database. If disabled Microsoft Dynamics CRM Online users are mapped in the import, those users cannot be reverted and the process must be restarted.
  3. clip_image009
  4. If the Setup user is left unmapped, you receive the following error. This user must be mapped prior to completing the import.
  5. clip_image010
  6. System Requirements
    In the System Requirements window, you receive the results of several environment diagnostic checks. If you receive a red alert in the System Requirements window, the issue must be resolved prior to completing the wizard. If you receive a yellow warning, you may proceed with the import.

Due to versioning differences between Microsoft Dynamics CRM Online and Microsoft Dynamics CRM (on-premises), a warning may be received. This warning is expected and will not prevent the import from completing. After you complete the steps in this document, the versioning will be in correct.

  1. Verify That You Are Ready to Import
    In the Ready to Import window, verify that the information is correct, and then click Import.

clip_image011

  1. View the Log File
    After the import is complete, the Import Organization window appears. Click View the log file to view the log file that is created during the import. If the import is successful, click Finish.

clip_image012

Optional updates

In addition to the required updates listed in the confirmation e-mail message that you receive, additional optional updates may be available for the Microsoft Dynamics CRM (on-premises) installation. These can be found by running Windows Update on your Microsoft Dynamics CRM Server.

Source: Technet

Hope it helps!

{USEFUL to KNOW}CRM 2015 exams and courseware links

Below is a list of resources if you are planning on sitting your Microsoft Dynamics 2015 Exams.

As more information becomes available I will update this post.

If you find additional resources  feel free to let me know in the comments.

I have listed each Exam followed by the courses you will need to study to take the Exam.

Microsoft now has a NEW eLearning site http://itacademy.microsoft.com you can access it via your CustomerSource Account or PartnerSource Account.

Dynamics CRM 2015 Exams

Microsoft Dynamics CRM 2015 Installation

Exam MB2-708 Microsoft Dynamics CRM 2015 Installation

  • Course 80679: Installation in Microsoft Dynamics CRM 2015 [eLearning]
  • Course 80664: Deployment in Microsoft Dynamics CRM Online [eLearning]
Microsoft Dynamics CRM 2015 Applications
  • Course 80667: Introduction to Microsoft Dynamics CRM Online [eLearning]
  • Course 80669: Sales and Marketing in Microsoft Dynamics CRM Online [eLearning]
  • Course 80668: Customer Service in Microsoft Dynamics CRM Online [eLearning]
Customization and Configuration in Microsoft Dynamics CRM Online and On Premise
  • Course 80665: Customization and Configuration in Microsoft Dynamics CRM Online and On Premise [eLearning]
Reporting in Microsoft Dynamics CRM Online
  • Course 80675: Reporting in Microsoft Dynamics CRM Online [eLearning]
Social Listening for Microsoft Dynamics CRM Online
  • Course 80676: Social Listening for Microsoft Dynamics CRM Online [eLearning]
Microsoft Dynamics Marketing

Exam MB2-720 Applications in Microsoft Dynamics Marketing [Available on Pearson VUE]

  • Course 80677: Functional Application in Microsoft Dynamics Marketing [eLearning]
  • Course 80678: Technical Deployment and Customization in Microsoft Dynamics Marketing [eLearning]

Dynamics Partner specific learning site Dynamics Learning Portal and link to the corresponding FAQ (including how to get access):

 https://mbspartner.microsoft.com/faq

and the latest and greatest certifications including their codes:

MB2-704: Microsoft Dynamics CRM Application

· MB2-706: Microsoft Dynamics CRM Online Deployment

· MB2-707: Microsoft Dynamics CRM Customization and Configuration

· MB2-708: Microsoft Dynamics CRM Installation

· MB2-720: Functional Application in Microsoft Dynamics Marketing

All of them should be available from Person VUE: https://www.microsoft.com/learning/en-us/exam-list.aspx and here http://www.pearsonvue.com/microsoft/

Hope it helps!

CRM 2015 Deprecated MESSAGES

There is very good documentation available for deprecated client side code, but very less on deprecated server side messages.

Here is a helpful list:

CRM 2015 messages which are deprecated:

Class
Description
AddProductToKitRequest Deprecated. Use the ProductAssociation entity. Contains the data that is needed to add a product to a kit.
AddProductToKitResponse Deprecated. Use the ProductAssociation entity. Contains the response from the AddProductToKitRequest class.
AddSubstituteProductRequest Deprecated. Use the AssociateRequest class. Adds a link between two entity instances in a many-to-many relationship.
AddSubstituteProductResponse Deprecated. Use the AssociateRequest class and its associated response class. Contains the response from the AddSubstituteProductRequest class.
AssociateEntitiesRequest Deprecated. Use the AssociateRequest class. Contains the data that is needed to add a link between two entity instances in a many-to-many relationship.
AssociateEntitiesResponse Deprecated. Use the AssociateRequest class and its associated response class. Contains the response from the AssociateEntitiesRequest class.
CompoundCreateRequest Deprecated. Use the CreateRequest class. Creates a compound entity, such as a sales order (order), invoice, quote, or duplicate rule (duplicate detection rule); and its related entity, such as a sales order detail (order product), invoice detail (invoice product), quote detail (quote product), or duplicate rule condition.
CompoundCreateResponse Deprecated. Use the CreateRequest class and its associated response class.
CompoundUpdateRequest Deprecated. Use the CreateRequest class. Contains the data that is needed to update a compound record, such as a sales order (order), invoice, quote, or duplicate rule (duplicate detection rule); and its related detail record, such as a sales order detail (order product), invoice detail (invoice product), quote detail (quote product), or duplicate rule condition.
CompoundUpdateResponse Deprecated. Use the CreateRequest class and its associated response class. Contains the response from the CompoundUpdateRequest class.
ConvertKitToProductRequest Deprecated. Contains the data that is needed to convert a kit to a product.
ConvertKitToProductResponse Deprecated. Contains the response from the ConvertKitToProductRequest class.
ConvertProductToKitRequest Deprecated. Contains the data that is needed to convert a product to a kit.
ConvertProductToKitResponse Deprecated. Contains the response from the ConvertProductToKitRequest class.
DisassociateEntitiesRequest Deprecated. Use the DisassociateRequest class. Contains the data that is needed to remove a link between two entity instances in a many-to-many relationship.
DisassociateEntitiesResponse Deprecated. Use the DisassociateRequest class and its associated response class. Contains the response from the DisassociateEntitiesRequest class.
ExecuteFetchRequest Deprecated. Use the RetrieveMultipleRequest class.
ExecuteFetchResponse Deprecated. Use the RetrieveMultipleRequest class and its associated response class.
IsBackOfficeInstalledRequest Deprecated. Checks whether Microsoft Dynamics GP 9.0 is installed.
IsBackOfficeInstalledResponse Deprecated.
MakeAvailableToOrganizationReportRequest Deprecated. Use the UpdateRequest class.
MakeAvailableToOrganizationReportResponse Deprecated. Use the UpdateRequest class and its associated response class.
MakeAvailableToOrganizationTemplateRequest Deprecated. Use the UpdateRequest class.
MakeAvailableToOrganizationTemplateResponse Deprecated. Use the UpdateRequest class and its associated response class.
MakeUnavailableToOrganizationReportRequest Deprecated. Use the UpdateRequest class.
MakeUnavailableToOrganizationReportResponse Deprecated. Use the UpdateRequest class and its associated response class.
MakeUnavailableToOrganizationTemplateRequest Deprecated. Use the UpdateRequest class.
MakeUnavailableToOrganizationTemplateResponse Deprecated. Use the UpdateRequest class and its associated response class.
RemoveProductFromKitRequest Deprecated. Use the ProductAssociation entity. Contains the data that is needed to remove a product from a kit.
RemoveProductFromKitResponse Deprecated. Use the ProductAssociation entity. Contains the response from the RemoveProductFromKitRequest.
RemoveSubstituteProductRequest Deprecated. Use the ProductSubstitute entity.
RemoveSubstituteProductResponse Deprecated. Use the ProductSubstitute entity.
RetrieveMembersTeamRequest Deprecated. Use the RetrieveMultipleRequest class.
RetrieveMembersTeamResponse Deprecated. Use the RetrieveMultipleRequest class and its associated response class. Contains the response from the RetrieveMembersTeamRequest class.
RetrieveSubsidiaryTeamsBusinessUnitRequest Deprecated. Use the RetrieveMultipleRequest class.Contains the data needed to retrieve a collection of entity instances based on the specified query criteria.
RetrieveSubsidiaryTeamsBusinessUnitResponse Deprecated. Use the RetrieveMultipleRequest class and its associated response class.
RetrieveSubsidiaryUsersBusinessUnitRequest Deprecated. Use the RetrieveMultipleRequest class.Contains the data needed to retrieve all user information from the child business units of the specified business unit.
RetrieveSubsidiaryUsersBusinessUnitResponse Deprecated. Use the RetrieveMultipleRequest class and its associated response class.Contains the response from the RetrieveSubsidiaryUsersBusinessUnitRequest message.
RetrieveTeamsSystemUserRequest Deprecated. Use the RetrieveMultipleRequest class.Contains the data needed to retrieve the list of teams of which the specified user is a member.
RetrieveTeamsSystemUserResponse Deprecated. Use the RetrieveMultipleRequest class and its associated response class.Contains the response from the RetrieveTeamsSystemUserRequest message.
RetrieveUserSettingsSystemUserRequest Deprecated. Use the RetrieveMultipleRequest class.Contains the data needed to retrieve the user settings for the specified system user (user).
RetrieveUserSettingsSystemUserResponse Deprecated. Use the RetrieveMultipleRequest class and its associated response class.
UpdateUserSettingsSystemUserRequest Deprecated. Use the UpdateRequest class.
UpdateUserSettingsSystemUserResponse Deprecated. Use the UpdateRequest class and its associated response class.

 

Hope it helps!

{STEP BY STEP} YAMMER INTEGRATION WITH CRM 2013

Yammer Integration

Prerequisites:

· Please add below site to Internet Explorer à Option à Security à Trusted Site:

o https://*.crm.dynamics.com

o https://www.yammer.com

clip_image002

· Yammer Enterprise: Integrating Yammer with CRM 2013 requires the enterprise version of Yammer

· The user performing the integration with Yammer requires system administrator privileges in CRM 2013

· The user performing the integration with Yammer requires system administrator privileges for your organization’s Yammer account

Please follow the below steps to setup the Yammer Integration:

  1. Login to Dynamics CRM 2013 and navigate to the Settings area. This is done by clicking on Microsoft Dynamics CRM à Settings
  2. Navigate to the Administration section by clicking on Settings à Administration
  3. Click on the link titled Yammer Configuration to begin the wizard steps to enable the integration. Please note that you will not see this link if you do not have System Administrator privileges in Dynamics CRM
    clip_image004
  1. A Yammer Disclaimer page will display, asking you to agree to the disclaimer. Click on Continue to proceed
    clip_image006
  2. A configuration page will appear, with steps listed on how to connect your Yammer environment to Dynamics CRM 2013. Notice that only the first step, Authorize Microsoft Dynamics CRM Online to connect to Yammer will be enabled at this point. Click on this link to perform the authorization step
    clip_image008
  3. A dialog will display requesting you enter your Yammer credentials for the authorization. Enter these credentials and click the Log In button
    clip_image010
  4. Another dialog will be displayed that asks you to confirm the connection between Yammer and Dynamics CRM 2013. Click on the Allow button to allow this connection
  5. At this point the integration is performed and complete, but the process takes you back to the Yammer configuration page, and you will notice that steps 2 and 3 are now enabled. These are optional steps that you can configure for specific items/behavior with the Yammer integration
    clip_image012
  6. [Optional] – Select a Yammer Group ID to control conversation access. This optional step allows you to configure whether all the conversations initiated from Dynamics CRM should be placed in a specific group in Yammer. If you don’t specify a group, the All Company Group is used for this
  7. [Optional] Set the level of security for Yammer activity stream messages. This optional step allows you to configure whether the conversations in Dynamics CRM are visible to everyone (Public). Selecting Private for this setting will require users in Dynamics CRM to follow the appropriate record in order to see the Yammer conversations
  8. Once Yammer has been connected to Dynamics CRM 2013, you need to specify which entities in CRM you wish to enable for use with Yammer. This can be done by navigating to the Post Configuration section in Settings (click Settings àPost Configurations).
  9. In order to activate an entity for use with Yammer, select the desired entity and click the Activate selection in the top navigation bar. Deactivating an entity for use with Yammer is done by clicking the Deactivate selection in the top navigation bar. Please make sure you Publish All Customizations to verify that the changes you made take effect in Dynamics CRM.

clip_image014

  1. To enable record types and rules to automatically trigger a Yammer post, click or tap Edit message rules.

clip_image016

  1. To trigger Yammer posts, enable or disable rules.

clip_image018

  1. Yammer posts are now part of Microsoft Dynamics CRM Online.

clip_image020

  1. Great, you are done!

Hope it helps!