Category Archives: Web Resources

Steps to Enable Script Debugging for Dynamics CRM Outlook Client in Visual Studio

We can debug the Script used in Outlook using Visual Studio. For this, we just need to change some settings in the “Advance setting” section of Internet Explorer. In this blog, we will show how to enable Script Debugging using the Visual studio. For this, we have developed the sample code. So, here we have added… Read More: Steps to Enable Script Debugging for Dynamics CRM Outlook Client… »

Access Web Resources from Dynamics CRM tablet and mobile apps

The re-imagined Tablet and mobile client for Dynamics CRM had been a great step forward in BYOD philosophy of Microsoft. However these clients were locked for any kind of customizations directly on the client app. With the latest updates in Dynamics CRM 2016, it is now possible to choose the layout/sections that you would like… Read More: Access Web Resources from Dynamics CRM tablet and mobile apps »

Make Cross Domain Web Service Request through Client Side Scripting in Dynamics CRM

To perform CRUD operations with CRM data at client side we use ODATA and SOAP services of Microsoft Dynamics CRM. We use XMLHttpRequest to send request to these services to get the response. Microsoft Dynamics CRM provides below WCF services that we used to manipulate CRM data, Organization Data Service – Protocol:  OData (REST) http://<server>/XRMServices/2011/OrganizationData.svc/… Read More: Make Cross Domain Web Service Request through Client Side Scripting… »

Re-imagined Phone & Tablet Client for Dynamics CRM Online

Introduction One of the USP of Microsoft Dynamics CRM that differentiates it from other CRM applications available in the market is BYOD – CRM Anywhere. Dynamics CRM as of today supports the following client Web Client ( All major browsers IE/Edge, Chrome, FireFox, Safari) Outlook Client – Seamless integration with Microsoft Outlook so that you… Read More: Re-imagined Phone & Tablet Client for Dynamics CRM Online »

System Customizer role does not allow modifying Web Resources in Dynamics CRM 2013

Introduction: Recently, we came across a situation where we were only assigned System Customizer Role in a client environment to give dev access to the organization customizations. It was our understanding all along that System Customizer role is provided to developers for customizing the system and System Administrator being the other role that provided complete… Read More: System Customizer role does not allow modifying Web Resources in… »

How to pass Object or collection of Objects to a web resource in CRM 2011

In Dynamics CRM if we want to pass data to a web resource, then we use Xrm.Utility.openWebResourcefunction and pass as second parameter. But in this case we can’t pass Object or Array as parameter.  So to solve this problem one can use JSON. Using JSON we can convert Object or Collection of Object (Array) in… Read More: How to pass Object or collection of Objects to a… »

How to load a web resource using Java Script

In Dynamics CRM 2011, if we implement JavaScript for particular form we add script web resource in the Form Libraries list under form customization, if there is any related script which need to be referred,  then we need to include that script as well in the Form Libraries. As you can see in the below screen,… Read More: How to load a web resource using Java Script »

How to allow a single resource to be scheduled for multiple activities at the same time

CRM has this great scheduling feature that lets you schedule resources for a job based on the availability as well as the skill set (service) being required to perform the job. You can associate a user with a particular service through the Required Resources Tab. Once you have the user selected in the selection rule… Read More: How to allow a single resource to be scheduled for… »