How to check GUIDs are equal in JavaScript
Hi,In CRM, at times we get requirement to check two GUID's are equal or not.Here is the JavaScript code to check two GUID's are equal.function GuidsAreEqual(guid1, guid2) { var isEqual = false;...
View ArticleGet Option Set String from CRM 2011/2013/2015 in C#
Hi,Most of the times, CRM developer in CRM goes to check Option Set value only finds out the value as integer.At times, we get a requirement to get string value associated with the integer. For doing...
View ArticleGet Difference between two dates in JavaScript
Hi,Dealing with dates will always dicey. Most of the times when we calculate difference between two dates we don't consider a Daylight saving change.In this case, the date on which day light saving...
View ArticleType-Cast oData Service Datetime field in CRM 2011/2013/2015
Hi,When you retrieve CRM date time values using oData Service from CRM, you will get the date in different format as below which we cannot set to Date field. Here is the way to type cast it. var vDate...
View ArticleRetrieve Option Set text from CRM 2011/2013/2015 in JavaScript
Hi, Today I got a requirement to write JavaScript code to get text of the option set value and perform some business validations. Its really pretty simple to get the option set text from the particular...
View ArticleLead and Opportunity in Dynamics CRM 2011/2013/2015
Hi,Here are some basic things related to Lead and Opportunity in CRM.LeadsLeads are records that you have not yet qualified as desirable prospects for your organization. For example, if someone visits...
View Article1:N and N:1 relationships in Dynamics CRM
There are the types of relationships that we will be creating most frequently in Dynamics CRM. 1:N - The relationship between Contact and Asset is a typical 1:N relationship. Each contact may have...
View ArticleCopy/ Create Views in Dynamics CRM 2011/2013/2015
Hi,Most of the times we get the requirement to create views as same as the existing views and some of the filter conditions and columns.Creating views is always tedious job and time-consuming process....
View ArticleHow to check Array contains an Item in JavaScript?
Hi, Here is the JavaScript code to check Array contains an item in JavaScript. var vArrValues = ["1", "2", "3", "4"];// Check Array Contains ValuesArray.prototype.contains = function (element) {...
View ArticleDouble Versus Decimal in C#
Double is useful for scientific computations (such as computing spatial coordinates). Decimal is useful for financial computations and values that are “man-made” rather than the result of real-world...
View ArticleSecurity Roles Assigned to User in CRM
Hi,Today I have been asked by one of our clients is there any way to find the security privileges that are assigned to some users in CRM Organization.Yes, we can see. Dynamics CRM out of the box comes...
View ArticleHow to check the database size in SQL Server?
Hi, Today, I got know the size of the database. But unfortunately I could not get the correct database size on the file system until I take the back up. Select the database, right click and click on...
View ArticleHow to get the records count per table from SQL Server Database?
Hi,I have started working on Data Migration work. So, started knowing more on SQL Server, Tables, Database Sizes and etc..Today, I found the way to know the Records count per table and size of each...
View ArticleThe column heading cannot be empty in CRM 2013/2015
Hi,Today I received the below error when I was importing some records to CRM using OOB import."The column heading cannot be empty".Here are the steps to resolve.1) Open the CSV file in notepad.2) Check...
View ArticleRetrieve Product Properties using JavaScript in CRM 2015
Hi,Today we got a requirement to show Product Properties related to Opportunity Product in a HTML Webresource.Here is the JavaScript code to read Product Properties. function getProperties() {...
View ArticleActivity Pointer and Activity Type Code in CRM 2011/2013/2015
CRM has lots of different activities1) Phone Call2) Task3) Letter4) Email5) Appointment6) Fax7) Custom Activities In CRM, all the activities are saved in ActivityPointer table. This way, we can...
View ArticleIsRegularActivity in CRM 2011/2013/2015
There are lots of activity types which don't look like regular activities, such as Case ResolutionBulk OperationOpportunity CloseQuote Close CRM creates activities when a Case/Opportunity/Quote is...
View ArticleThis workflow job was canceled because the workflow that started it included...
Hi, In CRM, Workflow is one of the amazing things. If our workflow calls itself (on the same entity) more than 7 times in an hour, the 8th instance will fail with the below error. "The error is...
View ArticleAllow only numbers in a text box
Hi,In most of web applications, we get requirement to allow only number in a textbox.Here is the JavaScript for it, just call this method onKeyPressv Event.<HTML> <HEAD>...
View ArticleArabic Language Pack For Microsoft Dynamics CRM 2015
Hi,I am working on Saudi Country CRM project. As their language is Arabic, they wanted to see CRM in Arabic language. I thought, it would be damn easy to get the language pack and install it. But...
View Article