Thursday, May 28, 2015

Create and Update Entity Metadata

Create and Update Entity Metadata (Programatically C#)









#AW Customization Consultant Maison Consulting & Solutions

Change Entity Primary Field after Entity is Created


Change Entity Primary Field. Below link also provide useful information regarding Entity Metadata & how CRM stores entity attributes and metadata in database. 


https://www.it-gems.com/2014/10/change-primary-field-entity-created.html



#AW Customization Consultant Maison Consulting & Solutions

Tuesday, May 26, 2015

Status and Status Reason values in Dynamics CRM 2013

Important info regarding 'Status and Status Reason values in Dynamics CRM 2013' is given in this link.
https://msdynamicscrmblog.wordpress.com/2013/10/26/status-and-status-reason-values-in-dynamics-crm-2013/





#AW Customization Consultant Maison Consulting & Solutions

Friday, April 24, 2015

Thursday, April 16, 2015

Object Properties with Get, Set

var d = Date.prototype;
Object.defineProperty(d, "Year", {
  get: function() {return this.getFullYear() },
  set: function(y) { this.setFullYear(y) }
});
Above code add property in Date object. This is use of getter and setter in a Date object: Shown in below lines of code. 
var now = new Date;
document.write(now.Year + '<br/>'); // 2015
now.Year = 2016;
document.write(now); 
// Sat Apr 16 2016 13:56:25 GMT+0500 (Pakistan Standard Time)

Asp.Net MVC (5) - Exception Filter - HandleError

Applicable on Asp.Net MVC5 HandleError Filter This belongs to Exception Filters category (Authentication Filter, Authoriz...