While going through various videos on Microsoft Dynamics CRM, found these 2 nice videos on Package Deployer Tool and Configuration Tool. Do check it out Package Deployer Configuration Migration Tool Hope it helps..
Category Archives: Uncategorized
Nice Videos on understanding “Package Deployer Tool” and “Configuration Migration Tool” in CRM. — Nishant Rana’s Weblog
Filed under Uncategorized
Getting Started with Asynchronous Workflow — HIMBAP
Are you new to Microsoft Dynamics CRM and looking to get started with Microsoft Dynamics CRM 2016 Asynchronous Workflows? than join us on Friday 4 Nov at 8 PM IST for Free Webinar: Agenda 1. Introduction to Asynchronous workflow 2. Using Workflow Designer 3. Configure workflow start options 4. Using workflow Steps 5. Demo 6.…
Filed under Uncategorized
SLA enhancement in Dynamics CRM 2016 Update 1 Part 2 — HIMBAP
In our earlier article we discussed how to create SLA and SLA items for account entity. Now in this article we will see how to use SLA for customer document verification. To work with SLA, we need to use timer control which provides us different option to evaluate SLA. We can configure different criteria which…
via SLA enhancement in Dynamics CRM 2016 Update 1 Part 2 — HIMBAP
Filed under Uncategorized
SLA enhancement in Dynamics CRM 2016 Update 1 Part 1 — HIMBAP
After release of Dynamics CRM 2016 update 1, we can now enable SLA for other custom and system entities as well. We can enable SLA using Enable for SLA option under entity definition like below for custom and specific system entities: Following are the list of additional system entities apart from case where we can…
via SLA enhancement in Dynamics CRM 2016 Update 1 Part 1 — HIMBAP
Filed under Uncategorized
USD – RunXrmCommand and Quick Create Forms — Microsoft Dynamics CRM and Unified Service Desk
Recently I found problems with RunXrmCommand in Unified Service Desk (USD) for Microsoft Dynamics CRM 2016, in this post I will describe our problem and the work around that was identified. We often use RunXrmCommands to inject JavaScript into CRM forms, this can be useful to make use of Xrm.Page commands to interact with the […]
via USD – RunXrmCommand and Quick Create Forms — Microsoft Dynamics CRM and Unified Service Desk
Filed under Uncategorized
Fixing service unavailable 503 Error ADFS -Quick Tip
Filed under ADFS, Uncategorized
Our Blog New Address
We have shifted our blog to our website http://himbap.com/blog. Follow & subscribe our new blog to get latest updates.
Filed under Uncategorized
A free customizable Editable Grid for Dynamics CRM 2013/2015!
How many times have you heard “This grid is great, but I hate double clicking and going into the record to edit it, then going back to my record.” I certainly have heard it many times from many clients. In fact I feel the same way sometimes. It gets really annoying that you have to go into each record and change one attribute. Why can’t MSFT build this into the system? It’s not hard…well maybe it is.
At BusiPlanIT labs, we have done the hard work for you and come up with a solution that leverages JQuery js, JQuery UI js, and SlickGrids js. We have created a full HTML5 solution for you that works in CRM 2013 and 2015. Oh and let’s not forget the different browsers! It works on Chrome, Internet Explorer, and Firefox.
We are offering one free grid for any use in the CRM. You…
View original post 1,820 more words
Filed under Uncategorized
Improved update method –Microsoft Dynamics CRM 2015 Update 1
Microsoft Dynamics CRM 2015 Update 1 released some new features that will be very help for developers. In this post we will discuss new improvement in Update method. In earlier version we had different request for the special operations for example AssignRequest for changing owner once record is created, SetStateRequest to change the status of entity record. But now with the release of CRM2015 Update 1 we don’t need to use request (they are deprecated). We can simply apply these operation in the update request only.
For example below is the request to update account record and assign to another user and change status to inactive:
OrganizationService service=GetCrmService();
//Create account object
Entity account=new Entity(“account”);
//set account id
account[“accounted”]=new Guid(“af393105-2a98-407b-9215-6113f19498ad”);
//Assign this record to dev user
account[“ownerid”]=new EntityReference(“systemuser”, new Guid(“af80d7b3-e5e1-4b52-a141-a594f24ee015”);
//set account status to inactive
account[“statecode”]=new OptionSetValue(1);
account[“statuscode”]=new OptionSetValue(2);
//call update method
service.Update(account);
Before:
After:
HIMBAP | Need any help in Microsoft CRM 2015 Development Contact US !!
Filed under MS CRM 2015 Update 1, Uncategorized
Deleting Microsoft Dynamics CRM 2013 Organization from SQL
Requirement: Delete Microsoft Dynamics CRM Organization
Solution: We can follow below steps to delete Dynamics CRM Organization from DB.
- Connect to CRM DB server and right click on CRM organization DB (for example DEMO_MSCRM)
- Select Delete and make sure to select Close existing connections
This will delete organization DB , but we also need to remove Organization references from MSCRM_CONFIG DB, so follow below steps.
- Fire below select statement against MSCRM_CONFIG DB
select * from [dbo].Organization
- Note down ID of your organization, we need it for below queries.
- Execute following commends against MSCRM_CONFIG DB, you can change parameter and run all of them in one go
delete from [dbo].[OrganizationFeatureMap] where OrganizationId=’ORG_GUID’
delete from [dbo].SystemUserOrganizations where OrganizationId=’ORG_GUID’
delete from [dbo].[OrganizationProperties] where Id=’ORG_GUID’
delete from dbo.Organization where DatabaseName=’ORGNAME_MSCRM’
Note: This is an unsupported method of removing Organization DB and should be used only when not able to delete organization from Deployment Manager for specific reasons.
Hope it will help someone !!
Filed under Uncategorized