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



The information in this article 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

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: For more information about JScript, visit the following Web site:

Modification Type:MinorLast Reviewed:9/7/2006
Keywords:kbMBSjscript kbMBSMigrate kbinfo KB821669 kbAudDeveloper