Microsoft Knowledge Base Email Alertz

(821669) - This article discusses how to refresh the Microsoft Business Solutions CRM form data when the data is updated by a third-party integrated application.

Search KbAlertz

Advanced Search

Receive Microsoft Knowledge Base articles by E-Mail?

Every night we scan the Microsoft Knowledge Base. If technologies you're interested in are updated, we'll send you an e-mail. You only get one e-mail a day, and only when new articles are added.

Click here to create a
FREE account
Already have an account?
[Click here to Login]











Microsoft Knowledge Base Article

This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks

Article ID: 821669 - Last Review: May 23, 2007 - Revision: 3.11

How to refresh Microsoft Business Solutions CRM form data from third-party applications

SUMMARY

This article describes how to refresh a Microsoft Business Solutions CRM form from a third-party Web application.

MORE INFORMATION

The ISV.config XML file can be used to add toolbar buttons, navigation pane tabs, and menu items to Microsoft CRM forms. When these controls are clicked, a third-party form can be rendered in the user’s browser as defined by the URL argument. When the following JScript is added to the third-party form, the Microsoft CRM form that was rendered when the third-party form was called is refreshed when the third-party form is closed.
  <html>
     <head>
         <script language="javascript">
             function window.onunload()
             {
                 window.opener.location.reload();
                 window.close();
             }
         </script>
     </head>
     <body>
     </body>
 </html> 

REFERENCES

For more information about the ISV.config XML file, visit the following Web site:
http://msdn2.microsoft.com/en-us/library/ms939758.aspx (http://msdn2.microsoft.com/en-us/library/ms939758.aspx)
For more information about JScript, visit the following Web site:
http://msdn2.microsoft.com/en-us/library/72bd815a(vs.71).aspx (http://msdn2.microsoft.com/en-us/library/72bd815a(vs.71).aspx)

APPLIES TO
  • Microsoft CRM Software Development Kit, when used with:
    • Microsoft CRM 1.2
    • Microsoft Business Solutions CRM 1.0
  • Microsoft Business Solutions CRM 1.0
  • Microsoft CRM 1.2
Keywords: 
kbmbsjscript kbmbsmigrate kbinfo KB821669
       

Community Feedback System

Very often, it takes hours to solve a problem. Very often, you've looked high and low, and have tried a lot of solutions. When you finally found it, chances are, it was because someone else helped you. Here's your chance to give back. Use our community feedback tool to let others know what worked for you and what didn't.

Please also understand that the community feedback system is not warranted to be correct, it's simply a system that we've built to let people try and help each other. If something in a feedback response doesn't make sense to you, or you're not comfortable making changes that the feedback talks about (like registry edits), please consult a professional.

Thank you for using kbAlertz.com Feedback System.

-- Scott Cate