How to Create Development Environment for Dynamics CRM 4.0?? What are the software and Hardware Requirement for Dynamics CRM 4.0?? How to start Dynamics CRM 4.0 Development ?? Where we need to code in Dynamics CRM 4.0 Development ?? What language we can use in Dynamics CRM 4.0 Development ?? What are the libraries available for Dynamics CRM 4.0 Development??… Read more »
We know that we can create Custom ISV button on entity toolbar, but if you want you can also create a Hyperlink button on entity toolbar using DOM without using ISV config file,also can call your JS function on your on form onload on click of that.Before starting this let’s first check structure of crmMenuBar ( In my example I am creating… Read more »
Today morning I came to know about a new Add on called ePicture for Microsoft CRM, which can be used to updload picture to any crm entity. Check viedo here http://www.youtube.com/watch?v=PQZhGuZMMiU&goback=.gde_21231_member_26191366
Just watch Dynamics CRM 2011 Demo http://65.55.21.250/showcase/en/US/details/f9625bd7-7009-4bed-ab7a-c3fbb548d6ac?goback=.gde_21231_member_25155712
I just found this morning that, I am now the top answerer on Microsoft CRM forum and Microsoft CRM Development forum, so I decided to share it with you all 🙂
Today I found one question in MS CRM Development Forum to format Left navigation item, we can easily do this with JS. Just use below code on form load. I have tested this in contact form to form “More Addresses” var Item=document.getElementById(‘navAddresses’); if(Item!=null){ Item.style.fontWeight = ‘bold’; Item.style.color = ‘#ff0000’;} and result will be as below
There is an increase of 27% in SAP CRM, 36% in Dynamics CRM and decrease of 18% in Salesforce jobs around the world in the month of June. Source : http://jobgraphs.com/crm-softwares-demand-comparison/
I am regular visitor of ms CRM forums, I found this question many times, to hide MS CRM gird button. Which cannot be implemented through supported customization. We can implement this through unsupported customization. For example we want to hide assign button on opportunity grid toolbar. So we can do this by writing script to hide this button on Homepage.aspx… Read more »
Sometime we need to get all activities related to specific account or contact. We can easily do this by Querying activitypointer entity based on regardingobjectID. you can use below function to get all activity related to account. You just need to pass Crm service object and Accountid to this function Public BusinessEntityCollection FetchActivityList(CrmService _Service,Guid AccountID) { QueryExpression _Query =… Read more »
Today I watched a great video in channel9, which details the new advanced Developer Extension features in new SDK released. The new SDK includes a code generator utility using which we don’t need to write number of lines of codes. You just need to run this utility and passing some parameters for example Authentication Type, server etc. This utility will… Read more »