Posts

Showing posts from 2015

Java Script to get Business Unit of currently logged in user

This post is to show how you can get the Business Unit of currently logged in User in Dynamics CRM Step 1: Upload Jquery.min.js file as JScript web resource on the entity form. Step 2: Upload Json2.js file as JScript web resource on the entity form.

Java Script to get Teams of currently logged in user

This post is to show how you can get the Teams of currently logged in User in Dynamics CRM Step 1: Upload Jquery.min.js file as JScript web resource on the entity form. Step 2: Upload Json2.js file as JScript web resource on the entity form.

Creating a Grid dynamically using HTML in Dynamics CRM to show, update and delete associated records in an entity

This post is to show how you can create a dynamic grid in MS Dynamics CRM using HTML web resource on an entity's form to show, delete and update associated records of another entity using Jquery+Odata. Step 1: Upload Jquery.min.js file as JScript web resource on the entity form. Step 2: Upload Json2.js file as JScript web resource on the entity form.

Custom workflow to send e-mail after some specific working days provided at account creation

Image
This post is to send an email on account creation to the account holder after some specific days(in this code: 7). The email will be sent after 7 working days as described in the organization's Calendar and presuming every Saturday & Sunday as holiday. Step 1: Create new project in  Visual Studio and  select 'Class Library'. Then copy the code as below and save. Build the solution to get library file(*.dll) using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Sdk.Query; using Microsoft.Xrm.Sdk.Workflow;