Skip to main content

Microsoft Dynamics CRM 2011 Tip 2



MSCRM 2011 DEFAULT TEAMS

In CRM 2011, When a Business Unit is created, a Team with the same name is created in it. This is known as the ‘Default Team’ for the Business Unit.
All Users created in or added to the Business Unit are automatically added to the default Team. This makes the Team a useful tool for assigning the same Security Roles to all users in a Business Unit.
Default Teams cannot:
• be deleted
• be renamed
• be moved to another Business Unit
• have their membership edited.  

Comments

Popular posts from this blog

Case Resolution using Power Automate

Case Resolution using Power Automate 1. Create a flow, 2. Add a step to create a new record for Case Resolutions.  4. Give a Subject as per your case title, here in the example i gave it as Case Resolution 5. Resolution Type as Problem Solved . 5. Cases Reference to be added in the Case field. 6. Save the flow. When the below flow is run, it will create a Case Resolution Record and mark the case as resolved.

Debug Dynamics CRM Ribbon Javascript Code

Go to Internet Explorer Settings and uncheck the disable debug options as shown below Add debugger; with terminator as first line in your javscript function.  Once you have above steps done, clean all your browsing history and reload the form where you have this ribbon button.  Open Debugger from F12 when debugger will open it will load CRM in browser again.  Now when the javascript function is called, pointer will come at debugger to debug.  Enjoy CRMing...!!
Connect to Dynamics CRM Online V9 from a console application Using CrmServiceClient Nuget Package Required :  C# Code :  Extra Step in the connect code we have to add for CRMV9 :     ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; public   static   IOrganizationService  getCRMConnection() {   ServicePointManager . SecurityProtocol  =   SecurityProtocolType . Tls12;   var  connectionStringName  =   Config . ConnectionString . CRM;   var  connectionStringValue  =     ConfigurationManager . ConnectionStrings[connectionStringName] . ConnectionString;   var  crmConnection  =   new   CrmServiceClient (connectionStringValue);   return    ( IOrganizationService )crmConnection . OrganizationWebProxyClient  !=   null   ?    ( IOrganizationService )crmConnection . OrganizationWebProxyCli...