Topic: ‘Rollup’

 

Dynamics CRM: Want to know more about synchronizing with Outlook?

Posted March 11th, 2010 by Kristen O'Connor / No Comments

Click here to view an article illustrating the basics of Outlook synchronization. Here’s a snippet from the Microsoft Download Center regarding the article:

Both the online and offline versions of the CRM Outlook Client support synchronizing CRM contacts and CRM activities to Outlook folders, or Outlook synchronization. Outlook synchronization enables Outlook users to view Dynamics CRM information, including contacts, tasks, phone calls, letters, faxes, appointments, and e-mails, within the Outlook interface.”

Please note: you need to have Update Rollup 7 or newer in order (or Microsoft Dynamics CRM Online November 2009 Service Update or newer) for this to be applicable to you.

Not on a recent rollup? Click here to download Update Rollup 9.

Continue Reading

 

Update Rollup 9 for Microsoft Dynamics CRM Now Available for Download

Posted February 15th, 2010 by Kristen O'Connor / No Comments

Click here to download the latest Rollup from the Microsoft Download Center.

Continue Reading

 

Update Rollup 8 Available for Dynamics CRM 4.0

Posted December 17th, 2009 by Kristen O'Connor / No Comments

Microsoft has just released Update Rollup 8 for download. Click here to download it from the Microsoft Download Center. If you want to read the respective knowledgebase article, click here to go to the Microsoft Support article.

Continue Reading

 

Microsoft has released Update Rollup 7 for Dynamics CRM 4.0

Posted October 23rd, 2009 by Kristen O'Connor / No Comments

Today Microsoft has released Update Rollup 7 for Dynamics CRM 4.0. It is now available for download at the Microsoft Download site here. There is also an associate KB article, that include additional information related to the release. You can view it here.

Continue Reading

 

Update Rollup 6 for Dynamics CRM 4.0 Now Available for Download

Posted September 3rd, 2009 by Kristen O'Connor / No Comments

Microsoft has released Update 6 Rollup for download. You can download it here at the Microsoft Download Center.

For additional information regarding the release, you can view the associated KB article here.

Continue Reading

 

Microsoft Dynamics CRM Form Performance for Customized Entities

Posted July 23rd, 2009 by Kristen O'Connor / No Comments

The Microsoft Dynamics CRM Team Blog has posted an article regarding a form load performance enhancement that is available if you download Rollup 5. Below is an excerpt, and you can read more about it on their blog post in the link below:

“Some customers extensively customize their CRM installation so that CRM is optimized for their unique business scenarios. When you add a lot of fields on an entity form you might notice it’s load time increases. The performance is not hampered on “out-of-the-box” Microsoft Dynamics CRM configurations. For the majority of users the default settings work fine. But for heavily customized installations, performance can become an issue….”

http://blogs.msdn.com/crm/archive/2009/07/22/microsoft-dynamics-crm-customized-entity-form-performance.aspx

Also, Rollup 5 is available in our previous IBIS CRM blogpost if you would like to download it.

Continue Reading

 

Download Rollup 5 for Microsoft Dynamics CRM 4.0

Posted July 16th, 2009 by Kristen O'Connor / No Comments

Download Rollup 5 for CRM 4.0 on the Microsoft Help & Support site at the following link:

http://support.microsoft.com/kb/970141

The article contains a list of the Hotfixes that are contained in the Rollup, as well as a list of the Hotfixes that you need enable or configure manually.

Continue Reading

 

Send Email From A Custom App in AX

Posted July 8th, 2009 by Joe DeRoche / No Comments

Say for instance a customer is writing custom code that is performing some function in DAX. After that process is done, they might want to send an email to notify either internal employees or external contacts. They can use this code to send an email. I know that workflow will notify internal employees, but if they don’t want to go through the setup and configuration of setting up workflow, they could use this code. One application I can think of would be AR cash receipts journal posting. When the journal is posted, custom code could be written to send the customer an email notifying them that their payment(s) have been received and applied. Just like the email you get when you pay your credit card online.

If an email needs to be send from a custom application, it can be done with the following code:

SysMailer mail;
;

mail = new SysMailer();
mail.SMTPRelayServer(”yourexchange.server”);
mail.fromAddress(”fromaddress@address.com”);
mail.tos().appendAddress(”toaddress@address.com”);

// Build the Message
mail.htmlBody(strfmt(”This is a test”));
mail.subject(strfmt(”Testing AX Email”));
mail.sendMail();

Continue Reading

 

Update Rollup 4 for Microsoft Dynamics CRM 4.0

Posted May 12th, 2009 by Kristen O'Connor / No Comments

Update Rollup 4 for Microsoft Dynamics CRM 4.0 is available for download.

Follow the link below to download the Rollup at the Microsoft Download Center:

http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=0ddf8e83-5d9c-4fe7-9ae6-f2713a024071#tm

Below is a link to the related support article (KB Article ID: 968176). It includes additional information, including the issues that are resolved in the Rollup, Hotfixes that may require a manual configuration, and issues that weren’t previously documented in a KB article:

http://support.microsoft.com/kb/968176

Continue Reading

 

Update Rollup 3 is Now Available for Download on Microsoft Download Center

Posted March 16th, 2009 by Kristen O'Connor / No Comments

Update Rollup 3 for MS CRM 4.0 is now available for download at the Microsoft Download Center.

Click the following link to read some more information and download the Rollup:

http://www.microsoft.com/downloads/details.aspx?FamilyID=05453fa4-9551-4a88-9852-634a9ad0e140&displayLang=en

Continue Reading