Wednesday, August 22, 2007

CRM 3.0 Errors

Normally CRM 3.0 will be displaying "An Error has occured.Contact your system administrator" as the error message. A developer will not be happy with this error message as the exact cause of the error is not visisble to him.

There is a method to get the real deal displayed on the screen. But this should be done only in the developemnt enviornment as the users will not be happy with the exact error messgae they will be seeing.

To see the error message you need to make the developererorr variable in the web.config to On. you can find the web,cofig under the CRMweb folder.

Tuesday, August 21, 2007

Reports in CRM 3.0

When viwing reports in CRM users get so many issues. 2 common issues are
1. SQL reporting service has not been configured properly.
2. CRM web site is running under asp.net 2.0 version.

About CRM web site running under asp.net 2.0 is ok for the web forms, but for the SRS it has to be running under asp.net 1.1 version.

Microsoft Dynamics CRM 3.0 Virtual PC Demonstration - August 2007 Release

Microsoft has released a new virtual PC image of CRM. This is a 2.2 GB zip file. when extracted it will be around 7 GB.

The link to download this image is given below.

http://www.microsoft.com/downloads/details.aspx?FamilyID=57394bc8-5ecc-422e-a066-34189f48f8c8&displaylang=en

This image will get expiered on 11/30/2008.

Monday, August 20, 2007

Built in modifed and created on fields in CRM3.0

These field values gets updated automatically when we do a change to a record. but did you know when you display these fields on a form eventhough that these fields are date and time fields you can only is date part of the field.

Because of this issue i had to create a new field for modified on because my customers wanted to see the modified tme as well.

javascript Onchange event in CRM 3.0

today we had to change the value of a filed(Disabled) in a crm form when another field value was getting changed. we were able to do this firslty and when saved, the data got saved perfectly.

we were happy till we saw that when updated the disbaled field value was not changed eventhough we have actually changed the value by modifying the affected field.

after sone time we thought that since we are using javascripts the value is not getting passed to the server, because the server thinks that the value has not been changed.

So we used the followinf statement to check whether the value will be chnaged and what do you know, it worked perfectly.

crmForm.all.[fieldName].forceSubmit = true;

As i got to know this is very useful when it comes to disbaled fields. whether the field value has got chaned or not when saving the value of this field will be sent to the server.

Friday, August 10, 2007

Custom Look ups in CRM

I have put a post to this blog regarding the custom lookup. but there is a slight porblem in that.
if you create a new contact using the custom lookup the related filed will not be populated with the newly created contact.
The contact will be created and will be stored in the contact entity.
i am trying to find a workaround to this and will post it once i find it.

Sunday, August 5, 2007

Accessing Parent form information in a child form in CRM 3.0

In one fo my recent projects i needed to access parent from field to check a certain value in an child form. I Knew this is possible using client side java script and did a search in the web to find any help. I found a prefect link which states about this. It's from stunnware. You also can use this link when you want to access parent form. the link is given below.

http://www.stunnware.com/crm2/topic.aspx?id=JS6

also for more javascript functions with CRM check the above link..

Thursday, August 2, 2007

Custom Lookups in CRM 3.0

We need to create custom look ups in CRM 3.0 to make life easier for the people who enters the information.
imagine when you create a case first you have to select the company which the case reported and then select the contacts from that company who reported that case. it would be very easy for the data entry person when he/she selects the account only the contacts listed for that account wil be displayed. by default CRM doesn't support this. but you can use javascripts to do this.

You can use the following fecth statement for the onchange event of the account look up.

crmForm.all.new_reportedid.lookupbrowse = 1; // This turn on filter crmForm.all.new_reportedid.additionalparams = "fetchXml= "; crmForm.all.new_reportedid.additionalparams += "&selObjects=2&findValue=0";


crmForm.all.sa_customerid.DataValue[0].id = This should be the field name of the account id in your form.

selObjects=2 - referes to the object type code of the entity. Normally contact entity has the object type as 2.

crmForm.all.new_reportedid = This should be the field name of the contact look up.

selObjects variable specifies the object type code of the entity.

This is something that i had to do in one my projects using CRM 3.0. i was greately helped by the artical posted by Ronal Lemman. you can find his article at
http://ronaldlemmen.blogspot.com/2006/12/filter-data-in-crm-lookup-field.html

Microsoft CRM 3.0

Most of things i do at my work are related to this product. although most of the things can be done by an average person with some understanding there are also something s that needs to be done by someone with coding expertise. thats where we come in to play.

There are so many things that can be done using CRM 3.0. Most important thing is to keep all the customer related information under one product and handle their information properly. microsoft crm does this perfectly. this product gives the buyer full ownership of it, so they can do whatever they want to the product and there are many more features also.

you can find more information regarding this at
http://www.microsoft.com/dynamics/crm/default.mspx

Welcome

Thought of starting to blog regarding the things i do. I always wanted to do this. But have been caught up with work and some other stuff, hence never had a chance to start blogging. Better late then never. So i start bloggin now.

Cheers....

Retrieving Calendar of a Bookable Resource in Dynamics

There are occasions where we need to retrieve working days and working times of a resource in Dynamics grammatically. This is quite possible...