web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
CRM 2011 - Error registering plugins and/or workflows. The resource string "E...

This is very common error which we get while deploying CRM 2011 plugins solution using Developer Tool Kit. I have experienced this only where source is kept in TFS. I have used SVN in past and have not had any issues. But once we migrated to ...

Hayer 804
Like (0)
CRM 2013: How to disable of "Get CRM for Outlook" notification bar perma...

Recently few of our users complained about "Get CRM for Outlook" notification they receive every time they login to CRM. However it is not as frustrating as popups but some laptop users feel that it takes little screen space and it is bi...

Hayer 804
Like (0)
CRM 2011: How to Cancel/Terminate Workflow Programmatically using C#

I was assigned a task where workflow was running on status change and then it waits for few days to send an email message to contact. During the period of wait if status has been changed to something else then workflow should be cancelled.So I hav...

Hayer 804
Like (0)
CRM 2013: Timer button is currently disabled

Service pack 1 of Dynamics CRM 2013 came up with an exciting feature of SLA Timer. Timers can be used to track service level agreement KPI to ensure customer commitments are met. Today I was trying to get my hands on it but after installing Servic...

Hayer 804
Like (0)
Dynamics CRM: How to Add working days by calculating business closure and weekends

Recently I received a requirement to set the Incident Auto Closure date to 'CreatedOn' + 7 working days. To add working days to 'CreatedOn' date, we need to exclude all the weekend and business closures. I came up with the followi...

Hayer 804
Like (0)
Dynamics CRM: How to get Business Closure Dates in Plugin

using System;using System.Linq;using HayerCrmPackage.Plugins.Entities;using Microsoft.Xrm.Sdk;using Microsoft.Xrm.Sdk.Client;using Microsoft.Xrm.Sdk.Query;namespace HayerCrmPackage.Plugins{ public class PreCaseCreate : Plugin { public...

Hayer 804
Like (0)
CRM 2011: Get list of audited attributes from AuditBase table

Recently, I was asked to get all the fields and their entities which were audited in a day so that we can decide if we really need to audit all of those fields and disable auditing where its not required.As we know there is no Filtered view for au...

Hayer 804
Like (0)
Dynamics CRM: Create ServiceAppointment

A service appointment represents an appointment for service. The schema name for this entity is ServiceAppointment. The service appointment entity represents a block of time on a calendar. This entity stores the availabili...

Hayer 804