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
Author: Cornel Croitoriu
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 🙂
Using the “onmousemove” event
The “onmousemove” event can help you make sure that your script runs as well as your cursor on the form 🙂 I’ll give you a brief example of its usage. We want to trap the cursor’s coordinates as it moves in a certain entity’s form in CRM. Add the following code on the OnLoad() event… Continue reading Using the “onmousemove” event
Using the “onkeyup” event
Let’s add some interactivity to our customizations 🙂 For example, we have 4 fields: Amount (Schema Name amount, Type float(2)), Discount(Schema Name discount, Type float(2)), Tax (Schema Name tax, Type float(2)) and Total Amount (Schema Name totalamount, Type float(2)) and wewant to calculate in real time the Total Amount based on the Amount, Discount and… Continue reading Using the “onkeyup” event
How to read / write files using JavaScript
To read and write files from JavaScript, we will use an ActiveX Object from the Scripting.FileSystemObject library, which knows how to handle files. The second parameter of the OpenTextFile function represents what we want the object to do with the file (read = 1, write = 2, append = 8). And here are the scripts:… Continue reading How to read / write files using JavaScript
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)
Events in JavaScript
Events are the beating heart of any JavaScript application. Without events there are no scripts. Take a look at any web page with JavaScript in it: in nearly all cases there will be an event that triggers the script. The reason is very simple. JavaScript is meant to add interactivity to your pages: the user… Continue reading Events in JavaScript
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)