ConfigureOutlookFilterStep
Applies to KDTooling Deployment Manager 1.2
Content
Overview
Configure filter for server side sync via Exchange
Name | ConfigureOutlookFilterStep |
Type | Deployment Definition |
IsPostBuild | True |
Parameters
Name | Type | Description |
Title | String | Title |
TargetEnvironment | Dropdown | Target Environment |
DeleteUserFilterAppointments | Bool | Remove Userfilters (appointments) |
DeleteUserFilterContacts | Bool | Remove Userfilters (contacts) |
DeleteUserFilterTasks | Bool | Remove Userfilters (tasks) |
DeleteUserFilterTemplateAppointments | Bool | Remove Template (appointments) |
DeleteUserFilterTemplateContacts | Bool | Remove Template (contacts) |
DeleteUserFilterTemplateTasks | Bool | Remove Template (tasks) |
GlobalFilterAppointmentsName | String | Filter Name (appointments) |
GlobalFilterAppointmentsFetchXML | String | Appointments FetchXML |
GlobalFilterContactsName | String | Filter Name (contacts) |
GlobalFilterContactsFetchXML | String | Contacts FetchXML |
GlobalFilterTasksName | String | Filter Name (tasks) |
GlobalFilterTasksFetchXML | String | Tasks FetchXML |
Dependencies
None
Examples
Appointments:
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false"> <entity name="appointment"> <filter type="and"> <condition attribute="ownerid" operator="eq-userid" /> </filter> </entity> </fetch>
Contacts:
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false"> <entity name="contact"> <attribute name="fullname" /> <attribute name="telephone1" /> <attribute name="contactid" /> <order attribute="fullname" descending="false" /> <filter type="and"> <condition attribute="ownerid" operator="eq-userid" /> <condition attribute="emailaddress1" operator="eq" value="c" /> </filter> </entity> </fetch>
Tasks:
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false"> <entity name="task"> <filter type="and"> <condition attribute="ownerid" operator="eq-userid" /> </filter> </entity> </fetch>
Build Provider
Local Visual Studio: Supported
Team Foundation Server: Supported
Troubleshooting
-
Additional Information
-