Tuesday, June 16, 2015

Branching in Business Process Flows (CRM 2015)

Business process flows guide you through various stages of sales, marketing, or service processes toward completion. In simple cases, a linear business process flow is a good option. However, in more complex scenarios, you can enhance a business process flow with branching. If you have the create permissions on business process flows, you’ll be able create business process flow with multiple branches by using the If-Else logic. The branching condition can be formed of multiple logical expressions that use a combination of AND or OR operators.




Tuesday, June 2, 2015

Class Library for CRM Fields Schema Names


I am thinking about creating a Class Library to support CRM Fields Schema Names and Data Types in developing Plugins.
Two concepts hitting my mind.

  • Make an object oriented style of classes with helper methods in base classes
  • Create configurations regarding all schema field names and store them as field properties by creating specific entity classes on the fly. 
Hmm, well 2nd point is looking more feasible in  such development....


#AW Customization Consultant Maison Consulting & Solutions

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...