Monday, 18 May 2009

Update Rollup 4 for Microsoft Dynamics CRM 4.0

Sunday, 10 May 2009

Improving The Default Views In Microsoft CRM 3.0 & 4.0 – Part II

Changing The Default Views In CRM 3.0 & CRM 4.0

Lead Assignment, Territory Management and follow-up

Adding Activities to the Contact form in an iFrame

Calculate Opportunity Age with Jscript

from here: http://blogs.msdn.com/dynamicscrmonline/archive/2008/12/08/calculate-opportunity-age-with-jscript.aspx


Ever wonder how old that opportunity it is. Here's some script that will display a the age of an opportunity when you open it.

Make sure you put the createdon attribute on the form somewhere( admin tab seems the place).

Put the script in the OnLoad

var createdon= crmForm.all.createdon.DataValue;

var today = new Date();

//Set the two dates

today=new Date();

//Set 1 day in milliseconds

var one_day=1000*60*60*24;

//Calculate difference btw the two dates, and convert to days

var Age = Math.ceil((today.getTime()-createdon.getTime())/(one_day));

// Display Age

alert("Opportunity Age in Days : " + Age);

Calculate total activity duration for an Account, Contact or Opportunity

Dynamic Pick List from a custom entity in Dynamics CRM Online

Convenient Reports In The Navigation Bar

How To Add The Contact Phone # To The Form Title Bar

Open new Modal Window from onLoad

Building a Self-Contained Virtual CRM Development Server

CRM 4.0 IFrame: Show Advanced Find Result View

Sharing Records Automatically

How To Add Zip Code Lookup Functionality

Customize Microsoft CRM 4.0 Tool Bar by Adding a Custom Button