When starting to work with CRM, one of the first things you learn is how to put some script on the onChange event. It’s easy to do this and it really works. Let’s say you want to fire that script at the first moment your page is loaded.In CRM 3.0 you could do that writing… Continue reading OnChange Event
Category: CRM 3.0
An easier way to hide or show a certain field in CRM
Simply use the function below: // Shows or hides a certain fieldfunction HandleField(field, display) { document.getElementById(field+”_c”).style.display = display; document.getElementById(field+”_d”).style.display = display;}/* Calling */HandleField(“fieldid”, “inline”); // show inlineHandleField(“fieldid”, “block”); // show blockHandleField(“fieldid”, “none”); // hide
Back…
Well, like I said, I’m back in business and I promise that asap I’ll post a few useful ideas. I’d like to think that 2008 will be the year of CRM in Romania and not only, as MS Dynamics CRM Titan will replace, step by step, CRM 3.0. Stay tuned… P.S. Thanks Microsoft for the… Continue reading Back…
Generating tooltips on certain events
A tooltip is a small box of explanatory text (usually on yellow background) that appears when the mouse pointer is held over a button or other interface element.In Microsoft Dynamics CRM we can define constraints (masks) on certain fields. It is desired that the user is well informed about the textβs format, in real time,… Continue reading Generating tooltips on certain events
How to retrieve the ID of a parent entity
I saw this topic several times in the Microsoft CRM Developer Community and I decided to share this line of code with you π Let’s take a simple example. We want to retrieve the Quote’s ID (guid) when we open the Quote Details form (pressing the New Quote Product on the Quote entity). All we… Continue reading How to retrieve the ID of a parent entity
Microsoft Dynamics CRM Exam β MB2-423
Done… Complete… 95% passing score… Thanks for the support everyone, especially EVO Software and Thomas Davin π
Microsoft Dynamics CRM Exam
This week, on the 21st of November, I’ll sustain my first CRM Exam, CRM-30-423 – Microsoft Business Solutions – CRM 3.0 Applications. Wish me luck all π
Coloring Activities (Tutorial)
Activities are central when working with sales in Microsoft CRM. Whether you need to contact a customer, send a quote, or run a campaign, it is all about activities in Microsoft Dynamics CRM. Downloading and reading this tutorial you will learn, step by step, a simple interface method of coloring activities in Microsoft Dynamics CRM… Continue reading Coloring Activities (Tutorial)
About Microsoft Dynamics CRM (brief description)
Microsoft Dynamics CRM is a Customer Relationship Management software package developed by Microsoft. It is a part of the Microsoft Dynamics family of business tools. The current version of Dynamics is 3.0, released on December, 2005. The most notable updates over the version 1.2 (version 2 was skipped entirely) are the ease of creating customizations… Continue reading About Microsoft Dynamics CRM (brief description)