How To: Impersonating the K2 Service Account using Microsoft CRM WEB Services
KB001196
PRODUCT
![]() | Note: The content in this article is specific to Microsoft Dynamics CRM 4 only. |
Introduction
To enable Service Accounts to own entities within CRM, impersonation can be configured using the WEB Services. Once this has been configured the service account; which is the logged on user and the logged on user owns the identities, would be able to manipulate entities specifically for the default views for example My Tasks and My Leads.
System Configuration
Before the K2 Service Account can be given ownership of entities within Microsoft CRM, preliminary steps must first be completed within Active Directory. The steps below must be followed first and are a prerequisite before configuring Microsoft CRM.
The CRM Impersonation feature requires the logged on user to be a member of the PrivUserGroup in Active Directory and a GUID is used to identify the user in the User Entity. See below on how to configure this:
- To add the K2 Service Account to the PrivUserGroups it is usually located at the root of the Domain. Once the K2 Service Account has been added, the Administrator may need to do one of the following to ensure that the steps take effect:
- gpupdate /force
- Refresh the Active Directory Service
- If the above two steps do affect the update, then the Administrator can logout and then login again. Alternatively, the fail safe way to ensure that the changes are put into effect is to restart the server
- When impersonating the K2 Service Account with Microsoft CRM web services, the user account name domain and password are not passed for authentication. A GUID, generated within the Microsoft CRM Server is used and the GUID identifies the User Entity i.e. System name: System user.
The GUID has already been generated from within Microsoft CRM and can be located in one of three places. See the steps below to locate the GUID via:
• Microsoft CRM User Interface
• K2 SmartObjects
• K2 SmartObjects from within the K2 Designers
Microsoft CRM User Interface
- From within Microsoft CRM go to Settings > Administration > Users
- Locate the entity i.e. K2 Service Account and open it
- Press F11 to put the window into full screen mode
- Copy the GUID from the ID query string value.
Options available to retrieve the GUID
Via SmartObjects
To retrieve the GUID using K2 SmartObjects perform the steps below:
1. Register an Instance of the CRM Entity broker
2. Create a SmartObject against the User entity
3. Perform a Get List call against the CRM User SmartObject
4. The User column contains the GUID that you need
SmartObjects in the K2 Designer
To retrieve the GUID using SmartObjects from within the K2 Designer:
1. Use your CRM User SmartObject and do a filtered list
2. Pass in the FQN of a user to the Domain Logon Name field – make sure you trim out the label prefix.
3. Use other filter values if you need
4. Store the User value for later use
Usage Scenario
![]() | Note: The example below requires that the aforementioned steps be completed first before attempting it. |
In this example a new Task entity will be created for each destination user
![]() | Important: Note: Not all steps are provided |
- Add a Client event to the process
- Add destination users: Ensure that the destination rule options are set to the following
- All at once
- Resolve all roles and groups to users
- Drag a SmartObject wizard onto the Activity : this will be used to perform the Get List on the CRM User SmartObject which needs to be created
- Configure the Input Mapping so that Domain Logon Name has a value of ActivityInstanceDetUserName, use Inline Functions to remove the K2: label
- In Return Mappings save the User field to an Activity Data Field
Create the CRM Task
- Add the CRM Event wizard to the process
- Specify the CRM Server URL, Org Name, and Entity Name i.e. Task
- Specify the relevant Entity Attribute values
Implementing Impersonation
- View Code, Event Item on the CRM Event
- The code clearly shows the three methods, Create, Update and Delete. Since a New Entity will be created, minimal modifications to Create code are required
- The Wizard code contains two methods for GetCrmService, these implement the impersonation feature, and unfortunately the wizard UI just doesn’t have a means to leverage it
- In the try block we are going to make the following change
Comment out:
Replace it with:
Guid resultGuid = crmServiceI.Create(createEntity);
![]() | Caution: Do not replace the creation of the service on line 284 for Create or 596 for modify. This instance of the service is used to retrieve systems values for other elements of the wizard which the impersonating user may not have permission to access. |
Summary
To finalize, if the requirement is to modify or create entities in Microsoft CRM as a user other than the K2 Service account then it is possible with just a few minor changes to the event wizard code to facilitate this. The advantage is that impersonation uses a standard feature of Microsoft CRM and does not require username and password i.e. credentials to be specified.