Quantcast
Channel: Dynamics 365 Customer Engagement
Browsing all 286 articles
Browse latest View live

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 Article


Get 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 Article


Get 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 Article

Type-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 Article

Retrieve 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 Article


Lead 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 Article

1: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 Article

Image may be NSFW.
Clik here to view.

Copy/ 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 Article


How 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 Article


Double 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 Article

Image may be NSFW.
Clik here to view.

Security 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 Article

Image may be NSFW.
Clik here to view.

How 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 Article

Image may be NSFW.
Clik here to view.

How 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 Article


Image may be NSFW.
Clik here to view.

The 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 Article

Retrieve 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 Article


Activity 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 Article

Image may be NSFW.
Clik here to view.

IsRegularActivity 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 Article


Image may be NSFW.
Clik here to view.

This 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 Article

Allow 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 Article

Image may be NSFW.
Clik here to view.

Arabic 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
Browsing all 286 articles
Browse latest View live