Send Parameter From NavBarItem

Sometime we need to send parameter to our custom page from NavBarItem, but as NavBarItem does not support JavaScript property so we can pass parameter to our custom page using openIsvWin function (Unsupported) Code to create NavBarItem <NavBarItem Icon=”/_imgs/ico_18_debug.gif” PassParams=”1″ URL=”http://MyPage.aspx” Id=”MyItem”>       <Titles>          <Title LCID=”1033″ Text=”ISV Default” />      </Titles>  </NavBarItem> Paste this code on formload event navBarItem=document.getElementById(‘MyItem‘); if(navBarItem!=null)… Read more »

Add ISV Button on Entity Grid

Some of you must have faced requirement to add ISV button on Specific entity grid it can be OOB entity or custom entity. We can do this like below:  <Entity> <Grid> <MenuBar> <Buttons> <Button Icon=”/_imgs/ico_18_debug.gif” Url=”http://www.microsoft.com” WinParams=”” WinMode=”2″> <Titles> <Title LCID=”1033″ Text=”Test” /> </Titles> <ToolTips> <ToolTip LCID=”1033″ Text=”Info on Test” /> </ToolTips> </Button> </Buttons> </MenuBar> </Grid> </Entity> Hope it will… Read more »

Tooltip For MS CRM Fields

The easiest way to provide tooltip for crm fields are to use “title” . for example to provide tooltip for accountnumber in account entity just paste following code on formload of account entity crmForm.all.accountnumber.title=”account number used in correspondence about the account”; you can also provide tooltip for lables. Done, But Remember this unsupported

Get Production Information Based on ProductID

 Most of the time i found this question on microsoft forum to get product information based on productid. I have develped this code for the same requirement. You can just paste this code on the onchange event of the product lookup. You just need to chage field names accordingly. __________________________________________________ GetProductInformation(); function GetProductInformation() { var resultXml; var errorCount; var msg;… Read more »

Microsoft Dynamics CRM Resource Center

A Great Place For MS CRM guys CRM Resource Center The Resource Center brings together information that will help you get the most from your use of Microsoft Dynamics CRM. The Resource Center provides a central location where you can find: >Information to help you get started. >Tips to make you more productive. >In-depth descriptions of product features and recommendations… Read more »

Links for MS CRM 4.0

Developer Ramp up Kit for Microsoft Dynamics CRM 4.0 http://msdn.microsoft.com/en-us/library/dd393296.aspx Microsoft Dynamics CRM Demonstration Tools http://www.microsoft.com/downloads/details.aspx?familyid=634508DC-1762-40D6-B745-B3BDE05D7012&displaylang=en Business Productivity Workflow Tools Accelerator provides additional workflow step actions for customers to configure their workflow processes. Each custom action provides additional capabilities around string handling, mathematical functions and HTML hyperlink creation. Once this accelerator is installed workflow designers within Microsoft Dynamics CRM have… Read more »

Microsoft Dynamics CRM Server Options

The type of Microsoft Dynamics CRM server your organization deploys and uses depends on the business requirements and available information technology infrastructure. There are three choices: on premise, Service Provider Hosted, and Microsoft Dynamics CRM Live. 1. On Premise On Premise is software the organization licenses, installs, and maintains. The organization must install the Microsoft Dynamics CRM server software on… Read more »

MS CRM 4.0 Versions

There are three editions of MS CRM 4.0 Microsoft Dynamics CRM 4.0 Workgroup Server -> We can add maximum of five user if we are using workgroup server with single organization that can be installed on a single server. Microsoft Dynamics CRM 4.0 Professional Server -> It allows unlimited users with the ability to install  MS CRM Web server to be installed on multiple computers but with… Read more »