Category Archives: Dynamics CRM

Phone Formating in SSRS report

Many a times there had been requirements to format the CRM phone number in the SSRS report in following format. We tried to achieve this by creating 12 text boxes and in each textbox we applied the below logic in the expression. = IIF(Fields!telephone1.Value.toString().Length>=1, GetChar(Fields!telephone1.Value.toString(),1), “”) It works successfully when the length of phone number is equal to… Read More »

Outlook Authentication issue fixed in Rollup 8

We have noticed this with the Online and IFD environment, that, if you are using “CRM 2011 Outlook Client” and try to open any web resource like html file and Silverlight application (.xap file) or any entity record using window.Open() or Response.Redirect() then you get prompt for user name and password. Window.Open() methods opens the CRM record in the… Read More »

R8 aka Q2 2012 Service Update Plans revised

The Q2 Service Update plans have been revised. As per the road map made available earlier this year, Q2 Service update was all about “CRM Anywhere“. It planned to include Cross Browser availability and Mobility that would let Dynamics CRM be accessible “anywhere” be it any browser or any device. However in the recent Press… Read More »

IFD Configuration

While setting up IFD, we had issues in enabling the claims for CRM 2011. After trying to enable claims for CRM 2011 through Microsoft Dynamics CRM 2011 Deployment Manager when we trid to browse the URL: https://XYZ.com/FederationMetadata/2007-06/FederationMetadata.xml we were getting one of the following errors: – HTTP 503 Service Unavailable error. – HTTP 404 Not… Read More »

N:N association

When we have to associate the records we normally use AssociateRequest but while associating campaign with campaign related items such as Campaign, Marketing List, Product, or Salesliterature it doesn’t work. For achieving this we have special Message made for Campaign called AddItemCampaignRequest.Below we have provided the code that will associate the Campaign with Campaign Items.… Read More »