Skip to content

Power Platform Pulse

  • Home
  • Usefull Links
  • Contact Me
Power Platform Pulse
  • Microsoft Dynamics

    Server-Based SharePoint Integration – CRM 2013

    ByAshish June 22, 2014May 8, 2026

    Microsoft Dynamics CRM Spring 2014 release has introduced a new approach to CRM and SharePoint integration that is the server-based SharePoint integration. It can be enabled only by using the web or Outlook client for Dynamics CRM. One very important thing with this update is that you cannot revert to the previous client-based authentication method…

    Read More Server-Based SharePoint Integration – CRM 2013Continue

  • Microsoft Dynamics

    Price list is disabled for all users on opportunity except administrators

    ByAshish January 8, 2014May 8, 2026

    Issue: Recently I had this problem dealing with an issue about pricelist being disabled for all security roles except system administrator. I googled a lot and everyone talked about assigning organization level access to pricelist entity in the security roles area but I could not find this entity. Resolution: After researching a lot, I found…

    Read More Price list is disabled for all users on opportunity except administratorsContinue

  • Microsoft Dynamics

    New JavaScript methods in CRM 2013

    ByAshish January 7, 2014May 8, 2026

    With release of CRM 2013, Microsoft has added some new methods that can be accessed. In the past, we had to write some unsupported JavaScript to get this functionality. More information about all these methods can be found in Microsoft Dynamics CRM 2013 SDK. • Xrm.Page.context.client.getClient() – Returns client type i.e. outlook, web or mobile….

    Read More New JavaScript methods in CRM 2013Continue

  • Microsoft Dynamics

    Using the Case Resolution in Workflows via a Custom Workflow Activity

    ByAshish July 1, 2013May 8, 2026

    The most common email notification request from customer support team is to “send an email to the client when a case has been resolved” I have written this custom workflow activity to get description field from case resolution dialog and insert in email body. You can get the complete visual studio solution from this link…

    Read More Using the Case Resolution in Workflows via a Custom Workflow ActivityContinue

  • Microsoft Dynamics

    Creating a knowledge base article using C# plugin

    ByAshish July 1, 2013May 8, 2026

    I am writing this post with complete code to help someone in the community who might be having a similar requirement. Please see the code below: Entity ent = new Entity(“kbarticle”); ent.Attributes.Add(“title”, <title>); ent.Attributes.Add(“kbarticletemplateid”, new EntityReference(“kbarticletemplate”,new Guid(< Template Id >))); ent.Attributes.Add(“subjectid”, new EntityReference(“subject”, new Guid(<Subject Id >))); string articlexml = “<articledata><section id=’0′><content><![CDATA[“ + <<This is…

    Read More Creating a knowledge base article using C# pluginContinue

  • Microsoft Dynamics

    Error 0x8004F016 while importing a managed solution

    ByAshish December 10, 2012May 8, 2026

    A managed solution cannot overwrite the SavedQuery component with Id=xxxx-xxx-xxx-xxx-xxxx.. Error Are you getting below error when trying to import managed solution exported from your dev environment. A managed solution cannot overwrite the SavedQuery component with Id=xxxx-xxx-xxx-xxx-xxxx  which has an unmanaged base instance.The most likely scenario for this error is that an unmanaged solution has…

    Read More Error 0x8004F016 while importing a managed solutionContinue

  • Microsoft Dynamics

    Importing Attachments using CRM 2011 Import Wizard

    ByAshish November 30, 2012May 8, 2026

    All of us have been importing notes and attachments using Scribe or SSIS but this method uses out of the box import wizard to import all the attachments. Please follow the steps closely: 1. Create an annotation.csv having the following columns: Title,Description,File Name,Document,Mime Type,Regarding 2. In the same spot where you saved the csv file,…

    Read More Importing Attachments using CRM 2011 Import WizardContinue

  • Microsoft Dynamics

    PROPER Function in SSRS 2008

    ByAshish October 31, 2012May 8, 2026

    SSRS does not contain an inbuilt method for making the first letter of each word uppercase. we can write  uppercase(left(field,1)) + lowercase(right(field,len(string)-1) to do the same job but it gets over complicated and it only modifies first letter of a multi word string. We can use the following function to convert string to proper case….

    Read More PROPER Function in SSRS 2008Continue

  • Microsoft Dynamics

    Java script Validation for Cross Browser Support

    ByAshish June 24, 2012May 8, 2026

    Microsoft recently released this tool to validate all the java script and HTML web resources on CRM on premise or online. Java script validated via this tool will handle cross browser  support once it is out in next couple of months. http://www.microsoft.com/en-us/download/details.aspx?id=30151  

    Read More Java script Validation for Cross Browser SupportContinue

  • Microsoft Dynamics

    Zipcode Lookup for Account/Contact

    ByAshish June 13, 2012May 8, 2026

    Recently I was asked by a customer to populate city, county and state depending on the zip code for accounts and contact. It involved lot of research and a simple java script method worth sharing with the community to save lot of time. I implemented this for accounts and contacts but the same method can…

    Read More Zipcode Lookup for Account/ContactContinue

Page navigation

Previous PagePrevious 1 2 3 4 Next PageNext

© 2026 Power Platform Pulse - WordPress Theme by Kadence WP

Loading Comments...

    • Home
    • Usefull Links
    • Contact Me