Today I got requirement from one of my client for dynamics crm online, that they just want to show only Workplace and Setting navigation to all users except System Admin. The first thing that came in my mind to set Privilege attribute for all Subarea in all navigation with “All” for example for account to use like as below <Privilege… Read more »
Microsoft Dynamics “CRM5” Technology Preview Released Worldwide, On Premises and Online http://blogs.msdn.com/crm/ For Video Check http://blogs.msdn.com/crm/archive/2008/12/18/an-early-look-at-crm-5.aspx
I want to share somecode to update entity using dynamic entity with all //Create ICrmService object ICrmService _iCrmserviceObject=context.CreateCrmService(true); //Create Dynamic entity object DynamicEntity _DynamicEntity = new DynamicEntity(); //Assign name of entity which you want to update let’s say account _DynamicEntity.Name = “account”; //We have to add properties to dyanic entity that we want to update //we can add directly… Read more »
One of my client ask me to develop a custom workflow for Following Date Manipulation functions Get the day of the week from a datetime field Get the date only part of a date time field to a workflow variable Get the time only part of a date time field to a workflow variable Get the datetime value for the… Read more »
I got requirement to get Date for next weekday based on the weekday index input For example if you need to check what the date on next Monday is, As obvious I created two workflow input variables and wrote logic to get next weekday date. But I found the custom workflow not working because of the because of the datetime… Read more »
Today I got Requirement to Filter Potential Customer for Opportunity to show only accounts.This can be achieved only just putting one line in Opportunity form load //To Show Only Account crmForm.all.customerid.setAttribute(“lookuptypes”,”1″); //To Show only Contact crmForm.all.customerid.setAttribute(“lookuptypes”,”2″); Done !!!