-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfieldMapping.json
More file actions
323 lines (323 loc) · 11.6 KB
/
Copy pathfieldMapping.json
File metadata and controls
323 lines (323 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
{
"Version": "v1",
"MappingFields": [
{
"Name": "firstName",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.Name.NickName\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "isManager",
"Description": "By default, isManager will be handled in the PowerShell scripts. The value will be set to true if that is not the case for the person manager. When a boolean is provided by the source system you can add this here and enable it for update.",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create"
],
"MappingMode": "Fixed",
"Value": "\"false\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "budgetHolder.name",
"Description": "Removing this field will skip looking up and updating the budgetHolder field",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.PrimaryContract.CostCenter.Name\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "department.name",
"Description": "Removing this field will skip looking up and updating the department field",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.PrimaryContract.Department.DisplayName\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "email",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getEmail() {\\n let mail = '';\\n\\n if (typeof Person.Accounts.MicrosoftActiveDirectory.mail !== 'undefined' && Person.Accounts.MicrosoftActiveDirectory.mail) {\\n mail = Person.Accounts.MicrosoftActiveDirectory.mail;\\n }\\n\\n return mail;\\n}\\n\\ngetEmail()\"",
"UsedInNotifications": false,
"StoreInAccountData": false
},
{
"MapForActions": [
"Delete"
],
"MappingMode": "Fixed",
"Value": "\"\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "employeeNumber",
"Description": "[Mandatory]",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.ExternalId\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "branch.name",
"Description": "[Mandatory]",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.PrimaryContract.Location.Name\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "id",
"Description": "[Mandatory]",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "None",
"Value": "\"\"",
"UsedInNotifications": false,
"StoreInAccountData": true
}
]
},
{
"Name": "manager.id",
"Description": "Removing this field will skip looking up and updating the manager field",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "None",
"Value": "\"\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "firstInitials",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getFirstInitials() {\\n let initials = '';\\n\\n if (typeof Person.Name.Initials !== 'undefined' && Person.Name.Initials) {\\n initials = Person.Name.Initials;\\n // Max length 10 char\\n if ((initials.length) > 10) {\\n initials = initials.substring(0, 10)\\n }\\n }\\n\\n return initials;\\n}\\n\\ngetFirstInitials();\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "gender",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getGender() {\\n let gender = 'UNDEFINED';\\n\\n if (typeof Person.Details.Gender !== 'undefined' && Person.Details.Gender) { \\n switch (Person.Details.Gender) {\\n case \\\"M\\\":\\n gender = 'MALE';\\n break;\\n case \\\"V\\\":\\n gender = 'FEMALE';\\n break;\\n default:\\n gender = 'UNDEFINED';\\n break;\\n }\\n }\\n\\n return gender;\\n}\\n\\ngetGender();\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "jobTitle",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Field",
"Value": "\"Person.PrimaryContract.Title.Name\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "networkLoginName",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getNetworkLoginName() {\\r\\n let upn = '';\\r\\n\\r\\n if (typeof Person.Accounts.MicrosoftActiveDirectory.userPrincipalName !== 'undefined' && Person.Accounts.MicrosoftActiveDirectory.userPrincipalName) {\\r\\n upn = Person.Accounts.MicrosoftActiveDirectory.userPrincipalName;\\r\\n }\\r\\n\\r\\n return upn;\\r\\n}\\r\\n\\r\\ngetNetworkLoginName()\"",
"UsedInNotifications": false,
"StoreInAccountData": false
},
{
"MapForActions": [
"Delete"
],
"MappingMode": "Fixed",
"Value": "\"\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "prefixes",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getPrefixes() {\\n let middleName = Person.Name.FamilyNamePrefix;\\n let middleNamePartner = Person.Name.FamilyNamePartnerPrefix;\\n let convention = Person.Name.Convention;\\n\\n let nameFormatted = '';\\n let prefix = '';\\n\\n switch (convention) {\\n case \\\"P\\\":\\n case \\\"PB\\\":\\n nameFormatted = middleNamePartner;\\n break;\\n case \\\"B\\\":\\n case \\\"BP\\\":\\n default:\\n nameFormatted = middleName;\\n break;\\n }\\n\\n if (typeof nameFormatted !== 'undefined' && nameFormatted) {\\n prefix = nameFormatted.trim();\\n } else {\\n prefix = nameFormatted;\\n }\\n\\n return prefix;\\n}\\n\\ngetPrefixes();\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "surName",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"// Please enter the mapping logic to generate the Lastname.\\nfunction getLastName() {\\n let middleName = Person.Name.FamilyNamePrefix;\\n let lastName = Person.Name.FamilyName;\\n let middleNamePartner = Person.Name.FamilyNamePartnerPrefix;\\n let lastNamePartner = Person.Name.FamilyNamePartner;\\n let convention = Person.Name.Convention;\\n\\n let nameFormatted = '';\\n let sureName = ''\\n\\n switch (convention) {\\n case \\\"BP\\\":\\n nameFormatted = lastName + ' - ';\\n if (typeof middleNamePartner !== 'undefined' && middleNamePartner) { nameFormatted = nameFormatted + middleNamePartner + ' ' }\\n nameFormatted = nameFormatted + lastNamePartner;\\n break;\\n case \\\"P\\\":\\n nameFormatted = lastNamePartner;\\n break;\\n case \\\"PB\\\":\\n nameFormatted = lastNamePartner + ' - ';\\n if (typeof middleName !== 'undefined' && middleName) { nameFormatted = nameFormatted + middleName + ' ' }\\n nameFormatted = nameFormatted + lastName;\\n break;\\n case \\\"B\\\":\\n default:\\n nameFormatted = lastName;\\n break;\\n }\\n\\n if (typeof nameFormatted !== 'undefined' && nameFormatted) {\\n sureName = nameFormatted.trim();\\n } else {\\n sureName = nameFormatted;\\n }\\n\\n return sureName;\\n}\\n\\ngetLastName();\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "tasLoginName",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update"
],
"MappingMode": "Complex",
"Value": "\"function getTasLoginName() {\\r\\n let upn = '';\\r\\n\\r\\n if (typeof Person.Accounts.MicrosoftActiveDirectory.userPrincipalName !== 'undefined' && Person.Accounts.MicrosoftActiveDirectory.userPrincipalName) {\\r\\n upn = Person.Accounts.MicrosoftActiveDirectory.userPrincipalName;\\r\\n }\\r\\n\\r\\n return upn;\\r\\n}\\r\\n\\r\\ngetTasLoginName()\"",
"UsedInNotifications": false,
"StoreInAccountData": false
},
{
"MapForActions": [
"Delete"
],
"MappingMode": "Fixed",
"Value": "\"\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
},
{
"Name": "mainframeLoginName",
"Description": "",
"Type": "Text",
"MappingActions": [
{
"MapForActions": [
"Create",
"Update",
"Enable",
"Disable"
],
"MappingMode": "Fixed",
"Value": "\"Managed by HelloID\"",
"UsedInNotifications": false,
"StoreInAccountData": false
},
{
"MapForActions": [
"Delete"
],
"MappingMode": "Fixed",
"Value": "\"Deleted by HelloID\"",
"UsedInNotifications": false,
"StoreInAccountData": false
}
]
}
],
"UniqueFieldNames": []
}