mpp_reader 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +36 -0
- data/LICENSE.txt +504 -0
- data/README.md +77 -0
- data/exe/mpp_reader +5 -0
- data/lib/mpp_reader/assignment.rb +8 -0
- data/lib/mpp_reader/blocks/fixed_data.rb +83 -0
- data/lib/mpp_reader/blocks/fixed_meta.rb +62 -0
- data/lib/mpp_reader/blocks/props.rb +47 -0
- data/lib/mpp_reader/blocks/var2_data.rb +39 -0
- data/lib/mpp_reader/blocks/var_meta.rb +38 -0
- data/lib/mpp_reader/calendar.rb +19 -0
- data/lib/mpp_reader/cfbf/directory.rb +84 -0
- data/lib/mpp_reader/cfbf/fat.rb +75 -0
- data/lib/mpp_reader/cfbf/file.rb +114 -0
- data/lib/mpp_reader/cfbf/header.rb +40 -0
- data/lib/mpp_reader/cli.rb +110 -0
- data/lib/mpp_reader/comp_obj.rb +37 -0
- data/lib/mpp_reader/decode.rb +105 -0
- data/lib/mpp_reader/errors.rb +13 -0
- data/lib/mpp_reader/field_map.rb +106 -0
- data/lib/mpp_reader/field_reader.rb +119 -0
- data/lib/mpp_reader/field_tables.rb +4156 -0
- data/lib/mpp_reader/project.rb +70 -0
- data/lib/mpp_reader/reader14.rb +455 -0
- data/lib/mpp_reader/relation.rb +11 -0
- data/lib/mpp_reader/resource.rb +5 -0
- data/lib/mpp_reader/rtf_text.rb +92 -0
- data/lib/mpp_reader/task.rb +21 -0
- data/lib/mpp_reader/version.rb +3 -0
- data/lib/mpp_reader.rb +66 -0
- metadata +77 -0
|
@@ -0,0 +1,4156 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# GENERATED FILE - do not edit by hand.
|
|
4
|
+
# Built by tool/generate_field_tables.rb from the MPXJ sources
|
|
5
|
+
# (common/MPP*Field.java and *Field.java enums).
|
|
6
|
+
module MppReader
|
|
7
|
+
module FieldTables
|
|
8
|
+
TASK_FIELD_BASE = 0x0B400000
|
|
9
|
+
RESOURCE_FIELD_BASE = 0x0C400000
|
|
10
|
+
ASSIGNMENT_FIELD_BASE = 0x0F400000
|
|
11
|
+
|
|
12
|
+
TASK_FIELDS = {
|
|
13
|
+
0 => :work,
|
|
14
|
+
1 => :baseline_work,
|
|
15
|
+
2 => :actual_work,
|
|
16
|
+
3 => :work_variance,
|
|
17
|
+
4 => :remaining_work,
|
|
18
|
+
5 => :cost,
|
|
19
|
+
6 => :baseline_cost,
|
|
20
|
+
7 => :actual_cost,
|
|
21
|
+
8 => :fixed_cost,
|
|
22
|
+
9 => :cost_variance,
|
|
23
|
+
10 => :remaining_cost,
|
|
24
|
+
11 => :bcwp,
|
|
25
|
+
12 => :bcws,
|
|
26
|
+
13 => :sv,
|
|
27
|
+
14 => :name,
|
|
28
|
+
15 => :notes,
|
|
29
|
+
16 => :wbs,
|
|
30
|
+
17 => :constraint_type,
|
|
31
|
+
18 => :constraint_date,
|
|
32
|
+
19 => :critical,
|
|
33
|
+
20 => :leveling_delay,
|
|
34
|
+
21 => :free_slack,
|
|
35
|
+
22 => :total_slack,
|
|
36
|
+
23 => :id,
|
|
37
|
+
24 => :milestone,
|
|
38
|
+
25 => :priority,
|
|
39
|
+
26 => :subproject_file,
|
|
40
|
+
27 => :baseline_estimated_duration,
|
|
41
|
+
28 => :actual_duration,
|
|
42
|
+
29 => :scheduled_duration,
|
|
43
|
+
30 => :duration_variance,
|
|
44
|
+
31 => :remaining_duration,
|
|
45
|
+
32 => :percent_complete,
|
|
46
|
+
33 => :percent_work_complete,
|
|
47
|
+
34 => :fixed_duration,
|
|
48
|
+
35 => :scheduled_start,
|
|
49
|
+
36 => :scheduled_finish,
|
|
50
|
+
37 => :early_start,
|
|
51
|
+
38 => :early_finish,
|
|
52
|
+
39 => :late_start,
|
|
53
|
+
40 => :late_finish,
|
|
54
|
+
41 => :actual_start,
|
|
55
|
+
42 => :actual_finish,
|
|
56
|
+
43 => :baseline_estimated_start,
|
|
57
|
+
44 => :baseline_estimated_finish,
|
|
58
|
+
45 => :start_variance,
|
|
59
|
+
46 => :finish_variance,
|
|
60
|
+
47 => :predecessors,
|
|
61
|
+
48 => :successors,
|
|
62
|
+
49 => :resource_names,
|
|
63
|
+
50 => :resource_initials,
|
|
64
|
+
51 => :text1,
|
|
65
|
+
52 => :start1,
|
|
66
|
+
53 => :finish1,
|
|
67
|
+
54 => :text2,
|
|
68
|
+
55 => :start2,
|
|
69
|
+
56 => :finish2,
|
|
70
|
+
57 => :text3,
|
|
71
|
+
58 => :start3,
|
|
72
|
+
59 => :finish3,
|
|
73
|
+
60 => :text4,
|
|
74
|
+
61 => :start4,
|
|
75
|
+
62 => :finish4,
|
|
76
|
+
63 => :text5,
|
|
77
|
+
64 => :start5,
|
|
78
|
+
65 => :finish5,
|
|
79
|
+
66 => :text6,
|
|
80
|
+
67 => :text7,
|
|
81
|
+
68 => :text8,
|
|
82
|
+
69 => :text9,
|
|
83
|
+
70 => :text10,
|
|
84
|
+
71 => :marked,
|
|
85
|
+
72 => :flag1,
|
|
86
|
+
73 => :flag2,
|
|
87
|
+
74 => :flag3,
|
|
88
|
+
75 => :flag4,
|
|
89
|
+
76 => :flag5,
|
|
90
|
+
77 => :flag6,
|
|
91
|
+
78 => :flag7,
|
|
92
|
+
79 => :flag8,
|
|
93
|
+
80 => :flag9,
|
|
94
|
+
81 => :flag10,
|
|
95
|
+
82 => :rollup,
|
|
96
|
+
83 => :cv,
|
|
97
|
+
84 => :project,
|
|
98
|
+
85 => :outline_level,
|
|
99
|
+
86 => :unique_id,
|
|
100
|
+
87 => :number1,
|
|
101
|
+
88 => :number2,
|
|
102
|
+
89 => :number3,
|
|
103
|
+
90 => :number4,
|
|
104
|
+
91 => :number5,
|
|
105
|
+
92 => :summary,
|
|
106
|
+
93 => :created,
|
|
107
|
+
94 => :notes,
|
|
108
|
+
95 => :unique_id_predecessors,
|
|
109
|
+
96 => :unique_id_successors,
|
|
110
|
+
97 => :objects,
|
|
111
|
+
98 => :linked_fields,
|
|
112
|
+
99 => :resume,
|
|
113
|
+
100 => :stop,
|
|
114
|
+
101 => :resume_no_earlier_than,
|
|
115
|
+
102 => :outline_number,
|
|
116
|
+
103 => :duration1,
|
|
117
|
+
104 => :duration2,
|
|
118
|
+
105 => :duration3,
|
|
119
|
+
106 => :cost1,
|
|
120
|
+
107 => :cost2,
|
|
121
|
+
108 => :cost3,
|
|
122
|
+
109 => :hide_bar,
|
|
123
|
+
110 => :confirmed,
|
|
124
|
+
111 => :update_needed,
|
|
125
|
+
112 => :contact,
|
|
126
|
+
113 => :resource_group,
|
|
127
|
+
119 => :complete_through,
|
|
128
|
+
120 => :acwp,
|
|
129
|
+
128 => :type,
|
|
130
|
+
129 => :recurring,
|
|
131
|
+
132 => :effort_driven,
|
|
132
|
+
152 => :duration_units,
|
|
133
|
+
160 => :parent_task_unique_id,
|
|
134
|
+
163 => :overtime_work,
|
|
135
|
+
164 => :actual_overtime_work,
|
|
136
|
+
165 => :remaining_overtime_work,
|
|
137
|
+
166 => :regular_work,
|
|
138
|
+
168 => :overtime_cost,
|
|
139
|
+
169 => :actual_overtime_cost,
|
|
140
|
+
170 => :remaining_overtime_cost,
|
|
141
|
+
178 => :leveling_delay_units,
|
|
142
|
+
179 => :baseline_duration_units,
|
|
143
|
+
181 => :actual_duration_units,
|
|
144
|
+
183 => :duration1_units,
|
|
145
|
+
184 => :duration2_units,
|
|
146
|
+
185 => :duration3_units,
|
|
147
|
+
200 => :fixed_cost_accrual,
|
|
148
|
+
202 => :recurring,
|
|
149
|
+
203 => :recurring_data,
|
|
150
|
+
205 => :indicators,
|
|
151
|
+
215 => :hyperlink_data,
|
|
152
|
+
217 => :hyperlink,
|
|
153
|
+
218 => :hyperlink_address,
|
|
154
|
+
219 => :hyperlink_subaddress,
|
|
155
|
+
220 => :hyperlink_href,
|
|
156
|
+
224 => :assignment,
|
|
157
|
+
225 => :overallocated,
|
|
158
|
+
232 => :external_task,
|
|
159
|
+
242 => :subproject_task_unique_id,
|
|
160
|
+
246 => :subproject_read_only,
|
|
161
|
+
249 => :outline_level,
|
|
162
|
+
250 => :response_pending,
|
|
163
|
+
251 => :teamstatus_pending,
|
|
164
|
+
252 => :leveling_can_split,
|
|
165
|
+
253 => :level_assignments,
|
|
166
|
+
255 => :subproject_task_id,
|
|
167
|
+
256 => :work_contour,
|
|
168
|
+
258 => :cost4,
|
|
169
|
+
259 => :cost5,
|
|
170
|
+
260 => :cost6,
|
|
171
|
+
261 => :cost7,
|
|
172
|
+
262 => :cost8,
|
|
173
|
+
263 => :cost9,
|
|
174
|
+
264 => :cost10,
|
|
175
|
+
265 => :date1,
|
|
176
|
+
266 => :date2,
|
|
177
|
+
267 => :date3,
|
|
178
|
+
268 => :date4,
|
|
179
|
+
269 => :date5,
|
|
180
|
+
270 => :date6,
|
|
181
|
+
271 => :date7,
|
|
182
|
+
272 => :date8,
|
|
183
|
+
273 => :date9,
|
|
184
|
+
274 => :date10,
|
|
185
|
+
275 => :duration4,
|
|
186
|
+
276 => :duration5,
|
|
187
|
+
277 => :duration6,
|
|
188
|
+
278 => :duration7,
|
|
189
|
+
279 => :duration8,
|
|
190
|
+
280 => :duration9,
|
|
191
|
+
281 => :duration10,
|
|
192
|
+
282 => :start6,
|
|
193
|
+
283 => :finish6,
|
|
194
|
+
284 => :start7,
|
|
195
|
+
285 => :finish7,
|
|
196
|
+
286 => :start8,
|
|
197
|
+
287 => :finish8,
|
|
198
|
+
288 => :start9,
|
|
199
|
+
289 => :finish9,
|
|
200
|
+
290 => :start10,
|
|
201
|
+
291 => :finish10,
|
|
202
|
+
292 => :flag11,
|
|
203
|
+
293 => :flag12,
|
|
204
|
+
294 => :flag13,
|
|
205
|
+
295 => :flag14,
|
|
206
|
+
296 => :flag15,
|
|
207
|
+
297 => :flag16,
|
|
208
|
+
298 => :flag17,
|
|
209
|
+
299 => :flag18,
|
|
210
|
+
300 => :flag19,
|
|
211
|
+
301 => :flag20,
|
|
212
|
+
302 => :number6,
|
|
213
|
+
303 => :number7,
|
|
214
|
+
304 => :number8,
|
|
215
|
+
305 => :number9,
|
|
216
|
+
306 => :number10,
|
|
217
|
+
307 => :number11,
|
|
218
|
+
308 => :number12,
|
|
219
|
+
309 => :number13,
|
|
220
|
+
310 => :number14,
|
|
221
|
+
311 => :number15,
|
|
222
|
+
312 => :number16,
|
|
223
|
+
313 => :number17,
|
|
224
|
+
314 => :number18,
|
|
225
|
+
315 => :number19,
|
|
226
|
+
316 => :number20,
|
|
227
|
+
317 => :text11,
|
|
228
|
+
318 => :text12,
|
|
229
|
+
319 => :text13,
|
|
230
|
+
320 => :text14,
|
|
231
|
+
321 => :text15,
|
|
232
|
+
322 => :text16,
|
|
233
|
+
323 => :text17,
|
|
234
|
+
324 => :text18,
|
|
235
|
+
325 => :text19,
|
|
236
|
+
326 => :text20,
|
|
237
|
+
327 => :text21,
|
|
238
|
+
328 => :text22,
|
|
239
|
+
329 => :text23,
|
|
240
|
+
330 => :text24,
|
|
241
|
+
331 => :text25,
|
|
242
|
+
332 => :text26,
|
|
243
|
+
333 => :text27,
|
|
244
|
+
334 => :text28,
|
|
245
|
+
335 => :text29,
|
|
246
|
+
336 => :text30,
|
|
247
|
+
337 => :duration4_units,
|
|
248
|
+
338 => :duration5_units,
|
|
249
|
+
339 => :duration6_units,
|
|
250
|
+
340 => :duration7_units,
|
|
251
|
+
341 => :duration8_units,
|
|
252
|
+
342 => :duration9_units,
|
|
253
|
+
343 => :duration10_units,
|
|
254
|
+
349 => :resource_phonetics,
|
|
255
|
+
360 => :index,
|
|
256
|
+
366 => :assignment_delay,
|
|
257
|
+
367 => :assignment_units,
|
|
258
|
+
368 => :cost_rate_table,
|
|
259
|
+
369 => :preleveled_start,
|
|
260
|
+
370 => :preleveled_finish,
|
|
261
|
+
372 => :summary_progress,
|
|
262
|
+
387 => :summary_progress,
|
|
263
|
+
396 => :estimated,
|
|
264
|
+
399 => :ignore_resource_calendar,
|
|
265
|
+
401 => :calendar_unique_id,
|
|
266
|
+
402 => :task_calendar,
|
|
267
|
+
403 => :duration1_estimated,
|
|
268
|
+
404 => :duration2_estimated,
|
|
269
|
+
405 => :duration3_estimated,
|
|
270
|
+
406 => :duration4_estimated,
|
|
271
|
+
407 => :duration5_estimated,
|
|
272
|
+
408 => :duration6_estimated,
|
|
273
|
+
409 => :duration7_estimated,
|
|
274
|
+
410 => :duration8_estimated,
|
|
275
|
+
411 => :duration9_estimated,
|
|
276
|
+
412 => :duration10_estimated,
|
|
277
|
+
413 => :baseline_duration_estimated,
|
|
278
|
+
416 => :outline_code1,
|
|
279
|
+
417 => :outline_code1_index,
|
|
280
|
+
418 => :outline_code2,
|
|
281
|
+
419 => :outline_code2_index,
|
|
282
|
+
420 => :outline_code3,
|
|
283
|
+
421 => :outline_code3_index,
|
|
284
|
+
422 => :outline_code4,
|
|
285
|
+
423 => :outline_code4_index,
|
|
286
|
+
424 => :outline_code5,
|
|
287
|
+
425 => :outline_code5_index,
|
|
288
|
+
426 => :outline_code6,
|
|
289
|
+
427 => :outline_code6_index,
|
|
290
|
+
428 => :outline_code7,
|
|
291
|
+
429 => :outline_code7_index,
|
|
292
|
+
430 => :outline_code8,
|
|
293
|
+
431 => :outline_code8_index,
|
|
294
|
+
432 => :outline_code9,
|
|
295
|
+
433 => :outline_code9_index,
|
|
296
|
+
434 => :outline_code10,
|
|
297
|
+
435 => :outline_code10_index,
|
|
298
|
+
437 => :deadline,
|
|
299
|
+
438 => :start_slack,
|
|
300
|
+
439 => :finish_slack,
|
|
301
|
+
441 => :vac,
|
|
302
|
+
446 => :group_by_summary,
|
|
303
|
+
449 => :wbs_predecessors,
|
|
304
|
+
450 => :wbs_successors,
|
|
305
|
+
451 => :resource_type,
|
|
306
|
+
452 => :hyperlink_screen_tip,
|
|
307
|
+
458 => :subproject_tasks_uniqueid_offset,
|
|
308
|
+
480 => :baseline_fixed_cost,
|
|
309
|
+
481 => :enterprise_data,
|
|
310
|
+
482 => :baseline1_estimated_start,
|
|
311
|
+
483 => :baseline1_estimated_finish,
|
|
312
|
+
484 => :baseline1_cost,
|
|
313
|
+
485 => :baseline1_work,
|
|
314
|
+
487 => :baseline1_estimated_duration,
|
|
315
|
+
488 => :baseline1_duration_units,
|
|
316
|
+
489 => :baseline1_fixed_cost,
|
|
317
|
+
493 => :baseline2_estimated_start,
|
|
318
|
+
494 => :baseline2_estimated_finish,
|
|
319
|
+
495 => :baseline2_cost,
|
|
320
|
+
496 => :baseline2_work,
|
|
321
|
+
498 => :baseline2_estimated_duration,
|
|
322
|
+
499 => :baseline2_duration_units,
|
|
323
|
+
500 => :baseline2_fixed_cost,
|
|
324
|
+
504 => :baseline3_estimated_start,
|
|
325
|
+
505 => :baseline3_estimated_finish,
|
|
326
|
+
506 => :baseline3_cost,
|
|
327
|
+
507 => :baseline3_work,
|
|
328
|
+
509 => :baseline3_estimated_duration,
|
|
329
|
+
510 => :baseline3_duration_units,
|
|
330
|
+
511 => :baseline3_fixed_cost,
|
|
331
|
+
515 => :baseline4_estimated_start,
|
|
332
|
+
516 => :baseline4_estimated_finish,
|
|
333
|
+
517 => :baseline4_cost,
|
|
334
|
+
518 => :baseline4_work,
|
|
335
|
+
520 => :baseline4_estimated_duration,
|
|
336
|
+
521 => :baseline4_duration_units,
|
|
337
|
+
522 => :baseline4_fixed_cost,
|
|
338
|
+
526 => :baseline5_estimated_start,
|
|
339
|
+
527 => :baseline5_estimated_finish,
|
|
340
|
+
528 => :baseline5_cost,
|
|
341
|
+
529 => :baseline5_work,
|
|
342
|
+
531 => :baseline5_estimated_duration,
|
|
343
|
+
532 => :baseline5_duration_units,
|
|
344
|
+
533 => :baseline5_fixed_cost,
|
|
345
|
+
537 => :cpi,
|
|
346
|
+
538 => :spi,
|
|
347
|
+
539 => :cvpercent,
|
|
348
|
+
540 => :svpercent,
|
|
349
|
+
541 => :eac,
|
|
350
|
+
542 => :tcpi,
|
|
351
|
+
543 => :status,
|
|
352
|
+
544 => :baseline6_estimated_start,
|
|
353
|
+
545 => :baseline6_estimated_finish,
|
|
354
|
+
546 => :baseline6_cost,
|
|
355
|
+
547 => :baseline6_work,
|
|
356
|
+
549 => :baseline6_estimated_duration,
|
|
357
|
+
550 => :baseline6_duration_units,
|
|
358
|
+
551 => :baseline6_fixed_cost,
|
|
359
|
+
555 => :baseline7_estimated_start,
|
|
360
|
+
556 => :baseline7_estimated_finish,
|
|
361
|
+
557 => :baseline7_cost,
|
|
362
|
+
558 => :baseline7_work,
|
|
363
|
+
560 => :baseline7_estimated_duration,
|
|
364
|
+
561 => :baseline7_duration_units,
|
|
365
|
+
562 => :baseline7_fixed_cost,
|
|
366
|
+
566 => :baseline8_estimated_start,
|
|
367
|
+
567 => :baseline8_estimated_finish,
|
|
368
|
+
568 => :baseline8_cost,
|
|
369
|
+
569 => :baseline8_work,
|
|
370
|
+
571 => :baseline8_estimated_duration,
|
|
371
|
+
572 => :baseline8_duration_units,
|
|
372
|
+
573 => :baseline8_fixed_cost,
|
|
373
|
+
577 => :baseline9_estimated_start,
|
|
374
|
+
578 => :baseline9_estimated_finish,
|
|
375
|
+
579 => :baseline9_cost,
|
|
376
|
+
580 => :baseline9_work,
|
|
377
|
+
582 => :baseline9_estimated_duration,
|
|
378
|
+
583 => :baseline9_duration_units,
|
|
379
|
+
584 => :baseline9_fixed_cost,
|
|
380
|
+
588 => :baseline10_estimated_start,
|
|
381
|
+
589 => :baseline10_estimated_finish,
|
|
382
|
+
590 => :baseline10_cost,
|
|
383
|
+
591 => :baseline10_work,
|
|
384
|
+
593 => :baseline10_estimated_duration,
|
|
385
|
+
594 => :baseline10_duration_units,
|
|
386
|
+
595 => :baseline10_fixed_cost,
|
|
387
|
+
599 => :enterprise_cost1,
|
|
388
|
+
600 => :enterprise_cost2,
|
|
389
|
+
601 => :enterprise_cost3,
|
|
390
|
+
602 => :enterprise_cost4,
|
|
391
|
+
603 => :enterprise_cost5,
|
|
392
|
+
604 => :enterprise_cost6,
|
|
393
|
+
605 => :enterprise_cost7,
|
|
394
|
+
606 => :enterprise_cost8,
|
|
395
|
+
607 => :enterprise_cost9,
|
|
396
|
+
608 => :enterprise_cost10,
|
|
397
|
+
609 => :enterprise_date1,
|
|
398
|
+
610 => :enterprise_date2,
|
|
399
|
+
611 => :enterprise_date3,
|
|
400
|
+
612 => :enterprise_date4,
|
|
401
|
+
613 => :enterprise_date5,
|
|
402
|
+
614 => :enterprise_date6,
|
|
403
|
+
615 => :enterprise_date7,
|
|
404
|
+
616 => :enterprise_date8,
|
|
405
|
+
617 => :enterprise_date9,
|
|
406
|
+
618 => :enterprise_date10,
|
|
407
|
+
619 => :enterprise_date11,
|
|
408
|
+
620 => :enterprise_date12,
|
|
409
|
+
621 => :enterprise_date13,
|
|
410
|
+
622 => :enterprise_date14,
|
|
411
|
+
623 => :enterprise_date15,
|
|
412
|
+
624 => :enterprise_date16,
|
|
413
|
+
625 => :enterprise_date17,
|
|
414
|
+
626 => :enterprise_date18,
|
|
415
|
+
627 => :enterprise_date19,
|
|
416
|
+
628 => :enterprise_date20,
|
|
417
|
+
629 => :enterprise_date21,
|
|
418
|
+
630 => :enterprise_date22,
|
|
419
|
+
631 => :enterprise_date23,
|
|
420
|
+
632 => :enterprise_date24,
|
|
421
|
+
633 => :enterprise_date25,
|
|
422
|
+
634 => :enterprise_date26,
|
|
423
|
+
635 => :enterprise_date27,
|
|
424
|
+
636 => :enterprise_date28,
|
|
425
|
+
637 => :enterprise_date29,
|
|
426
|
+
638 => :enterprise_date30,
|
|
427
|
+
639 => :enterprise_duration1,
|
|
428
|
+
640 => :enterprise_duration2,
|
|
429
|
+
641 => :enterprise_duration3,
|
|
430
|
+
642 => :enterprise_duration4,
|
|
431
|
+
643 => :enterprise_duration5,
|
|
432
|
+
644 => :enterprise_duration6,
|
|
433
|
+
645 => :enterprise_duration7,
|
|
434
|
+
646 => :enterprise_duration8,
|
|
435
|
+
647 => :enterprise_duration9,
|
|
436
|
+
648 => :enterprise_duration10,
|
|
437
|
+
649 => :enterprise_duration1_units,
|
|
438
|
+
650 => :enterprise_duration2_units,
|
|
439
|
+
651 => :enterprise_duration3_units,
|
|
440
|
+
652 => :enterprise_duration4_units,
|
|
441
|
+
653 => :enterprise_duration5_units,
|
|
442
|
+
654 => :enterprise_duration6_units,
|
|
443
|
+
655 => :enterprise_duration7_units,
|
|
444
|
+
656 => :enterprise_duration8_units,
|
|
445
|
+
657 => :enterprise_duration9_units,
|
|
446
|
+
658 => :enterprise_duration10_units,
|
|
447
|
+
659 => :enterprise_flag1,
|
|
448
|
+
660 => :enterprise_flag2,
|
|
449
|
+
661 => :enterprise_flag3,
|
|
450
|
+
662 => :enterprise_flag4,
|
|
451
|
+
663 => :enterprise_flag5,
|
|
452
|
+
664 => :enterprise_flag6,
|
|
453
|
+
665 => :enterprise_flag7,
|
|
454
|
+
666 => :enterprise_flag8,
|
|
455
|
+
667 => :enterprise_flag9,
|
|
456
|
+
668 => :enterprise_flag10,
|
|
457
|
+
669 => :enterprise_flag11,
|
|
458
|
+
670 => :enterprise_flag12,
|
|
459
|
+
671 => :enterprise_flag13,
|
|
460
|
+
672 => :enterprise_flag14,
|
|
461
|
+
673 => :enterprise_flag15,
|
|
462
|
+
674 => :enterprise_flag16,
|
|
463
|
+
675 => :enterprise_flag17,
|
|
464
|
+
676 => :enterprise_flag18,
|
|
465
|
+
677 => :enterprise_flag19,
|
|
466
|
+
678 => :enterprise_flag20,
|
|
467
|
+
699 => :enterprise_number1,
|
|
468
|
+
700 => :enterprise_number2,
|
|
469
|
+
701 => :enterprise_number3,
|
|
470
|
+
702 => :enterprise_number4,
|
|
471
|
+
703 => :enterprise_number5,
|
|
472
|
+
704 => :enterprise_number6,
|
|
473
|
+
705 => :enterprise_number7,
|
|
474
|
+
706 => :enterprise_number8,
|
|
475
|
+
707 => :enterprise_number9,
|
|
476
|
+
708 => :enterprise_number10,
|
|
477
|
+
709 => :enterprise_number11,
|
|
478
|
+
710 => :enterprise_number12,
|
|
479
|
+
711 => :enterprise_number13,
|
|
480
|
+
712 => :enterprise_number14,
|
|
481
|
+
713 => :enterprise_number15,
|
|
482
|
+
714 => :enterprise_number16,
|
|
483
|
+
715 => :enterprise_number17,
|
|
484
|
+
716 => :enterprise_number18,
|
|
485
|
+
717 => :enterprise_number19,
|
|
486
|
+
718 => :enterprise_number20,
|
|
487
|
+
719 => :enterprise_number21,
|
|
488
|
+
720 => :enterprise_number22,
|
|
489
|
+
721 => :enterprise_number23,
|
|
490
|
+
722 => :enterprise_number24,
|
|
491
|
+
723 => :enterprise_number25,
|
|
492
|
+
724 => :enterprise_number26,
|
|
493
|
+
725 => :enterprise_number27,
|
|
494
|
+
726 => :enterprise_number28,
|
|
495
|
+
727 => :enterprise_number29,
|
|
496
|
+
728 => :enterprise_number30,
|
|
497
|
+
729 => :enterprise_number31,
|
|
498
|
+
730 => :enterprise_number32,
|
|
499
|
+
731 => :enterprise_number33,
|
|
500
|
+
732 => :enterprise_number34,
|
|
501
|
+
733 => :enterprise_number35,
|
|
502
|
+
734 => :enterprise_number36,
|
|
503
|
+
735 => :enterprise_number37,
|
|
504
|
+
736 => :enterprise_number38,
|
|
505
|
+
737 => :enterprise_number39,
|
|
506
|
+
738 => :enterprise_number40,
|
|
507
|
+
739 => :enterprise_outline_code1,
|
|
508
|
+
741 => :enterprise_outline_code2,
|
|
509
|
+
743 => :enterprise_outline_code3,
|
|
510
|
+
745 => :enterprise_outline_code4,
|
|
511
|
+
747 => :enterprise_outline_code5,
|
|
512
|
+
749 => :enterprise_outline_code6,
|
|
513
|
+
751 => :enterprise_outline_code7,
|
|
514
|
+
753 => :enterprise_outline_code8,
|
|
515
|
+
755 => :enterprise_outline_code9,
|
|
516
|
+
757 => :enterprise_outline_code10,
|
|
517
|
+
759 => :enterprise_outline_code11,
|
|
518
|
+
761 => :enterprise_outline_code12,
|
|
519
|
+
763 => :enterprise_outline_code13,
|
|
520
|
+
765 => :enterprise_outline_code14,
|
|
521
|
+
767 => :enterprise_outline_code15,
|
|
522
|
+
769 => :enterprise_outline_code16,
|
|
523
|
+
771 => :enterprise_outline_code17,
|
|
524
|
+
773 => :enterprise_outline_code18,
|
|
525
|
+
775 => :enterprise_outline_code19,
|
|
526
|
+
777 => :enterprise_outline_code20,
|
|
527
|
+
779 => :enterprise_outline_code21,
|
|
528
|
+
781 => :enterprise_outline_code22,
|
|
529
|
+
783 => :enterprise_outline_code23,
|
|
530
|
+
785 => :enterprise_outline_code24,
|
|
531
|
+
787 => :enterprise_outline_code25,
|
|
532
|
+
789 => :enterprise_outline_code26,
|
|
533
|
+
791 => :enterprise_outline_code27,
|
|
534
|
+
793 => :enterprise_outline_code28,
|
|
535
|
+
795 => :enterprise_outline_code29,
|
|
536
|
+
797 => :enterprise_outline_code30,
|
|
537
|
+
799 => :enterprise_text1,
|
|
538
|
+
800 => :enterprise_text2,
|
|
539
|
+
801 => :enterprise_text3,
|
|
540
|
+
802 => :enterprise_text4,
|
|
541
|
+
803 => :enterprise_text5,
|
|
542
|
+
804 => :enterprise_text6,
|
|
543
|
+
805 => :enterprise_text7,
|
|
544
|
+
806 => :enterprise_text8,
|
|
545
|
+
807 => :enterprise_text9,
|
|
546
|
+
808 => :enterprise_text10,
|
|
547
|
+
809 => :enterprise_text11,
|
|
548
|
+
810 => :enterprise_text12,
|
|
549
|
+
811 => :enterprise_text13,
|
|
550
|
+
812 => :enterprise_text14,
|
|
551
|
+
813 => :enterprise_text15,
|
|
552
|
+
814 => :enterprise_text16,
|
|
553
|
+
815 => :enterprise_text17,
|
|
554
|
+
816 => :enterprise_text18,
|
|
555
|
+
817 => :enterprise_text19,
|
|
556
|
+
818 => :enterprise_text20,
|
|
557
|
+
819 => :enterprise_text21,
|
|
558
|
+
820 => :enterprise_text22,
|
|
559
|
+
821 => :enterprise_text23,
|
|
560
|
+
822 => :enterprise_text24,
|
|
561
|
+
823 => :enterprise_text25,
|
|
562
|
+
824 => :enterprise_text26,
|
|
563
|
+
825 => :enterprise_text27,
|
|
564
|
+
826 => :enterprise_text28,
|
|
565
|
+
827 => :enterprise_text29,
|
|
566
|
+
828 => :enterprise_text30,
|
|
567
|
+
829 => :enterprise_text31,
|
|
568
|
+
830 => :enterprise_text32,
|
|
569
|
+
831 => :enterprise_text33,
|
|
570
|
+
832 => :enterprise_text34,
|
|
571
|
+
833 => :enterprise_text35,
|
|
572
|
+
834 => :enterprise_text36,
|
|
573
|
+
835 => :enterprise_text37,
|
|
574
|
+
836 => :enterprise_text38,
|
|
575
|
+
837 => :enterprise_text39,
|
|
576
|
+
838 => :enterprise_text40,
|
|
577
|
+
839 => :baseline1_duration_estimated,
|
|
578
|
+
840 => :baseline2_duration_estimated,
|
|
579
|
+
841 => :baseline3_duration_estimated,
|
|
580
|
+
842 => :baseline4_duration_estimated,
|
|
581
|
+
843 => :baseline5_duration_estimated,
|
|
582
|
+
844 => :baseline6_duration_estimated,
|
|
583
|
+
845 => :baseline7_duration_estimated,
|
|
584
|
+
846 => :baseline8_duration_estimated,
|
|
585
|
+
847 => :baseline9_duration_estimated,
|
|
586
|
+
848 => :baseline10_duration_estimated,
|
|
587
|
+
849 => :enterprise_project_cost1,
|
|
588
|
+
850 => :enterprise_project_cost2,
|
|
589
|
+
851 => :enterprise_project_cost3,
|
|
590
|
+
852 => :enterprise_project_cost4,
|
|
591
|
+
853 => :enterprise_project_cost5,
|
|
592
|
+
854 => :enterprise_project_cost6,
|
|
593
|
+
855 => :enterprise_project_cost7,
|
|
594
|
+
856 => :enterprise_project_cost8,
|
|
595
|
+
857 => :enterprise_project_cost9,
|
|
596
|
+
858 => :enterprise_project_cost10,
|
|
597
|
+
859 => :enterprise_project_date1,
|
|
598
|
+
860 => :enterprise_project_date2,
|
|
599
|
+
861 => :enterprise_project_date3,
|
|
600
|
+
862 => :enterprise_project_date4,
|
|
601
|
+
863 => :enterprise_project_date5,
|
|
602
|
+
864 => :enterprise_project_date6,
|
|
603
|
+
865 => :enterprise_project_date7,
|
|
604
|
+
866 => :enterprise_project_date8,
|
|
605
|
+
867 => :enterprise_project_date9,
|
|
606
|
+
868 => :enterprise_project_date10,
|
|
607
|
+
869 => :enterprise_project_date11,
|
|
608
|
+
870 => :enterprise_project_date12,
|
|
609
|
+
871 => :enterprise_project_date13,
|
|
610
|
+
872 => :enterprise_project_date14,
|
|
611
|
+
873 => :enterprise_project_date15,
|
|
612
|
+
874 => :enterprise_project_date16,
|
|
613
|
+
875 => :enterprise_project_date17,
|
|
614
|
+
876 => :enterprise_project_date18,
|
|
615
|
+
877 => :enterprise_project_date19,
|
|
616
|
+
878 => :enterprise_project_date20,
|
|
617
|
+
879 => :enterprise_project_date21,
|
|
618
|
+
880 => :enterprise_project_date22,
|
|
619
|
+
881 => :enterprise_project_date23,
|
|
620
|
+
882 => :enterprise_project_date24,
|
|
621
|
+
883 => :enterprise_project_date25,
|
|
622
|
+
884 => :enterprise_project_date26,
|
|
623
|
+
885 => :enterprise_project_date27,
|
|
624
|
+
886 => :enterprise_project_date28,
|
|
625
|
+
887 => :enterprise_project_date29,
|
|
626
|
+
888 => :enterprise_project_date30,
|
|
627
|
+
889 => :enterprise_project_duration1,
|
|
628
|
+
890 => :enterprise_project_duration2,
|
|
629
|
+
891 => :enterprise_project_duration3,
|
|
630
|
+
892 => :enterprise_project_duration4,
|
|
631
|
+
893 => :enterprise_project_duration5,
|
|
632
|
+
894 => :enterprise_project_duration6,
|
|
633
|
+
895 => :enterprise_project_duration7,
|
|
634
|
+
896 => :enterprise_project_duration8,
|
|
635
|
+
897 => :enterprise_project_duration9,
|
|
636
|
+
898 => :enterprise_project_duration10,
|
|
637
|
+
909 => :enterprise_project_outline_code1,
|
|
638
|
+
910 => :enterprise_project_outline_code2,
|
|
639
|
+
911 => :enterprise_project_outline_code3,
|
|
640
|
+
912 => :enterprise_project_outline_code4,
|
|
641
|
+
913 => :enterprise_project_outline_code5,
|
|
642
|
+
914 => :enterprise_project_outline_code6,
|
|
643
|
+
915 => :enterprise_project_outline_code7,
|
|
644
|
+
916 => :enterprise_project_outline_code8,
|
|
645
|
+
917 => :enterprise_project_outline_code9,
|
|
646
|
+
918 => :enterprise_project_outline_code10,
|
|
647
|
+
919 => :enterprise_project_outline_code11,
|
|
648
|
+
920 => :enterprise_project_outline_code12,
|
|
649
|
+
921 => :enterprise_project_outline_code13,
|
|
650
|
+
922 => :enterprise_project_outline_code14,
|
|
651
|
+
923 => :enterprise_project_outline_code15,
|
|
652
|
+
924 => :enterprise_project_outline_code16,
|
|
653
|
+
925 => :enterprise_project_outline_code17,
|
|
654
|
+
926 => :enterprise_project_outline_code18,
|
|
655
|
+
927 => :enterprise_project_outline_code19,
|
|
656
|
+
928 => :enterprise_project_outline_code20,
|
|
657
|
+
929 => :enterprise_project_outline_code21,
|
|
658
|
+
930 => :enterprise_project_outline_code22,
|
|
659
|
+
931 => :enterprise_project_outline_code23,
|
|
660
|
+
932 => :enterprise_project_outline_code24,
|
|
661
|
+
933 => :enterprise_project_outline_code25,
|
|
662
|
+
934 => :enterprise_project_outline_code26,
|
|
663
|
+
935 => :enterprise_project_outline_code27,
|
|
664
|
+
936 => :enterprise_project_outline_code28,
|
|
665
|
+
937 => :enterprise_project_outline_code29,
|
|
666
|
+
938 => :enterprise_project_outline_code30,
|
|
667
|
+
969 => :enterprise_project_flag1,
|
|
668
|
+
970 => :enterprise_project_flag2,
|
|
669
|
+
971 => :enterprise_project_flag3,
|
|
670
|
+
972 => :enterprise_project_flag4,
|
|
671
|
+
973 => :enterprise_project_flag5,
|
|
672
|
+
974 => :enterprise_project_flag6,
|
|
673
|
+
975 => :enterprise_project_flag7,
|
|
674
|
+
976 => :enterprise_project_flag8,
|
|
675
|
+
977 => :enterprise_project_flag9,
|
|
676
|
+
978 => :enterprise_project_flag10,
|
|
677
|
+
979 => :enterprise_project_flag11,
|
|
678
|
+
980 => :enterprise_project_flag12,
|
|
679
|
+
981 => :enterprise_project_flag13,
|
|
680
|
+
982 => :enterprise_project_flag14,
|
|
681
|
+
983 => :enterprise_project_flag15,
|
|
682
|
+
984 => :enterprise_project_flag16,
|
|
683
|
+
985 => :enterprise_project_flag17,
|
|
684
|
+
986 => :enterprise_project_flag18,
|
|
685
|
+
987 => :enterprise_project_flag19,
|
|
686
|
+
988 => :enterprise_project_flag20,
|
|
687
|
+
1009 => :enterprise_project_number1,
|
|
688
|
+
1010 => :enterprise_project_number2,
|
|
689
|
+
1011 => :enterprise_project_number3,
|
|
690
|
+
1012 => :enterprise_project_number4,
|
|
691
|
+
1013 => :enterprise_project_number5,
|
|
692
|
+
1014 => :enterprise_project_number6,
|
|
693
|
+
1015 => :enterprise_project_number7,
|
|
694
|
+
1016 => :enterprise_project_number8,
|
|
695
|
+
1017 => :enterprise_project_number9,
|
|
696
|
+
1018 => :enterprise_project_number10,
|
|
697
|
+
1019 => :enterprise_project_number11,
|
|
698
|
+
1020 => :enterprise_project_number12,
|
|
699
|
+
1021 => :enterprise_project_number13,
|
|
700
|
+
1022 => :enterprise_project_number14,
|
|
701
|
+
1023 => :enterprise_project_number15,
|
|
702
|
+
1024 => :enterprise_project_number16,
|
|
703
|
+
1025 => :enterprise_project_number17,
|
|
704
|
+
1026 => :enterprise_project_number18,
|
|
705
|
+
1027 => :enterprise_project_number19,
|
|
706
|
+
1028 => :enterprise_project_number20,
|
|
707
|
+
1029 => :enterprise_project_number21,
|
|
708
|
+
1030 => :enterprise_project_number22,
|
|
709
|
+
1031 => :enterprise_project_number23,
|
|
710
|
+
1032 => :enterprise_project_number24,
|
|
711
|
+
1033 => :enterprise_project_number25,
|
|
712
|
+
1034 => :enterprise_project_number26,
|
|
713
|
+
1035 => :enterprise_project_number27,
|
|
714
|
+
1036 => :enterprise_project_number28,
|
|
715
|
+
1037 => :enterprise_project_number29,
|
|
716
|
+
1038 => :enterprise_project_number30,
|
|
717
|
+
1039 => :enterprise_project_number31,
|
|
718
|
+
1040 => :enterprise_project_number32,
|
|
719
|
+
1041 => :enterprise_project_number33,
|
|
720
|
+
1042 => :enterprise_project_number34,
|
|
721
|
+
1043 => :enterprise_project_number35,
|
|
722
|
+
1044 => :enterprise_project_number36,
|
|
723
|
+
1045 => :enterprise_project_number37,
|
|
724
|
+
1046 => :enterprise_project_number38,
|
|
725
|
+
1047 => :enterprise_project_number39,
|
|
726
|
+
1048 => :enterprise_project_number40,
|
|
727
|
+
1049 => :enterprise_project_text1,
|
|
728
|
+
1050 => :enterprise_project_text2,
|
|
729
|
+
1051 => :enterprise_project_text3,
|
|
730
|
+
1052 => :enterprise_project_text4,
|
|
731
|
+
1053 => :enterprise_project_text5,
|
|
732
|
+
1054 => :enterprise_project_text6,
|
|
733
|
+
1055 => :enterprise_project_text7,
|
|
734
|
+
1056 => :enterprise_project_text8,
|
|
735
|
+
1057 => :enterprise_project_text9,
|
|
736
|
+
1058 => :enterprise_project_text10,
|
|
737
|
+
1059 => :enterprise_project_text11,
|
|
738
|
+
1060 => :enterprise_project_text12,
|
|
739
|
+
1061 => :enterprise_project_text13,
|
|
740
|
+
1062 => :enterprise_project_text14,
|
|
741
|
+
1063 => :enterprise_project_text15,
|
|
742
|
+
1064 => :enterprise_project_text16,
|
|
743
|
+
1065 => :enterprise_project_text17,
|
|
744
|
+
1066 => :enterprise_project_text18,
|
|
745
|
+
1067 => :enterprise_project_text19,
|
|
746
|
+
1068 => :enterprise_project_text20,
|
|
747
|
+
1069 => :enterprise_project_text21,
|
|
748
|
+
1070 => :enterprise_project_text22,
|
|
749
|
+
1071 => :enterprise_project_text23,
|
|
750
|
+
1072 => :enterprise_project_text24,
|
|
751
|
+
1073 => :enterprise_project_text25,
|
|
752
|
+
1074 => :enterprise_project_text26,
|
|
753
|
+
1075 => :enterprise_project_text27,
|
|
754
|
+
1076 => :enterprise_project_text28,
|
|
755
|
+
1077 => :enterprise_project_text29,
|
|
756
|
+
1078 => :enterprise_project_text30,
|
|
757
|
+
1079 => :enterprise_project_text31,
|
|
758
|
+
1080 => :enterprise_project_text32,
|
|
759
|
+
1081 => :enterprise_project_text33,
|
|
760
|
+
1082 => :enterprise_project_text34,
|
|
761
|
+
1083 => :enterprise_project_text35,
|
|
762
|
+
1084 => :enterprise_project_text36,
|
|
763
|
+
1085 => :enterprise_project_text37,
|
|
764
|
+
1086 => :enterprise_project_text38,
|
|
765
|
+
1087 => :enterprise_project_text39,
|
|
766
|
+
1088 => :enterprise_project_text40,
|
|
767
|
+
1089 => :resource_enterprise_outline_code1,
|
|
768
|
+
1090 => :resource_enterprise_outline_code2,
|
|
769
|
+
1091 => :resource_enterprise_outline_code3,
|
|
770
|
+
1092 => :resource_enterprise_outline_code4,
|
|
771
|
+
1093 => :resource_enterprise_outline_code5,
|
|
772
|
+
1094 => :resource_enterprise_outline_code6,
|
|
773
|
+
1095 => :resource_enterprise_outline_code7,
|
|
774
|
+
1096 => :resource_enterprise_outline_code8,
|
|
775
|
+
1097 => :resource_enterprise_outline_code9,
|
|
776
|
+
1098 => :resource_enterprise_outline_code10,
|
|
777
|
+
1099 => :resource_enterprise_outline_code11,
|
|
778
|
+
1100 => :resource_enterprise_outline_code12,
|
|
779
|
+
1101 => :resource_enterprise_outline_code13,
|
|
780
|
+
1102 => :resource_enterprise_outline_code14,
|
|
781
|
+
1103 => :resource_enterprise_outline_code15,
|
|
782
|
+
1104 => :resource_enterprise_outline_code16,
|
|
783
|
+
1105 => :resource_enterprise_outline_code17,
|
|
784
|
+
1106 => :resource_enterprise_outline_code18,
|
|
785
|
+
1107 => :resource_enterprise_outline_code19,
|
|
786
|
+
1108 => :resource_enterprise_outline_code20,
|
|
787
|
+
1109 => :resource_enterprise_outline_code21,
|
|
788
|
+
1110 => :resource_enterprise_outline_code22,
|
|
789
|
+
1111 => :resource_enterprise_outline_code23,
|
|
790
|
+
1112 => :resource_enterprise_outline_code24,
|
|
791
|
+
1113 => :resource_enterprise_outline_code25,
|
|
792
|
+
1114 => :resource_enterprise_outline_code26,
|
|
793
|
+
1115 => :resource_enterprise_outline_code27,
|
|
794
|
+
1116 => :resource_enterprise_outline_code28,
|
|
795
|
+
1117 => :resource_enterprise_outline_code29,
|
|
796
|
+
1118 => :resource_enterprise_rbs,
|
|
797
|
+
1119 => :physical_percent_complete,
|
|
798
|
+
1120 => :request_demand,
|
|
799
|
+
1121 => :status_indicator,
|
|
800
|
+
1122 => :earned_value_method,
|
|
801
|
+
1129 => :resource_enterprise_multi_value_code20,
|
|
802
|
+
1130 => :resource_enterprise_multi_value_code21,
|
|
803
|
+
1131 => :resource_enterprise_multi_value_code22,
|
|
804
|
+
1132 => :resource_enterprise_multi_value_code23,
|
|
805
|
+
1133 => :resource_enterprise_multi_value_code24,
|
|
806
|
+
1134 => :resource_enterprise_multi_value_code25,
|
|
807
|
+
1135 => :resource_enterprise_multi_value_code26,
|
|
808
|
+
1136 => :resource_enterprise_multi_value_code27,
|
|
809
|
+
1137 => :resource_enterprise_multi_value_code28,
|
|
810
|
+
1138 => :resource_enterprise_multi_value_code29,
|
|
811
|
+
1139 => :actual_work_protected,
|
|
812
|
+
1140 => :actual_overtime_work_protected,
|
|
813
|
+
1143 => :guid,
|
|
814
|
+
1144 => :task_calendar_guid,
|
|
815
|
+
1146 => :deliverable_guid,
|
|
816
|
+
1147 => :deliverable_type,
|
|
817
|
+
1152 => :deliverable_start,
|
|
818
|
+
1153 => :deliverable_finish,
|
|
819
|
+
1165 => :publish,
|
|
820
|
+
1166 => :status_manager,
|
|
821
|
+
1167 => :error_message,
|
|
822
|
+
1169 => :subproject_guid,
|
|
823
|
+
1170 => :assignment_owner,
|
|
824
|
+
1171 => :budget_work,
|
|
825
|
+
1172 => :budget_cost,
|
|
826
|
+
1173 => :baseline_fixed_cost_accrual,
|
|
827
|
+
1174 => :baseline_deliverable_start,
|
|
828
|
+
1175 => :baseline_deliverable_finish,
|
|
829
|
+
1176 => :baseline_budget_work,
|
|
830
|
+
1177 => :baseline_budget_cost,
|
|
831
|
+
1180 => :baseline1_fixed_cost_accrual,
|
|
832
|
+
1181 => :baseline1_deliverable_start,
|
|
833
|
+
1182 => :baseline1_deliverable_finish,
|
|
834
|
+
1183 => :baseline1_budget_work,
|
|
835
|
+
1184 => :baseline1_budget_cost,
|
|
836
|
+
1187 => :baseline2_fixed_cost_accrual,
|
|
837
|
+
1188 => :baseline2_deliverable_start,
|
|
838
|
+
1189 => :baseline2_deliverable_finish,
|
|
839
|
+
1190 => :baseline2_budget_work,
|
|
840
|
+
1191 => :baseline2_budget_cost,
|
|
841
|
+
1194 => :baseline3_fixed_cost_accrual,
|
|
842
|
+
1195 => :baseline3_deliverable_start,
|
|
843
|
+
1196 => :baseline3_deliverable_finish,
|
|
844
|
+
1197 => :baseline3_budget_work,
|
|
845
|
+
1198 => :baseline3_budget_cost,
|
|
846
|
+
1201 => :baseline4_fixed_cost_accrual,
|
|
847
|
+
1202 => :baseline4_deliverable_start,
|
|
848
|
+
1203 => :baseline4_deliverable_finish,
|
|
849
|
+
1204 => :baseline4_budget_work,
|
|
850
|
+
1205 => :baseline4_budget_cost,
|
|
851
|
+
1208 => :baseline5_fixed_cost_accrual,
|
|
852
|
+
1209 => :baseline5_deliverable_start,
|
|
853
|
+
1210 => :baseline5_deliverable_finish,
|
|
854
|
+
1211 => :baseline5_budget_work,
|
|
855
|
+
1212 => :baseline5_budget_cost,
|
|
856
|
+
1215 => :baseline6_fixed_cost_accrual,
|
|
857
|
+
1216 => :baseline6_deliverable_start,
|
|
858
|
+
1217 => :baseline6_deliverable_finish,
|
|
859
|
+
1218 => :baseline6_budget_work,
|
|
860
|
+
1219 => :baseline6_budget_cost,
|
|
861
|
+
1222 => :baseline7_fixed_cost_accrual,
|
|
862
|
+
1223 => :baseline7_deliverable_start,
|
|
863
|
+
1224 => :baseline7_deliverable_finish,
|
|
864
|
+
1225 => :baseline7_budget_work,
|
|
865
|
+
1226 => :baseline7_budget_cost,
|
|
866
|
+
1229 => :baseline8_fixed_cost_accrual,
|
|
867
|
+
1230 => :baseline8_deliverable_start,
|
|
868
|
+
1231 => :baseline8_deliverable_finish,
|
|
869
|
+
1232 => :baseline8_budget_work,
|
|
870
|
+
1233 => :baseline8_budget_cost,
|
|
871
|
+
1236 => :baseline9_fixed_cost_accrual,
|
|
872
|
+
1237 => :baseline9_deliverable_start,
|
|
873
|
+
1238 => :baseline9_deliverable_finish,
|
|
874
|
+
1239 => :baseline9_budget_work,
|
|
875
|
+
1240 => :baseline9_budget_cost,
|
|
876
|
+
1243 => :baseline10_fixed_cost_accrual,
|
|
877
|
+
1244 => :baseline10_deliverable_start,
|
|
878
|
+
1245 => :baseline10_deliverable_finish,
|
|
879
|
+
1246 => :baseline10_budget_work,
|
|
880
|
+
1247 => :baseline10_budget_cost,
|
|
881
|
+
1250 => :recalc_outline_codes,
|
|
882
|
+
1276 => :deliverable_name,
|
|
883
|
+
1279 => :active,
|
|
884
|
+
1280 => :task_mode,
|
|
885
|
+
1281 => :placeholder,
|
|
886
|
+
1282 => :warning,
|
|
887
|
+
1283 => :start,
|
|
888
|
+
1284 => :finish,
|
|
889
|
+
1285 => :start_text,
|
|
890
|
+
1286 => :finish_text,
|
|
891
|
+
1287 => :duration_text,
|
|
892
|
+
1288 => :manual_duration,
|
|
893
|
+
1289 => :manual_duration_units,
|
|
894
|
+
1295 => :is_start_valid,
|
|
895
|
+
1296 => :is_finish_valid,
|
|
896
|
+
1297 => :is_duration_valid,
|
|
897
|
+
1299 => :baseline_start,
|
|
898
|
+
1300 => :baseline_finish,
|
|
899
|
+
1301 => :baseline_duration,
|
|
900
|
+
1302 => :baseline1_start,
|
|
901
|
+
1303 => :baseline1_finish,
|
|
902
|
+
1304 => :baseline1_duration,
|
|
903
|
+
1305 => :baseline2_start,
|
|
904
|
+
1306 => :baseline2_finish,
|
|
905
|
+
1307 => :baseline2_duration,
|
|
906
|
+
1308 => :baseline3_start,
|
|
907
|
+
1309 => :baseline3_finish,
|
|
908
|
+
1310 => :baseline3_duration,
|
|
909
|
+
1311 => :baseline4_start,
|
|
910
|
+
1312 => :baseline4_finish,
|
|
911
|
+
1313 => :baseline4_duration,
|
|
912
|
+
1314 => :baseline5_start,
|
|
913
|
+
1315 => :baseline5_finish,
|
|
914
|
+
1316 => :baseline5_duration,
|
|
915
|
+
1317 => :baseline6_start,
|
|
916
|
+
1318 => :baseline6_finish,
|
|
917
|
+
1319 => :baseline6_duration,
|
|
918
|
+
1320 => :baseline7_start,
|
|
919
|
+
1321 => :baseline7_finish,
|
|
920
|
+
1322 => :baseline7_duration,
|
|
921
|
+
1323 => :baseline8_start,
|
|
922
|
+
1324 => :baseline8_finish,
|
|
923
|
+
1325 => :baseline8_duration,
|
|
924
|
+
1326 => :baseline9_start,
|
|
925
|
+
1327 => :baseline9_finish,
|
|
926
|
+
1328 => :baseline9_duration,
|
|
927
|
+
1329 => :baseline10_start,
|
|
928
|
+
1330 => :baseline10_finish,
|
|
929
|
+
1331 => :baseline10_duration,
|
|
930
|
+
1332 => :ignore_warnings,
|
|
931
|
+
1335 => :peak,
|
|
932
|
+
1338 => :scheduled_start,
|
|
933
|
+
1339 => :scheduled_finish,
|
|
934
|
+
1340 => :scheduled_duration,
|
|
935
|
+
1381 => :path_driving_predecessor,
|
|
936
|
+
1382 => :path_predecessor,
|
|
937
|
+
1383 => :path_driven_successor,
|
|
938
|
+
1384 => :path_successor,
|
|
939
|
+
1405 => :task_summary_name,
|
|
940
|
+
1407 => :board_status,
|
|
941
|
+
1408 => :show_on_board,
|
|
942
|
+
1409 => :sprint,
|
|
943
|
+
1410 => :sprint_start,
|
|
944
|
+
1411 => :sprint_finish,
|
|
945
|
+
1412 => :board_status_id,
|
|
946
|
+
1413 => :sprint_id,
|
|
947
|
+
}.freeze
|
|
948
|
+
|
|
949
|
+
# field name => [data type, units field]
|
|
950
|
+
TASK_FIELD_TYPES = {
|
|
951
|
+
active: [:boolean, nil],
|
|
952
|
+
activity_code_values: [:activity_code_values, nil],
|
|
953
|
+
activity_id: [:string, nil],
|
|
954
|
+
activity_percent_complete: [:percentage, nil],
|
|
955
|
+
activity_status: [:activity_status, nil],
|
|
956
|
+
activity_type: [:activity_type, nil],
|
|
957
|
+
actual_cost: [:currency, nil],
|
|
958
|
+
actual_cost_expense: [:currency, nil],
|
|
959
|
+
actual_cost_labor: [:currency, nil],
|
|
960
|
+
actual_cost_material: [:currency, nil],
|
|
961
|
+
actual_cost_non_labor: [:currency, nil],
|
|
962
|
+
actual_duration: [:duration, :actual_duration_units],
|
|
963
|
+
actual_duration_units: [:time_units, nil],
|
|
964
|
+
actual_finish: [:date, nil],
|
|
965
|
+
actual_overtime_cost: [:currency, nil],
|
|
966
|
+
actual_overtime_work: [:work, nil],
|
|
967
|
+
actual_overtime_work_protected: [:work, nil],
|
|
968
|
+
actual_regular_cost: [:currency, nil],
|
|
969
|
+
actual_regular_work: [:work, nil],
|
|
970
|
+
actual_start: [:date, nil],
|
|
971
|
+
actual_work: [:work, nil],
|
|
972
|
+
actual_work_labor: [:duration, nil],
|
|
973
|
+
actual_work_nonlabor: [:duration, nil],
|
|
974
|
+
actual_work_protected: [:work, nil],
|
|
975
|
+
acwp: [:currency, nil],
|
|
976
|
+
assignment: [:boolean, nil],
|
|
977
|
+
assignment_delay: [:string, nil],
|
|
978
|
+
assignment_owner: [:string, nil],
|
|
979
|
+
assignment_units: [:string, nil],
|
|
980
|
+
auto_compute_actuals: [:boolean, nil],
|
|
981
|
+
bar_name: [:string, nil],
|
|
982
|
+
baseline10_budget_cost: [:currency, nil],
|
|
983
|
+
baseline10_budget_work: [:work, nil],
|
|
984
|
+
baseline10_cost: [:currency, nil],
|
|
985
|
+
baseline10_deliverable_finish: [:date, nil],
|
|
986
|
+
baseline10_deliverable_start: [:date, nil],
|
|
987
|
+
baseline10_duration: [:duration, :baseline10_duration_units],
|
|
988
|
+
baseline10_duration_estimated: [:boolean, nil],
|
|
989
|
+
baseline10_duration_units: [:time_units, nil],
|
|
990
|
+
baseline10_estimated_duration: [:duration, :baseline10_duration_units],
|
|
991
|
+
baseline10_estimated_finish: [:date, nil],
|
|
992
|
+
baseline10_estimated_start: [:date, nil],
|
|
993
|
+
baseline10_finish: [:date, nil],
|
|
994
|
+
baseline10_fixed_cost: [:currency, nil],
|
|
995
|
+
baseline10_fixed_cost_accrual: [:accrue, nil],
|
|
996
|
+
baseline10_start: [:date, nil],
|
|
997
|
+
baseline10_work: [:work, nil],
|
|
998
|
+
baseline1_budget_cost: [:currency, nil],
|
|
999
|
+
baseline1_budget_work: [:work, nil],
|
|
1000
|
+
baseline1_cost: [:currency, nil],
|
|
1001
|
+
baseline1_deliverable_finish: [:date, nil],
|
|
1002
|
+
baseline1_deliverable_start: [:date, nil],
|
|
1003
|
+
baseline1_duration: [:duration, :baseline1_duration_units],
|
|
1004
|
+
baseline1_duration_estimated: [:boolean, nil],
|
|
1005
|
+
baseline1_duration_units: [:time_units, nil],
|
|
1006
|
+
baseline1_estimated_duration: [:duration, :baseline1_duration_units],
|
|
1007
|
+
baseline1_estimated_finish: [:date, nil],
|
|
1008
|
+
baseline1_estimated_start: [:date, nil],
|
|
1009
|
+
baseline1_finish: [:date, nil],
|
|
1010
|
+
baseline1_fixed_cost: [:currency, nil],
|
|
1011
|
+
baseline1_fixed_cost_accrual: [:accrue, nil],
|
|
1012
|
+
baseline1_start: [:date, nil],
|
|
1013
|
+
baseline1_work: [:work, nil],
|
|
1014
|
+
baseline2_budget_cost: [:currency, nil],
|
|
1015
|
+
baseline2_budget_work: [:work, nil],
|
|
1016
|
+
baseline2_cost: [:currency, nil],
|
|
1017
|
+
baseline2_deliverable_finish: [:date, nil],
|
|
1018
|
+
baseline2_deliverable_start: [:date, nil],
|
|
1019
|
+
baseline2_duration: [:duration, :baseline2_duration_units],
|
|
1020
|
+
baseline2_duration_estimated: [:boolean, nil],
|
|
1021
|
+
baseline2_duration_units: [:time_units, nil],
|
|
1022
|
+
baseline2_estimated_duration: [:duration, :baseline2_duration_units],
|
|
1023
|
+
baseline2_estimated_finish: [:date, nil],
|
|
1024
|
+
baseline2_estimated_start: [:date, nil],
|
|
1025
|
+
baseline2_finish: [:date, nil],
|
|
1026
|
+
baseline2_fixed_cost: [:currency, nil],
|
|
1027
|
+
baseline2_fixed_cost_accrual: [:accrue, nil],
|
|
1028
|
+
baseline2_start: [:date, nil],
|
|
1029
|
+
baseline2_work: [:work, nil],
|
|
1030
|
+
baseline3_budget_cost: [:currency, nil],
|
|
1031
|
+
baseline3_budget_work: [:work, nil],
|
|
1032
|
+
baseline3_cost: [:currency, nil],
|
|
1033
|
+
baseline3_deliverable_finish: [:date, nil],
|
|
1034
|
+
baseline3_deliverable_start: [:date, nil],
|
|
1035
|
+
baseline3_duration: [:duration, :baseline3_duration_units],
|
|
1036
|
+
baseline3_duration_estimated: [:boolean, nil],
|
|
1037
|
+
baseline3_duration_units: [:time_units, nil],
|
|
1038
|
+
baseline3_estimated_duration: [:duration, :baseline3_duration_units],
|
|
1039
|
+
baseline3_estimated_finish: [:date, nil],
|
|
1040
|
+
baseline3_estimated_start: [:date, nil],
|
|
1041
|
+
baseline3_finish: [:date, nil],
|
|
1042
|
+
baseline3_fixed_cost: [:currency, nil],
|
|
1043
|
+
baseline3_fixed_cost_accrual: [:accrue, nil],
|
|
1044
|
+
baseline3_start: [:date, nil],
|
|
1045
|
+
baseline3_work: [:work, nil],
|
|
1046
|
+
baseline4_budget_cost: [:currency, nil],
|
|
1047
|
+
baseline4_budget_work: [:work, nil],
|
|
1048
|
+
baseline4_cost: [:currency, nil],
|
|
1049
|
+
baseline4_deliverable_finish: [:date, nil],
|
|
1050
|
+
baseline4_deliverable_start: [:date, nil],
|
|
1051
|
+
baseline4_duration: [:duration, :baseline4_duration_units],
|
|
1052
|
+
baseline4_duration_estimated: [:boolean, nil],
|
|
1053
|
+
baseline4_duration_units: [:time_units, nil],
|
|
1054
|
+
baseline4_estimated_duration: [:duration, :baseline4_duration_units],
|
|
1055
|
+
baseline4_estimated_finish: [:date, nil],
|
|
1056
|
+
baseline4_estimated_start: [:date, nil],
|
|
1057
|
+
baseline4_finish: [:date, nil],
|
|
1058
|
+
baseline4_fixed_cost: [:currency, nil],
|
|
1059
|
+
baseline4_fixed_cost_accrual: [:accrue, nil],
|
|
1060
|
+
baseline4_start: [:date, nil],
|
|
1061
|
+
baseline4_work: [:work, nil],
|
|
1062
|
+
baseline5_budget_cost: [:currency, nil],
|
|
1063
|
+
baseline5_budget_work: [:work, nil],
|
|
1064
|
+
baseline5_cost: [:currency, nil],
|
|
1065
|
+
baseline5_deliverable_finish: [:date, nil],
|
|
1066
|
+
baseline5_deliverable_start: [:date, nil],
|
|
1067
|
+
baseline5_duration: [:duration, :baseline5_duration_units],
|
|
1068
|
+
baseline5_duration_estimated: [:boolean, nil],
|
|
1069
|
+
baseline5_duration_units: [:time_units, nil],
|
|
1070
|
+
baseline5_estimated_duration: [:duration, :baseline5_duration_units],
|
|
1071
|
+
baseline5_estimated_finish: [:date, nil],
|
|
1072
|
+
baseline5_estimated_start: [:date, nil],
|
|
1073
|
+
baseline5_finish: [:date, nil],
|
|
1074
|
+
baseline5_fixed_cost: [:currency, nil],
|
|
1075
|
+
baseline5_fixed_cost_accrual: [:accrue, nil],
|
|
1076
|
+
baseline5_start: [:date, nil],
|
|
1077
|
+
baseline5_work: [:work, nil],
|
|
1078
|
+
baseline6_budget_cost: [:currency, nil],
|
|
1079
|
+
baseline6_budget_work: [:work, nil],
|
|
1080
|
+
baseline6_cost: [:currency, nil],
|
|
1081
|
+
baseline6_deliverable_finish: [:date, nil],
|
|
1082
|
+
baseline6_deliverable_start: [:date, nil],
|
|
1083
|
+
baseline6_duration: [:duration, :baseline6_duration_units],
|
|
1084
|
+
baseline6_duration_estimated: [:boolean, nil],
|
|
1085
|
+
baseline6_duration_units: [:time_units, nil],
|
|
1086
|
+
baseline6_estimated_duration: [:duration, :baseline6_duration_units],
|
|
1087
|
+
baseline6_estimated_finish: [:date, nil],
|
|
1088
|
+
baseline6_estimated_start: [:date, nil],
|
|
1089
|
+
baseline6_finish: [:date, nil],
|
|
1090
|
+
baseline6_fixed_cost: [:currency, nil],
|
|
1091
|
+
baseline6_fixed_cost_accrual: [:accrue, nil],
|
|
1092
|
+
baseline6_start: [:date, nil],
|
|
1093
|
+
baseline6_work: [:work, nil],
|
|
1094
|
+
baseline7_budget_cost: [:currency, nil],
|
|
1095
|
+
baseline7_budget_work: [:work, nil],
|
|
1096
|
+
baseline7_cost: [:currency, nil],
|
|
1097
|
+
baseline7_deliverable_finish: [:date, nil],
|
|
1098
|
+
baseline7_deliverable_start: [:date, nil],
|
|
1099
|
+
baseline7_duration: [:duration, :baseline7_duration_units],
|
|
1100
|
+
baseline7_duration_estimated: [:boolean, nil],
|
|
1101
|
+
baseline7_duration_units: [:time_units, nil],
|
|
1102
|
+
baseline7_estimated_duration: [:duration, :baseline7_duration_units],
|
|
1103
|
+
baseline7_estimated_finish: [:date, nil],
|
|
1104
|
+
baseline7_estimated_start: [:date, nil],
|
|
1105
|
+
baseline7_finish: [:date, nil],
|
|
1106
|
+
baseline7_fixed_cost: [:currency, nil],
|
|
1107
|
+
baseline7_fixed_cost_accrual: [:accrue, nil],
|
|
1108
|
+
baseline7_start: [:date, nil],
|
|
1109
|
+
baseline7_work: [:work, nil],
|
|
1110
|
+
baseline8_budget_cost: [:currency, nil],
|
|
1111
|
+
baseline8_budget_work: [:work, nil],
|
|
1112
|
+
baseline8_cost: [:currency, nil],
|
|
1113
|
+
baseline8_deliverable_finish: [:date, nil],
|
|
1114
|
+
baseline8_deliverable_start: [:date, nil],
|
|
1115
|
+
baseline8_duration: [:duration, :baseline8_duration_units],
|
|
1116
|
+
baseline8_duration_estimated: [:boolean, nil],
|
|
1117
|
+
baseline8_duration_units: [:time_units, nil],
|
|
1118
|
+
baseline8_estimated_duration: [:duration, :baseline8_duration_units],
|
|
1119
|
+
baseline8_estimated_finish: [:date, nil],
|
|
1120
|
+
baseline8_estimated_start: [:date, nil],
|
|
1121
|
+
baseline8_finish: [:date, nil],
|
|
1122
|
+
baseline8_fixed_cost: [:currency, nil],
|
|
1123
|
+
baseline8_fixed_cost_accrual: [:accrue, nil],
|
|
1124
|
+
baseline8_start: [:date, nil],
|
|
1125
|
+
baseline8_work: [:work, nil],
|
|
1126
|
+
baseline9_budget_cost: [:currency, nil],
|
|
1127
|
+
baseline9_budget_work: [:work, nil],
|
|
1128
|
+
baseline9_cost: [:currency, nil],
|
|
1129
|
+
baseline9_deliverable_finish: [:date, nil],
|
|
1130
|
+
baseline9_deliverable_start: [:date, nil],
|
|
1131
|
+
baseline9_duration: [:duration, :baseline9_duration_units],
|
|
1132
|
+
baseline9_duration_estimated: [:boolean, nil],
|
|
1133
|
+
baseline9_duration_units: [:time_units, nil],
|
|
1134
|
+
baseline9_estimated_duration: [:duration, :baseline9_duration_units],
|
|
1135
|
+
baseline9_estimated_finish: [:date, nil],
|
|
1136
|
+
baseline9_estimated_start: [:date, nil],
|
|
1137
|
+
baseline9_finish: [:date, nil],
|
|
1138
|
+
baseline9_fixed_cost: [:currency, nil],
|
|
1139
|
+
baseline9_fixed_cost_accrual: [:accrue, nil],
|
|
1140
|
+
baseline9_start: [:date, nil],
|
|
1141
|
+
baseline9_work: [:work, nil],
|
|
1142
|
+
baseline_budget_cost: [:currency, nil],
|
|
1143
|
+
baseline_budget_work: [:work, nil],
|
|
1144
|
+
baseline_cost: [:currency, nil],
|
|
1145
|
+
baseline_deliverable_finish: [:date, nil],
|
|
1146
|
+
baseline_deliverable_start: [:date, nil],
|
|
1147
|
+
baseline_duration: [:duration, :baseline_duration_units],
|
|
1148
|
+
baseline_duration_estimated: [:boolean, nil],
|
|
1149
|
+
baseline_duration_units: [:time_units, nil],
|
|
1150
|
+
baseline_estimated_duration: [:duration, :baseline_duration_units],
|
|
1151
|
+
baseline_estimated_finish: [:date, nil],
|
|
1152
|
+
baseline_estimated_start: [:date, nil],
|
|
1153
|
+
baseline_finish: [:date, nil],
|
|
1154
|
+
baseline_fixed_cost: [:currency, nil],
|
|
1155
|
+
baseline_fixed_cost_accrual: [:accrue, nil],
|
|
1156
|
+
baseline_start: [:date, nil],
|
|
1157
|
+
baseline_work: [:work, nil],
|
|
1158
|
+
bcwp: [:currency, nil],
|
|
1159
|
+
bcws: [:currency, nil],
|
|
1160
|
+
bid_item: [:string, nil],
|
|
1161
|
+
board_status: [:string, nil],
|
|
1162
|
+
board_status_id: [:integer, nil],
|
|
1163
|
+
budget_cost: [:currency, nil],
|
|
1164
|
+
budget_work: [:work, nil],
|
|
1165
|
+
calendar_unique_id: [:integer, nil],
|
|
1166
|
+
category_of_work: [:string, nil],
|
|
1167
|
+
complete_through: [:date, nil],
|
|
1168
|
+
confirmed: [:boolean, nil],
|
|
1169
|
+
constraint_date: [:date, nil],
|
|
1170
|
+
constraint_type: [:constraint, nil],
|
|
1171
|
+
contact: [:string, nil],
|
|
1172
|
+
cost: [:currency, nil],
|
|
1173
|
+
cost1: [:currency, nil],
|
|
1174
|
+
cost10: [:currency, nil],
|
|
1175
|
+
cost2: [:currency, nil],
|
|
1176
|
+
cost3: [:currency, nil],
|
|
1177
|
+
cost4: [:currency, nil],
|
|
1178
|
+
cost5: [:currency, nil],
|
|
1179
|
+
cost6: [:currency, nil],
|
|
1180
|
+
cost7: [:currency, nil],
|
|
1181
|
+
cost8: [:currency, nil],
|
|
1182
|
+
cost9: [:currency, nil],
|
|
1183
|
+
cost_rate_table: [:string, nil],
|
|
1184
|
+
cost_variance: [:currency, nil],
|
|
1185
|
+
cpi: [:numeric, nil],
|
|
1186
|
+
created: [:date, nil],
|
|
1187
|
+
critical: [:boolean, nil],
|
|
1188
|
+
cv: [:currency, nil],
|
|
1189
|
+
cvpercent: [:percentage, nil],
|
|
1190
|
+
date1: [:date, nil],
|
|
1191
|
+
date10: [:date, nil],
|
|
1192
|
+
date2: [:date, nil],
|
|
1193
|
+
date3: [:date, nil],
|
|
1194
|
+
date4: [:date, nil],
|
|
1195
|
+
date5: [:date, nil],
|
|
1196
|
+
date6: [:date, nil],
|
|
1197
|
+
date7: [:date, nil],
|
|
1198
|
+
date8: [:date, nil],
|
|
1199
|
+
date9: [:date, nil],
|
|
1200
|
+
deadline: [:date, nil],
|
|
1201
|
+
deliverable_finish: [:date, nil],
|
|
1202
|
+
deliverable_guid: [:guid, nil],
|
|
1203
|
+
deliverable_name: [:string, nil],
|
|
1204
|
+
deliverable_start: [:date, nil],
|
|
1205
|
+
deliverable_type: [:string, nil],
|
|
1206
|
+
department: [:string, nil],
|
|
1207
|
+
duration: [:duration, :actual_duration_units],
|
|
1208
|
+
duration1: [:duration, :duration1_units],
|
|
1209
|
+
duration10: [:duration, :duration10_units],
|
|
1210
|
+
duration10_estimated: [:boolean, nil],
|
|
1211
|
+
duration10_units: [:time_units, nil],
|
|
1212
|
+
duration1_estimated: [:boolean, nil],
|
|
1213
|
+
duration1_units: [:time_units, nil],
|
|
1214
|
+
duration2: [:duration, :duration2_units],
|
|
1215
|
+
duration2_estimated: [:boolean, nil],
|
|
1216
|
+
duration2_units: [:time_units, nil],
|
|
1217
|
+
duration3: [:duration, :duration3_units],
|
|
1218
|
+
duration3_estimated: [:boolean, nil],
|
|
1219
|
+
duration3_units: [:time_units, nil],
|
|
1220
|
+
duration4: [:duration, :duration4_units],
|
|
1221
|
+
duration4_estimated: [:boolean, nil],
|
|
1222
|
+
duration4_units: [:time_units, nil],
|
|
1223
|
+
duration5: [:duration, :duration5_units],
|
|
1224
|
+
duration5_estimated: [:boolean, nil],
|
|
1225
|
+
duration5_units: [:time_units, nil],
|
|
1226
|
+
duration6: [:duration, :duration6_units],
|
|
1227
|
+
duration6_estimated: [:boolean, nil],
|
|
1228
|
+
duration6_units: [:time_units, nil],
|
|
1229
|
+
duration7: [:duration, :duration7_units],
|
|
1230
|
+
duration7_estimated: [:boolean, nil],
|
|
1231
|
+
duration7_units: [:time_units, nil],
|
|
1232
|
+
duration8: [:duration, :duration8_units],
|
|
1233
|
+
duration8_estimated: [:boolean, nil],
|
|
1234
|
+
duration8_units: [:time_units, nil],
|
|
1235
|
+
duration9: [:duration, :duration9_units],
|
|
1236
|
+
duration9_estimated: [:boolean, nil],
|
|
1237
|
+
duration9_units: [:time_units, nil],
|
|
1238
|
+
duration_text: [:string, nil],
|
|
1239
|
+
duration_units: [:time_units, nil],
|
|
1240
|
+
duration_variance: [:duration, nil],
|
|
1241
|
+
eac: [:currency, nil],
|
|
1242
|
+
early_finish: [:date, nil],
|
|
1243
|
+
early_start: [:date, nil],
|
|
1244
|
+
earned_value_method: [:earned_value_method, nil],
|
|
1245
|
+
effort_driven: [:boolean, nil],
|
|
1246
|
+
enterprise_cost1: [:currency, nil],
|
|
1247
|
+
enterprise_cost10: [:currency, nil],
|
|
1248
|
+
enterprise_cost2: [:currency, nil],
|
|
1249
|
+
enterprise_cost3: [:currency, nil],
|
|
1250
|
+
enterprise_cost4: [:currency, nil],
|
|
1251
|
+
enterprise_cost5: [:currency, nil],
|
|
1252
|
+
enterprise_cost6: [:currency, nil],
|
|
1253
|
+
enterprise_cost7: [:currency, nil],
|
|
1254
|
+
enterprise_cost8: [:currency, nil],
|
|
1255
|
+
enterprise_cost9: [:currency, nil],
|
|
1256
|
+
enterprise_data: [:binary, nil],
|
|
1257
|
+
enterprise_date1: [:date, nil],
|
|
1258
|
+
enterprise_date10: [:date, nil],
|
|
1259
|
+
enterprise_date11: [:date, nil],
|
|
1260
|
+
enterprise_date12: [:date, nil],
|
|
1261
|
+
enterprise_date13: [:date, nil],
|
|
1262
|
+
enterprise_date14: [:date, nil],
|
|
1263
|
+
enterprise_date15: [:date, nil],
|
|
1264
|
+
enterprise_date16: [:date, nil],
|
|
1265
|
+
enterprise_date17: [:date, nil],
|
|
1266
|
+
enterprise_date18: [:date, nil],
|
|
1267
|
+
enterprise_date19: [:date, nil],
|
|
1268
|
+
enterprise_date2: [:date, nil],
|
|
1269
|
+
enterprise_date20: [:date, nil],
|
|
1270
|
+
enterprise_date21: [:date, nil],
|
|
1271
|
+
enterprise_date22: [:date, nil],
|
|
1272
|
+
enterprise_date23: [:date, nil],
|
|
1273
|
+
enterprise_date24: [:date, nil],
|
|
1274
|
+
enterprise_date25: [:date, nil],
|
|
1275
|
+
enterprise_date26: [:date, nil],
|
|
1276
|
+
enterprise_date27: [:date, nil],
|
|
1277
|
+
enterprise_date28: [:date, nil],
|
|
1278
|
+
enterprise_date29: [:date, nil],
|
|
1279
|
+
enterprise_date3: [:date, nil],
|
|
1280
|
+
enterprise_date30: [:date, nil],
|
|
1281
|
+
enterprise_date4: [:date, nil],
|
|
1282
|
+
enterprise_date5: [:date, nil],
|
|
1283
|
+
enterprise_date6: [:date, nil],
|
|
1284
|
+
enterprise_date7: [:date, nil],
|
|
1285
|
+
enterprise_date8: [:date, nil],
|
|
1286
|
+
enterprise_date9: [:date, nil],
|
|
1287
|
+
enterprise_duration1: [:duration, :enterprise_duration1_units],
|
|
1288
|
+
enterprise_duration10: [:duration, :enterprise_duration10_units],
|
|
1289
|
+
enterprise_duration10_units: [:time_units, nil],
|
|
1290
|
+
enterprise_duration1_units: [:time_units, nil],
|
|
1291
|
+
enterprise_duration2: [:duration, :enterprise_duration2_units],
|
|
1292
|
+
enterprise_duration2_units: [:time_units, nil],
|
|
1293
|
+
enterprise_duration3: [:duration, :enterprise_duration3_units],
|
|
1294
|
+
enterprise_duration3_units: [:time_units, nil],
|
|
1295
|
+
enterprise_duration4: [:duration, :enterprise_duration4_units],
|
|
1296
|
+
enterprise_duration4_units: [:time_units, nil],
|
|
1297
|
+
enterprise_duration5: [:duration, :enterprise_duration5_units],
|
|
1298
|
+
enterprise_duration5_units: [:time_units, nil],
|
|
1299
|
+
enterprise_duration6: [:duration, :enterprise_duration6_units],
|
|
1300
|
+
enterprise_duration6_units: [:time_units, nil],
|
|
1301
|
+
enterprise_duration7: [:duration, :enterprise_duration7_units],
|
|
1302
|
+
enterprise_duration7_units: [:time_units, nil],
|
|
1303
|
+
enterprise_duration8: [:duration, :enterprise_duration8_units],
|
|
1304
|
+
enterprise_duration8_units: [:time_units, nil],
|
|
1305
|
+
enterprise_duration9: [:duration, :enterprise_duration9_units],
|
|
1306
|
+
enterprise_duration9_units: [:time_units, nil],
|
|
1307
|
+
enterprise_flag1: [:boolean, nil],
|
|
1308
|
+
enterprise_flag10: [:boolean, nil],
|
|
1309
|
+
enterprise_flag11: [:boolean, nil],
|
|
1310
|
+
enterprise_flag12: [:boolean, nil],
|
|
1311
|
+
enterprise_flag13: [:boolean, nil],
|
|
1312
|
+
enterprise_flag14: [:boolean, nil],
|
|
1313
|
+
enterprise_flag15: [:boolean, nil],
|
|
1314
|
+
enterprise_flag16: [:boolean, nil],
|
|
1315
|
+
enterprise_flag17: [:boolean, nil],
|
|
1316
|
+
enterprise_flag18: [:boolean, nil],
|
|
1317
|
+
enterprise_flag19: [:boolean, nil],
|
|
1318
|
+
enterprise_flag2: [:boolean, nil],
|
|
1319
|
+
enterprise_flag20: [:boolean, nil],
|
|
1320
|
+
enterprise_flag3: [:boolean, nil],
|
|
1321
|
+
enterprise_flag4: [:boolean, nil],
|
|
1322
|
+
enterprise_flag5: [:boolean, nil],
|
|
1323
|
+
enterprise_flag6: [:boolean, nil],
|
|
1324
|
+
enterprise_flag7: [:boolean, nil],
|
|
1325
|
+
enterprise_flag8: [:boolean, nil],
|
|
1326
|
+
enterprise_flag9: [:boolean, nil],
|
|
1327
|
+
enterprise_number1: [:numeric, nil],
|
|
1328
|
+
enterprise_number10: [:numeric, nil],
|
|
1329
|
+
enterprise_number11: [:numeric, nil],
|
|
1330
|
+
enterprise_number12: [:numeric, nil],
|
|
1331
|
+
enterprise_number13: [:numeric, nil],
|
|
1332
|
+
enterprise_number14: [:numeric, nil],
|
|
1333
|
+
enterprise_number15: [:numeric, nil],
|
|
1334
|
+
enterprise_number16: [:numeric, nil],
|
|
1335
|
+
enterprise_number17: [:numeric, nil],
|
|
1336
|
+
enterprise_number18: [:numeric, nil],
|
|
1337
|
+
enterprise_number19: [:numeric, nil],
|
|
1338
|
+
enterprise_number2: [:numeric, nil],
|
|
1339
|
+
enterprise_number20: [:numeric, nil],
|
|
1340
|
+
enterprise_number21: [:numeric, nil],
|
|
1341
|
+
enterprise_number22: [:numeric, nil],
|
|
1342
|
+
enterprise_number23: [:numeric, nil],
|
|
1343
|
+
enterprise_number24: [:numeric, nil],
|
|
1344
|
+
enterprise_number25: [:numeric, nil],
|
|
1345
|
+
enterprise_number26: [:numeric, nil],
|
|
1346
|
+
enterprise_number27: [:numeric, nil],
|
|
1347
|
+
enterprise_number28: [:numeric, nil],
|
|
1348
|
+
enterprise_number29: [:numeric, nil],
|
|
1349
|
+
enterprise_number3: [:numeric, nil],
|
|
1350
|
+
enterprise_number30: [:numeric, nil],
|
|
1351
|
+
enterprise_number31: [:numeric, nil],
|
|
1352
|
+
enterprise_number32: [:numeric, nil],
|
|
1353
|
+
enterprise_number33: [:numeric, nil],
|
|
1354
|
+
enterprise_number34: [:numeric, nil],
|
|
1355
|
+
enterprise_number35: [:numeric, nil],
|
|
1356
|
+
enterprise_number36: [:numeric, nil],
|
|
1357
|
+
enterprise_number37: [:numeric, nil],
|
|
1358
|
+
enterprise_number38: [:numeric, nil],
|
|
1359
|
+
enterprise_number39: [:numeric, nil],
|
|
1360
|
+
enterprise_number4: [:numeric, nil],
|
|
1361
|
+
enterprise_number40: [:numeric, nil],
|
|
1362
|
+
enterprise_number5: [:numeric, nil],
|
|
1363
|
+
enterprise_number6: [:numeric, nil],
|
|
1364
|
+
enterprise_number7: [:numeric, nil],
|
|
1365
|
+
enterprise_number8: [:numeric, nil],
|
|
1366
|
+
enterprise_number9: [:numeric, nil],
|
|
1367
|
+
enterprise_outline_code1: [:string, nil],
|
|
1368
|
+
enterprise_outline_code10: [:string, nil],
|
|
1369
|
+
enterprise_outline_code11: [:string, nil],
|
|
1370
|
+
enterprise_outline_code12: [:string, nil],
|
|
1371
|
+
enterprise_outline_code13: [:string, nil],
|
|
1372
|
+
enterprise_outline_code14: [:string, nil],
|
|
1373
|
+
enterprise_outline_code15: [:string, nil],
|
|
1374
|
+
enterprise_outline_code16: [:string, nil],
|
|
1375
|
+
enterprise_outline_code17: [:string, nil],
|
|
1376
|
+
enterprise_outline_code18: [:string, nil],
|
|
1377
|
+
enterprise_outline_code19: [:string, nil],
|
|
1378
|
+
enterprise_outline_code2: [:string, nil],
|
|
1379
|
+
enterprise_outline_code20: [:string, nil],
|
|
1380
|
+
enterprise_outline_code21: [:string, nil],
|
|
1381
|
+
enterprise_outline_code22: [:string, nil],
|
|
1382
|
+
enterprise_outline_code23: [:string, nil],
|
|
1383
|
+
enterprise_outline_code24: [:string, nil],
|
|
1384
|
+
enterprise_outline_code25: [:string, nil],
|
|
1385
|
+
enterprise_outline_code26: [:string, nil],
|
|
1386
|
+
enterprise_outline_code27: [:string, nil],
|
|
1387
|
+
enterprise_outline_code28: [:string, nil],
|
|
1388
|
+
enterprise_outline_code29: [:string, nil],
|
|
1389
|
+
enterprise_outline_code3: [:string, nil],
|
|
1390
|
+
enterprise_outline_code30: [:string, nil],
|
|
1391
|
+
enterprise_outline_code4: [:string, nil],
|
|
1392
|
+
enterprise_outline_code5: [:string, nil],
|
|
1393
|
+
enterprise_outline_code6: [:string, nil],
|
|
1394
|
+
enterprise_outline_code7: [:string, nil],
|
|
1395
|
+
enterprise_outline_code8: [:string, nil],
|
|
1396
|
+
enterprise_outline_code9: [:string, nil],
|
|
1397
|
+
enterprise_project_cost1: [:currency, nil],
|
|
1398
|
+
enterprise_project_cost10: [:currency, nil],
|
|
1399
|
+
enterprise_project_cost2: [:currency, nil],
|
|
1400
|
+
enterprise_project_cost3: [:currency, nil],
|
|
1401
|
+
enterprise_project_cost4: [:currency, nil],
|
|
1402
|
+
enterprise_project_cost5: [:currency, nil],
|
|
1403
|
+
enterprise_project_cost6: [:currency, nil],
|
|
1404
|
+
enterprise_project_cost7: [:currency, nil],
|
|
1405
|
+
enterprise_project_cost8: [:currency, nil],
|
|
1406
|
+
enterprise_project_cost9: [:currency, nil],
|
|
1407
|
+
enterprise_project_date1: [:date, nil],
|
|
1408
|
+
enterprise_project_date10: [:date, nil],
|
|
1409
|
+
enterprise_project_date11: [:date, nil],
|
|
1410
|
+
enterprise_project_date12: [:date, nil],
|
|
1411
|
+
enterprise_project_date13: [:date, nil],
|
|
1412
|
+
enterprise_project_date14: [:date, nil],
|
|
1413
|
+
enterprise_project_date15: [:date, nil],
|
|
1414
|
+
enterprise_project_date16: [:date, nil],
|
|
1415
|
+
enterprise_project_date17: [:date, nil],
|
|
1416
|
+
enterprise_project_date18: [:date, nil],
|
|
1417
|
+
enterprise_project_date19: [:date, nil],
|
|
1418
|
+
enterprise_project_date2: [:date, nil],
|
|
1419
|
+
enterprise_project_date20: [:date, nil],
|
|
1420
|
+
enterprise_project_date21: [:date, nil],
|
|
1421
|
+
enterprise_project_date22: [:date, nil],
|
|
1422
|
+
enterprise_project_date23: [:date, nil],
|
|
1423
|
+
enterprise_project_date24: [:date, nil],
|
|
1424
|
+
enterprise_project_date25: [:date, nil],
|
|
1425
|
+
enterprise_project_date26: [:date, nil],
|
|
1426
|
+
enterprise_project_date27: [:date, nil],
|
|
1427
|
+
enterprise_project_date28: [:date, nil],
|
|
1428
|
+
enterprise_project_date29: [:date, nil],
|
|
1429
|
+
enterprise_project_date3: [:date, nil],
|
|
1430
|
+
enterprise_project_date30: [:date, nil],
|
|
1431
|
+
enterprise_project_date4: [:date, nil],
|
|
1432
|
+
enterprise_project_date5: [:date, nil],
|
|
1433
|
+
enterprise_project_date6: [:date, nil],
|
|
1434
|
+
enterprise_project_date7: [:date, nil],
|
|
1435
|
+
enterprise_project_date8: [:date, nil],
|
|
1436
|
+
enterprise_project_date9: [:date, nil],
|
|
1437
|
+
enterprise_project_duration1: [:duration, nil],
|
|
1438
|
+
enterprise_project_duration10: [:duration, nil],
|
|
1439
|
+
enterprise_project_duration2: [:duration, nil],
|
|
1440
|
+
enterprise_project_duration3: [:duration, nil],
|
|
1441
|
+
enterprise_project_duration4: [:duration, nil],
|
|
1442
|
+
enterprise_project_duration5: [:duration, nil],
|
|
1443
|
+
enterprise_project_duration6: [:duration, nil],
|
|
1444
|
+
enterprise_project_duration7: [:duration, nil],
|
|
1445
|
+
enterprise_project_duration8: [:duration, nil],
|
|
1446
|
+
enterprise_project_duration9: [:duration, nil],
|
|
1447
|
+
enterprise_project_flag1: [:boolean, nil],
|
|
1448
|
+
enterprise_project_flag10: [:boolean, nil],
|
|
1449
|
+
enterprise_project_flag11: [:boolean, nil],
|
|
1450
|
+
enterprise_project_flag12: [:boolean, nil],
|
|
1451
|
+
enterprise_project_flag13: [:boolean, nil],
|
|
1452
|
+
enterprise_project_flag14: [:boolean, nil],
|
|
1453
|
+
enterprise_project_flag15: [:boolean, nil],
|
|
1454
|
+
enterprise_project_flag16: [:boolean, nil],
|
|
1455
|
+
enterprise_project_flag17: [:boolean, nil],
|
|
1456
|
+
enterprise_project_flag18: [:boolean, nil],
|
|
1457
|
+
enterprise_project_flag19: [:boolean, nil],
|
|
1458
|
+
enterprise_project_flag2: [:boolean, nil],
|
|
1459
|
+
enterprise_project_flag20: [:boolean, nil],
|
|
1460
|
+
enterprise_project_flag3: [:boolean, nil],
|
|
1461
|
+
enterprise_project_flag4: [:boolean, nil],
|
|
1462
|
+
enterprise_project_flag5: [:boolean, nil],
|
|
1463
|
+
enterprise_project_flag6: [:boolean, nil],
|
|
1464
|
+
enterprise_project_flag7: [:boolean, nil],
|
|
1465
|
+
enterprise_project_flag8: [:boolean, nil],
|
|
1466
|
+
enterprise_project_flag9: [:boolean, nil],
|
|
1467
|
+
enterprise_project_number1: [:numeric, nil],
|
|
1468
|
+
enterprise_project_number10: [:numeric, nil],
|
|
1469
|
+
enterprise_project_number11: [:numeric, nil],
|
|
1470
|
+
enterprise_project_number12: [:numeric, nil],
|
|
1471
|
+
enterprise_project_number13: [:numeric, nil],
|
|
1472
|
+
enterprise_project_number14: [:numeric, nil],
|
|
1473
|
+
enterprise_project_number15: [:numeric, nil],
|
|
1474
|
+
enterprise_project_number16: [:numeric, nil],
|
|
1475
|
+
enterprise_project_number17: [:numeric, nil],
|
|
1476
|
+
enterprise_project_number18: [:numeric, nil],
|
|
1477
|
+
enterprise_project_number19: [:numeric, nil],
|
|
1478
|
+
enterprise_project_number2: [:numeric, nil],
|
|
1479
|
+
enterprise_project_number20: [:numeric, nil],
|
|
1480
|
+
enterprise_project_number21: [:numeric, nil],
|
|
1481
|
+
enterprise_project_number22: [:numeric, nil],
|
|
1482
|
+
enterprise_project_number23: [:numeric, nil],
|
|
1483
|
+
enterprise_project_number24: [:numeric, nil],
|
|
1484
|
+
enterprise_project_number25: [:numeric, nil],
|
|
1485
|
+
enterprise_project_number26: [:numeric, nil],
|
|
1486
|
+
enterprise_project_number27: [:numeric, nil],
|
|
1487
|
+
enterprise_project_number28: [:numeric, nil],
|
|
1488
|
+
enterprise_project_number29: [:numeric, nil],
|
|
1489
|
+
enterprise_project_number3: [:numeric, nil],
|
|
1490
|
+
enterprise_project_number30: [:numeric, nil],
|
|
1491
|
+
enterprise_project_number31: [:numeric, nil],
|
|
1492
|
+
enterprise_project_number32: [:numeric, nil],
|
|
1493
|
+
enterprise_project_number33: [:numeric, nil],
|
|
1494
|
+
enterprise_project_number34: [:numeric, nil],
|
|
1495
|
+
enterprise_project_number35: [:numeric, nil],
|
|
1496
|
+
enterprise_project_number36: [:numeric, nil],
|
|
1497
|
+
enterprise_project_number37: [:numeric, nil],
|
|
1498
|
+
enterprise_project_number38: [:numeric, nil],
|
|
1499
|
+
enterprise_project_number39: [:numeric, nil],
|
|
1500
|
+
enterprise_project_number4: [:numeric, nil],
|
|
1501
|
+
enterprise_project_number40: [:numeric, nil],
|
|
1502
|
+
enterprise_project_number5: [:numeric, nil],
|
|
1503
|
+
enterprise_project_number6: [:numeric, nil],
|
|
1504
|
+
enterprise_project_number7: [:numeric, nil],
|
|
1505
|
+
enterprise_project_number8: [:numeric, nil],
|
|
1506
|
+
enterprise_project_number9: [:numeric, nil],
|
|
1507
|
+
enterprise_project_outline_code1: [:string, nil],
|
|
1508
|
+
enterprise_project_outline_code10: [:string, nil],
|
|
1509
|
+
enterprise_project_outline_code11: [:string, nil],
|
|
1510
|
+
enterprise_project_outline_code12: [:string, nil],
|
|
1511
|
+
enterprise_project_outline_code13: [:string, nil],
|
|
1512
|
+
enterprise_project_outline_code14: [:string, nil],
|
|
1513
|
+
enterprise_project_outline_code15: [:string, nil],
|
|
1514
|
+
enterprise_project_outline_code16: [:string, nil],
|
|
1515
|
+
enterprise_project_outline_code17: [:string, nil],
|
|
1516
|
+
enterprise_project_outline_code18: [:string, nil],
|
|
1517
|
+
enterprise_project_outline_code19: [:string, nil],
|
|
1518
|
+
enterprise_project_outline_code2: [:string, nil],
|
|
1519
|
+
enterprise_project_outline_code20: [:string, nil],
|
|
1520
|
+
enterprise_project_outline_code21: [:string, nil],
|
|
1521
|
+
enterprise_project_outline_code22: [:string, nil],
|
|
1522
|
+
enterprise_project_outline_code23: [:string, nil],
|
|
1523
|
+
enterprise_project_outline_code24: [:string, nil],
|
|
1524
|
+
enterprise_project_outline_code25: [:string, nil],
|
|
1525
|
+
enterprise_project_outline_code26: [:string, nil],
|
|
1526
|
+
enterprise_project_outline_code27: [:string, nil],
|
|
1527
|
+
enterprise_project_outline_code28: [:string, nil],
|
|
1528
|
+
enterprise_project_outline_code29: [:string, nil],
|
|
1529
|
+
enterprise_project_outline_code3: [:string, nil],
|
|
1530
|
+
enterprise_project_outline_code30: [:string, nil],
|
|
1531
|
+
enterprise_project_outline_code4: [:string, nil],
|
|
1532
|
+
enterprise_project_outline_code5: [:string, nil],
|
|
1533
|
+
enterprise_project_outline_code6: [:string, nil],
|
|
1534
|
+
enterprise_project_outline_code7: [:string, nil],
|
|
1535
|
+
enterprise_project_outline_code8: [:string, nil],
|
|
1536
|
+
enterprise_project_outline_code9: [:string, nil],
|
|
1537
|
+
enterprise_project_text1: [:string, nil],
|
|
1538
|
+
enterprise_project_text10: [:string, nil],
|
|
1539
|
+
enterprise_project_text11: [:string, nil],
|
|
1540
|
+
enterprise_project_text12: [:string, nil],
|
|
1541
|
+
enterprise_project_text13: [:string, nil],
|
|
1542
|
+
enterprise_project_text14: [:string, nil],
|
|
1543
|
+
enterprise_project_text15: [:string, nil],
|
|
1544
|
+
enterprise_project_text16: [:string, nil],
|
|
1545
|
+
enterprise_project_text17: [:string, nil],
|
|
1546
|
+
enterprise_project_text18: [:string, nil],
|
|
1547
|
+
enterprise_project_text19: [:string, nil],
|
|
1548
|
+
enterprise_project_text2: [:string, nil],
|
|
1549
|
+
enterprise_project_text20: [:string, nil],
|
|
1550
|
+
enterprise_project_text21: [:string, nil],
|
|
1551
|
+
enterprise_project_text22: [:string, nil],
|
|
1552
|
+
enterprise_project_text23: [:string, nil],
|
|
1553
|
+
enterprise_project_text24: [:string, nil],
|
|
1554
|
+
enterprise_project_text25: [:string, nil],
|
|
1555
|
+
enterprise_project_text26: [:string, nil],
|
|
1556
|
+
enterprise_project_text27: [:string, nil],
|
|
1557
|
+
enterprise_project_text28: [:string, nil],
|
|
1558
|
+
enterprise_project_text29: [:string, nil],
|
|
1559
|
+
enterprise_project_text3: [:string, nil],
|
|
1560
|
+
enterprise_project_text30: [:string, nil],
|
|
1561
|
+
enterprise_project_text31: [:string, nil],
|
|
1562
|
+
enterprise_project_text32: [:string, nil],
|
|
1563
|
+
enterprise_project_text33: [:string, nil],
|
|
1564
|
+
enterprise_project_text34: [:string, nil],
|
|
1565
|
+
enterprise_project_text35: [:string, nil],
|
|
1566
|
+
enterprise_project_text36: [:string, nil],
|
|
1567
|
+
enterprise_project_text37: [:string, nil],
|
|
1568
|
+
enterprise_project_text38: [:string, nil],
|
|
1569
|
+
enterprise_project_text39: [:string, nil],
|
|
1570
|
+
enterprise_project_text4: [:string, nil],
|
|
1571
|
+
enterprise_project_text40: [:string, nil],
|
|
1572
|
+
enterprise_project_text5: [:string, nil],
|
|
1573
|
+
enterprise_project_text6: [:string, nil],
|
|
1574
|
+
enterprise_project_text7: [:string, nil],
|
|
1575
|
+
enterprise_project_text8: [:string, nil],
|
|
1576
|
+
enterprise_project_text9: [:string, nil],
|
|
1577
|
+
enterprise_text1: [:string, nil],
|
|
1578
|
+
enterprise_text10: [:string, nil],
|
|
1579
|
+
enterprise_text11: [:string, nil],
|
|
1580
|
+
enterprise_text12: [:string, nil],
|
|
1581
|
+
enterprise_text13: [:string, nil],
|
|
1582
|
+
enterprise_text14: [:string, nil],
|
|
1583
|
+
enterprise_text15: [:string, nil],
|
|
1584
|
+
enterprise_text16: [:string, nil],
|
|
1585
|
+
enterprise_text17: [:string, nil],
|
|
1586
|
+
enterprise_text18: [:string, nil],
|
|
1587
|
+
enterprise_text19: [:string, nil],
|
|
1588
|
+
enterprise_text2: [:string, nil],
|
|
1589
|
+
enterprise_text20: [:string, nil],
|
|
1590
|
+
enterprise_text21: [:string, nil],
|
|
1591
|
+
enterprise_text22: [:string, nil],
|
|
1592
|
+
enterprise_text23: [:string, nil],
|
|
1593
|
+
enterprise_text24: [:string, nil],
|
|
1594
|
+
enterprise_text25: [:string, nil],
|
|
1595
|
+
enterprise_text26: [:string, nil],
|
|
1596
|
+
enterprise_text27: [:string, nil],
|
|
1597
|
+
enterprise_text28: [:string, nil],
|
|
1598
|
+
enterprise_text29: [:string, nil],
|
|
1599
|
+
enterprise_text3: [:string, nil],
|
|
1600
|
+
enterprise_text30: [:string, nil],
|
|
1601
|
+
enterprise_text31: [:string, nil],
|
|
1602
|
+
enterprise_text32: [:string, nil],
|
|
1603
|
+
enterprise_text33: [:string, nil],
|
|
1604
|
+
enterprise_text34: [:string, nil],
|
|
1605
|
+
enterprise_text35: [:string, nil],
|
|
1606
|
+
enterprise_text36: [:string, nil],
|
|
1607
|
+
enterprise_text37: [:string, nil],
|
|
1608
|
+
enterprise_text38: [:string, nil],
|
|
1609
|
+
enterprise_text39: [:string, nil],
|
|
1610
|
+
enterprise_text4: [:string, nil],
|
|
1611
|
+
enterprise_text40: [:string, nil],
|
|
1612
|
+
enterprise_text5: [:string, nil],
|
|
1613
|
+
enterprise_text6: [:string, nil],
|
|
1614
|
+
enterprise_text7: [:string, nil],
|
|
1615
|
+
enterprise_text8: [:string, nil],
|
|
1616
|
+
enterprise_text9: [:string, nil],
|
|
1617
|
+
error_message: [:string, nil],
|
|
1618
|
+
estimated: [:boolean, nil],
|
|
1619
|
+
estimated_weight: [:numeric, nil],
|
|
1620
|
+
expanded: [:boolean, nil],
|
|
1621
|
+
expected_finish: [:date, nil],
|
|
1622
|
+
expense_items: [:expense_item_list, nil],
|
|
1623
|
+
external_early_start: [:date, nil],
|
|
1624
|
+
external_late_finish: [:date, nil],
|
|
1625
|
+
external_project: [:boolean, nil],
|
|
1626
|
+
external_task: [:boolean, nil],
|
|
1627
|
+
feature_of_work: [:string, nil],
|
|
1628
|
+
finish: [:date, nil],
|
|
1629
|
+
finish1: [:date, nil],
|
|
1630
|
+
finish10: [:date, nil],
|
|
1631
|
+
finish2: [:date, nil],
|
|
1632
|
+
finish3: [:date, nil],
|
|
1633
|
+
finish4: [:date, nil],
|
|
1634
|
+
finish5: [:date, nil],
|
|
1635
|
+
finish6: [:date, nil],
|
|
1636
|
+
finish7: [:date, nil],
|
|
1637
|
+
finish8: [:date, nil],
|
|
1638
|
+
finish9: [:date, nil],
|
|
1639
|
+
finish_slack: [:duration, :actual_duration_units],
|
|
1640
|
+
finish_text: [:string, nil],
|
|
1641
|
+
finish_variance: [:duration, nil],
|
|
1642
|
+
fixed_cost: [:currency, nil],
|
|
1643
|
+
fixed_cost_accrual: [:accrue, nil],
|
|
1644
|
+
fixed_duration: [:boolean, nil],
|
|
1645
|
+
flag1: [:boolean, nil],
|
|
1646
|
+
flag10: [:boolean, nil],
|
|
1647
|
+
flag11: [:boolean, nil],
|
|
1648
|
+
flag12: [:boolean, nil],
|
|
1649
|
+
flag13: [:boolean, nil],
|
|
1650
|
+
flag14: [:boolean, nil],
|
|
1651
|
+
flag15: [:boolean, nil],
|
|
1652
|
+
flag16: [:boolean, nil],
|
|
1653
|
+
flag17: [:boolean, nil],
|
|
1654
|
+
flag18: [:boolean, nil],
|
|
1655
|
+
flag19: [:boolean, nil],
|
|
1656
|
+
flag2: [:boolean, nil],
|
|
1657
|
+
flag20: [:boolean, nil],
|
|
1658
|
+
flag3: [:boolean, nil],
|
|
1659
|
+
flag4: [:boolean, nil],
|
|
1660
|
+
flag5: [:boolean, nil],
|
|
1661
|
+
flag6: [:boolean, nil],
|
|
1662
|
+
flag7: [:boolean, nil],
|
|
1663
|
+
flag8: [:boolean, nil],
|
|
1664
|
+
flag9: [:boolean, nil],
|
|
1665
|
+
float_path: [:integer, nil],
|
|
1666
|
+
float_path_order: [:integer, nil],
|
|
1667
|
+
free_slack: [:duration, :actual_duration_units],
|
|
1668
|
+
group_by_summary: [:string, nil],
|
|
1669
|
+
guid: [:guid, nil],
|
|
1670
|
+
hammock_code: [:boolean, nil],
|
|
1671
|
+
hide_bar: [:boolean, nil],
|
|
1672
|
+
hyperlink: [:string, nil],
|
|
1673
|
+
hyperlink_address: [:string, nil],
|
|
1674
|
+
hyperlink_data: [:binary, nil],
|
|
1675
|
+
hyperlink_href: [:string, nil],
|
|
1676
|
+
hyperlink_screen_tip: [:string, nil],
|
|
1677
|
+
hyperlink_subaddress: [:string, nil],
|
|
1678
|
+
id: [:integer, nil],
|
|
1679
|
+
ignore_resource_calendar: [:boolean, nil],
|
|
1680
|
+
ignore_warnings: [:boolean, nil],
|
|
1681
|
+
index: [:integer, nil],
|
|
1682
|
+
indicators: [:string, nil],
|
|
1683
|
+
is_duration_valid: [:boolean, nil],
|
|
1684
|
+
is_finish_valid: [:boolean, nil],
|
|
1685
|
+
is_start_valid: [:boolean, nil],
|
|
1686
|
+
late_finish: [:date, nil],
|
|
1687
|
+
late_start: [:date, nil],
|
|
1688
|
+
level_assignments: [:boolean, nil],
|
|
1689
|
+
leveling_can_split: [:boolean, nil],
|
|
1690
|
+
leveling_delay: [:duration, :leveling_delay_units],
|
|
1691
|
+
leveling_delay_units: [:time_units, nil],
|
|
1692
|
+
linked_fields: [:boolean, nil],
|
|
1693
|
+
location_unique_id: [:integer, nil],
|
|
1694
|
+
longest_path: [:boolean, nil],
|
|
1695
|
+
mail: [:string, nil],
|
|
1696
|
+
manager: [:string, nil],
|
|
1697
|
+
manual_duration: [:duration, :manual_duration_units],
|
|
1698
|
+
manual_duration_units: [:time_units, nil],
|
|
1699
|
+
marked: [:boolean, nil],
|
|
1700
|
+
methodology_guid: [:guid, nil],
|
|
1701
|
+
milestone: [:boolean, nil],
|
|
1702
|
+
mod_or_claim_number: [:string, nil],
|
|
1703
|
+
name: [:string, nil],
|
|
1704
|
+
notes: [:notes, nil],
|
|
1705
|
+
null: [:boolean, nil],
|
|
1706
|
+
number1: [:numeric, nil],
|
|
1707
|
+
number10: [:numeric, nil],
|
|
1708
|
+
number11: [:numeric, nil],
|
|
1709
|
+
number12: [:numeric, nil],
|
|
1710
|
+
number13: [:numeric, nil],
|
|
1711
|
+
number14: [:numeric, nil],
|
|
1712
|
+
number15: [:numeric, nil],
|
|
1713
|
+
number16: [:numeric, nil],
|
|
1714
|
+
number17: [:numeric, nil],
|
|
1715
|
+
number18: [:numeric, nil],
|
|
1716
|
+
number19: [:numeric, nil],
|
|
1717
|
+
number2: [:numeric, nil],
|
|
1718
|
+
number20: [:numeric, nil],
|
|
1719
|
+
number3: [:numeric, nil],
|
|
1720
|
+
number4: [:numeric, nil],
|
|
1721
|
+
number5: [:numeric, nil],
|
|
1722
|
+
number6: [:numeric, nil],
|
|
1723
|
+
number7: [:numeric, nil],
|
|
1724
|
+
number8: [:numeric, nil],
|
|
1725
|
+
number9: [:numeric, nil],
|
|
1726
|
+
objects: [:numeric, nil],
|
|
1727
|
+
original_budget: [:currency, nil],
|
|
1728
|
+
outline_code1: [:string, nil],
|
|
1729
|
+
outline_code10: [:string, nil],
|
|
1730
|
+
outline_code10_index: [:integer, nil],
|
|
1731
|
+
outline_code1_index: [:integer, nil],
|
|
1732
|
+
outline_code2: [:string, nil],
|
|
1733
|
+
outline_code2_index: [:integer, nil],
|
|
1734
|
+
outline_code3: [:string, nil],
|
|
1735
|
+
outline_code3_index: [:integer, nil],
|
|
1736
|
+
outline_code4: [:string, nil],
|
|
1737
|
+
outline_code4_index: [:integer, nil],
|
|
1738
|
+
outline_code5: [:string, nil],
|
|
1739
|
+
outline_code5_index: [:integer, nil],
|
|
1740
|
+
outline_code6: [:string, nil],
|
|
1741
|
+
outline_code6_index: [:integer, nil],
|
|
1742
|
+
outline_code7: [:string, nil],
|
|
1743
|
+
outline_code7_index: [:integer, nil],
|
|
1744
|
+
outline_code8: [:string, nil],
|
|
1745
|
+
outline_code8_index: [:integer, nil],
|
|
1746
|
+
outline_code9: [:string, nil],
|
|
1747
|
+
outline_code9_index: [:integer, nil],
|
|
1748
|
+
outline_level: [:short, nil],
|
|
1749
|
+
outline_number: [:string, nil],
|
|
1750
|
+
overall_percent_complete: [:percentage, nil],
|
|
1751
|
+
overallocated: [:boolean, nil],
|
|
1752
|
+
overtime_cost: [:currency, nil],
|
|
1753
|
+
overtime_work: [:duration, nil],
|
|
1754
|
+
parent_task_unique_id: [:integer, nil],
|
|
1755
|
+
path_driven_successor: [:boolean, nil],
|
|
1756
|
+
path_driving_predecessor: [:boolean, nil],
|
|
1757
|
+
path_predecessor: [:boolean, nil],
|
|
1758
|
+
path_successor: [:boolean, nil],
|
|
1759
|
+
peak: [:units, nil],
|
|
1760
|
+
percent_complete: [:percentage, nil],
|
|
1761
|
+
percent_complete_type: [:percent_complete_type, nil],
|
|
1762
|
+
percent_work_complete: [:percentage, nil],
|
|
1763
|
+
phase_of_work: [:string, nil],
|
|
1764
|
+
physical_percent_complete: [:percentage, nil],
|
|
1765
|
+
placeholder: [:boolean, nil],
|
|
1766
|
+
planned_cost: [:currency, nil],
|
|
1767
|
+
planned_cost_expense: [:currency, nil],
|
|
1768
|
+
planned_cost_labor: [:currency, nil],
|
|
1769
|
+
planned_cost_material: [:currency, nil],
|
|
1770
|
+
planned_cost_non_labor: [:currency, nil],
|
|
1771
|
+
planned_duration: [:duration, nil],
|
|
1772
|
+
planned_finish: [:date, nil],
|
|
1773
|
+
planned_start: [:date, nil],
|
|
1774
|
+
planned_work: [:work, nil],
|
|
1775
|
+
planned_work_labor: [:duration, nil],
|
|
1776
|
+
planned_work_nonlabor: [:duration, nil],
|
|
1777
|
+
predecessors: [:relation_list, nil],
|
|
1778
|
+
preleveled_finish: [:date, nil],
|
|
1779
|
+
preleveled_start: [:date, nil],
|
|
1780
|
+
primary_resource_unique_id: [:integer, nil],
|
|
1781
|
+
priority: [:priority, nil],
|
|
1782
|
+
project: [:string, nil],
|
|
1783
|
+
publish: [:boolean, nil],
|
|
1784
|
+
recalc_outline_codes: [:boolean, nil],
|
|
1785
|
+
recurring: [:boolean, nil],
|
|
1786
|
+
recurring_data: [:binary, nil],
|
|
1787
|
+
regular_work: [:duration, nil],
|
|
1788
|
+
remaining_cost: [:currency, nil],
|
|
1789
|
+
remaining_cost_expense: [:currency, nil],
|
|
1790
|
+
remaining_cost_labor: [:currency, nil],
|
|
1791
|
+
remaining_cost_material: [:currency, nil],
|
|
1792
|
+
remaining_cost_non_labor: [:currency, nil],
|
|
1793
|
+
remaining_duration: [:duration, :actual_duration_units],
|
|
1794
|
+
remaining_early_finish: [:date, nil],
|
|
1795
|
+
remaining_early_start: [:date, nil],
|
|
1796
|
+
remaining_late_finish: [:date, nil],
|
|
1797
|
+
remaining_late_start: [:date, nil],
|
|
1798
|
+
remaining_overtime_cost: [:currency, nil],
|
|
1799
|
+
remaining_overtime_work: [:work, nil],
|
|
1800
|
+
remaining_regular_cost: [:currency, nil],
|
|
1801
|
+
remaining_regular_work: [:work, nil],
|
|
1802
|
+
remaining_work: [:work, nil],
|
|
1803
|
+
remaining_work_labor: [:duration, nil],
|
|
1804
|
+
remaining_work_nonlabor: [:duration, nil],
|
|
1805
|
+
request_demand: [:string, nil],
|
|
1806
|
+
resource_enterprise_multi_value_code20: [:string, nil],
|
|
1807
|
+
resource_enterprise_multi_value_code21: [:string, nil],
|
|
1808
|
+
resource_enterprise_multi_value_code22: [:string, nil],
|
|
1809
|
+
resource_enterprise_multi_value_code23: [:string, nil],
|
|
1810
|
+
resource_enterprise_multi_value_code24: [:string, nil],
|
|
1811
|
+
resource_enterprise_multi_value_code25: [:string, nil],
|
|
1812
|
+
resource_enterprise_multi_value_code26: [:string, nil],
|
|
1813
|
+
resource_enterprise_multi_value_code27: [:string, nil],
|
|
1814
|
+
resource_enterprise_multi_value_code28: [:string, nil],
|
|
1815
|
+
resource_enterprise_multi_value_code29: [:string, nil],
|
|
1816
|
+
resource_enterprise_outline_code1: [:string, nil],
|
|
1817
|
+
resource_enterprise_outline_code10: [:string, nil],
|
|
1818
|
+
resource_enterprise_outline_code11: [:string, nil],
|
|
1819
|
+
resource_enterprise_outline_code12: [:string, nil],
|
|
1820
|
+
resource_enterprise_outline_code13: [:string, nil],
|
|
1821
|
+
resource_enterprise_outline_code14: [:string, nil],
|
|
1822
|
+
resource_enterprise_outline_code15: [:string, nil],
|
|
1823
|
+
resource_enterprise_outline_code16: [:string, nil],
|
|
1824
|
+
resource_enterprise_outline_code17: [:string, nil],
|
|
1825
|
+
resource_enterprise_outline_code18: [:string, nil],
|
|
1826
|
+
resource_enterprise_outline_code19: [:string, nil],
|
|
1827
|
+
resource_enterprise_outline_code2: [:string, nil],
|
|
1828
|
+
resource_enterprise_outline_code20: [:string, nil],
|
|
1829
|
+
resource_enterprise_outline_code21: [:string, nil],
|
|
1830
|
+
resource_enterprise_outline_code22: [:string, nil],
|
|
1831
|
+
resource_enterprise_outline_code23: [:string, nil],
|
|
1832
|
+
resource_enterprise_outline_code24: [:string, nil],
|
|
1833
|
+
resource_enterprise_outline_code25: [:string, nil],
|
|
1834
|
+
resource_enterprise_outline_code26: [:string, nil],
|
|
1835
|
+
resource_enterprise_outline_code27: [:string, nil],
|
|
1836
|
+
resource_enterprise_outline_code28: [:string, nil],
|
|
1837
|
+
resource_enterprise_outline_code29: [:string, nil],
|
|
1838
|
+
resource_enterprise_outline_code3: [:string, nil],
|
|
1839
|
+
resource_enterprise_outline_code4: [:string, nil],
|
|
1840
|
+
resource_enterprise_outline_code5: [:string, nil],
|
|
1841
|
+
resource_enterprise_outline_code6: [:string, nil],
|
|
1842
|
+
resource_enterprise_outline_code7: [:string, nil],
|
|
1843
|
+
resource_enterprise_outline_code8: [:string, nil],
|
|
1844
|
+
resource_enterprise_outline_code9: [:string, nil],
|
|
1845
|
+
resource_enterprise_rbs: [:string, nil],
|
|
1846
|
+
resource_group: [:string, nil],
|
|
1847
|
+
resource_initials: [:string, nil],
|
|
1848
|
+
resource_names: [:string, nil],
|
|
1849
|
+
resource_phonetics: [:string, nil],
|
|
1850
|
+
resource_type: [:string, nil],
|
|
1851
|
+
response_pending: [:boolean, nil],
|
|
1852
|
+
responsibility_code: [:string, nil],
|
|
1853
|
+
resume: [:date, nil],
|
|
1854
|
+
resume_no_earlier_than: [:date, nil],
|
|
1855
|
+
resume_valid: [:boolean, nil],
|
|
1856
|
+
rollup: [:boolean, nil],
|
|
1857
|
+
schedule_percent_complete: [:percentage, nil],
|
|
1858
|
+
scheduled_duration: [:duration, :actual_duration_units],
|
|
1859
|
+
scheduled_finish: [:date, nil],
|
|
1860
|
+
scheduled_start: [:date, nil],
|
|
1861
|
+
secondary_constraint_date: [:date, nil],
|
|
1862
|
+
secondary_constraint_type: [:constraint, nil],
|
|
1863
|
+
section: [:string, nil],
|
|
1864
|
+
sequence_number: [:integer, nil],
|
|
1865
|
+
show_duration_text: [:boolean, nil],
|
|
1866
|
+
show_finish_text: [:boolean, nil],
|
|
1867
|
+
show_on_board: [:string, nil],
|
|
1868
|
+
show_start_text: [:boolean, nil],
|
|
1869
|
+
spi: [:numeric, nil],
|
|
1870
|
+
sprint: [:string, nil],
|
|
1871
|
+
sprint_finish: [:date, nil],
|
|
1872
|
+
sprint_id: [:integer, nil],
|
|
1873
|
+
sprint_start: [:date, nil],
|
|
1874
|
+
start: [:date, nil],
|
|
1875
|
+
start1: [:date, nil],
|
|
1876
|
+
start10: [:date, nil],
|
|
1877
|
+
start2: [:date, nil],
|
|
1878
|
+
start3: [:date, nil],
|
|
1879
|
+
start4: [:date, nil],
|
|
1880
|
+
start5: [:date, nil],
|
|
1881
|
+
start6: [:date, nil],
|
|
1882
|
+
start7: [:date, nil],
|
|
1883
|
+
start8: [:date, nil],
|
|
1884
|
+
start9: [:date, nil],
|
|
1885
|
+
start_slack: [:duration, :actual_duration_units],
|
|
1886
|
+
start_text: [:string, nil],
|
|
1887
|
+
start_variance: [:duration, nil],
|
|
1888
|
+
status: [:string, nil],
|
|
1889
|
+
status_indicator: [:string, nil],
|
|
1890
|
+
status_manager: [:string, nil],
|
|
1891
|
+
steps: [:step_list, nil],
|
|
1892
|
+
stop: [:date, nil],
|
|
1893
|
+
stored_material: [:currency, nil],
|
|
1894
|
+
subproject_file: [:string, nil],
|
|
1895
|
+
subproject_guid: [:guid, nil],
|
|
1896
|
+
subproject_read_only: [:boolean, nil],
|
|
1897
|
+
subproject_task_id: [:integer, nil],
|
|
1898
|
+
subproject_task_unique_id: [:integer, nil],
|
|
1899
|
+
subproject_tasks_uniqueid_offset: [:integer, nil],
|
|
1900
|
+
successors: [:relation_list, nil],
|
|
1901
|
+
summary: [:boolean, nil],
|
|
1902
|
+
summary_progress: [:date, nil],
|
|
1903
|
+
suspend_date: [:date, nil],
|
|
1904
|
+
sv: [:currency, nil],
|
|
1905
|
+
svpercent: [:percentage, nil],
|
|
1906
|
+
task_calendar: [:string, nil],
|
|
1907
|
+
task_calendar_guid: [:guid, nil],
|
|
1908
|
+
task_mode: [:task_mode, nil],
|
|
1909
|
+
task_summary_name: [:string, nil],
|
|
1910
|
+
tcpi: [:numeric, nil],
|
|
1911
|
+
teamstatus_pending: [:boolean, nil],
|
|
1912
|
+
text1: [:string, nil],
|
|
1913
|
+
text10: [:string, nil],
|
|
1914
|
+
text11: [:string, nil],
|
|
1915
|
+
text12: [:string, nil],
|
|
1916
|
+
text13: [:string, nil],
|
|
1917
|
+
text14: [:string, nil],
|
|
1918
|
+
text15: [:string, nil],
|
|
1919
|
+
text16: [:string, nil],
|
|
1920
|
+
text17: [:string, nil],
|
|
1921
|
+
text18: [:string, nil],
|
|
1922
|
+
text19: [:string, nil],
|
|
1923
|
+
text2: [:string, nil],
|
|
1924
|
+
text20: [:string, nil],
|
|
1925
|
+
text21: [:string, nil],
|
|
1926
|
+
text22: [:string, nil],
|
|
1927
|
+
text23: [:string, nil],
|
|
1928
|
+
text24: [:string, nil],
|
|
1929
|
+
text25: [:string, nil],
|
|
1930
|
+
text26: [:string, nil],
|
|
1931
|
+
text27: [:string, nil],
|
|
1932
|
+
text28: [:string, nil],
|
|
1933
|
+
text29: [:string, nil],
|
|
1934
|
+
text3: [:string, nil],
|
|
1935
|
+
text30: [:string, nil],
|
|
1936
|
+
text4: [:string, nil],
|
|
1937
|
+
text5: [:string, nil],
|
|
1938
|
+
text6: [:string, nil],
|
|
1939
|
+
text7: [:string, nil],
|
|
1940
|
+
text8: [:string, nil],
|
|
1941
|
+
text9: [:string, nil],
|
|
1942
|
+
total_slack: [:duration, nil],
|
|
1943
|
+
type: [:task_type, nil],
|
|
1944
|
+
unavailable: [:string, nil],
|
|
1945
|
+
unique_id: [:integer, nil],
|
|
1946
|
+
unique_id_predecessors: [:string, nil],
|
|
1947
|
+
unique_id_successors: [:string, nil],
|
|
1948
|
+
update_needed: [:boolean, nil],
|
|
1949
|
+
vac: [:currency, nil],
|
|
1950
|
+
warning: [:boolean, nil],
|
|
1951
|
+
wbs: [:string, nil],
|
|
1952
|
+
wbs_predecessors: [:relation_list, nil],
|
|
1953
|
+
wbs_successors: [:relation_list, nil],
|
|
1954
|
+
work: [:work, nil],
|
|
1955
|
+
work_area_code: [:string, nil],
|
|
1956
|
+
work_contour: [:work_contour, nil],
|
|
1957
|
+
work_splits: [:date_range_list, nil],
|
|
1958
|
+
work_variance: [:duration, nil],
|
|
1959
|
+
workers_per_day: [:integer, nil],
|
|
1960
|
+
}.freeze
|
|
1961
|
+
|
|
1962
|
+
RESOURCE_FIELDS = {
|
|
1963
|
+
0 => :id,
|
|
1964
|
+
1 => :name,
|
|
1965
|
+
2 => :initials,
|
|
1966
|
+
3 => :group,
|
|
1967
|
+
4 => :max_units,
|
|
1968
|
+
5 => :base_calendar,
|
|
1969
|
+
6 => :standard_rate,
|
|
1970
|
+
7 => :overtime_rate,
|
|
1971
|
+
8 => :text1,
|
|
1972
|
+
9 => :text2,
|
|
1973
|
+
10 => :code,
|
|
1974
|
+
11 => :actual_cost,
|
|
1975
|
+
12 => :cost,
|
|
1976
|
+
13 => :work,
|
|
1977
|
+
14 => :actual_work,
|
|
1978
|
+
15 => :baseline_work,
|
|
1979
|
+
16 => :overtime_work,
|
|
1980
|
+
17 => :baseline_cost,
|
|
1981
|
+
18 => :cost_per_use,
|
|
1982
|
+
19 => :accrue_at,
|
|
1983
|
+
20 => :notes,
|
|
1984
|
+
21 => :remaining_cost,
|
|
1985
|
+
22 => :remaining_work,
|
|
1986
|
+
23 => :work_variance,
|
|
1987
|
+
24 => :cost_variance,
|
|
1988
|
+
25 => :overallocated,
|
|
1989
|
+
26 => :peak,
|
|
1990
|
+
27 => :unique_id,
|
|
1991
|
+
28 => :notes,
|
|
1992
|
+
29 => :percent_work_complete,
|
|
1993
|
+
30 => :text3,
|
|
1994
|
+
31 => :text4,
|
|
1995
|
+
32 => :text5,
|
|
1996
|
+
33 => :objects,
|
|
1997
|
+
34 => :linked_fields,
|
|
1998
|
+
35 => :email_address,
|
|
1999
|
+
38 => :regular_work,
|
|
2000
|
+
39 => :actual_overtime_work,
|
|
2001
|
+
40 => :remaining_overtime_work,
|
|
2002
|
+
47 => :overtime_cost,
|
|
2003
|
+
48 => :actual_overtime_cost,
|
|
2004
|
+
49 => :remaining_overtime_cost,
|
|
2005
|
+
51 => :bcws,
|
|
2006
|
+
52 => :bcwp,
|
|
2007
|
+
53 => :acwp,
|
|
2008
|
+
54 => :sv,
|
|
2009
|
+
57 => :available_from,
|
|
2010
|
+
58 => :available_to,
|
|
2011
|
+
61 => :cost_rate_a,
|
|
2012
|
+
62 => :cost_rate_b,
|
|
2013
|
+
63 => :cost_rate_c,
|
|
2014
|
+
64 => :cost_rate_d,
|
|
2015
|
+
65 => :cost_rate_e,
|
|
2016
|
+
70 => :standard_rate_units,
|
|
2017
|
+
71 => :overtime_rate_units,
|
|
2018
|
+
86 => :indicators,
|
|
2019
|
+
97 => :text6,
|
|
2020
|
+
98 => :text7,
|
|
2021
|
+
99 => :text8,
|
|
2022
|
+
100 => :text9,
|
|
2023
|
+
101 => :text10,
|
|
2024
|
+
102 => :start1,
|
|
2025
|
+
103 => :start2,
|
|
2026
|
+
104 => :start3,
|
|
2027
|
+
105 => :start4,
|
|
2028
|
+
106 => :start5,
|
|
2029
|
+
107 => :finish1,
|
|
2030
|
+
108 => :finish2,
|
|
2031
|
+
109 => :finish3,
|
|
2032
|
+
110 => :finish4,
|
|
2033
|
+
111 => :finish5,
|
|
2034
|
+
112 => :number1,
|
|
2035
|
+
113 => :number2,
|
|
2036
|
+
114 => :number3,
|
|
2037
|
+
115 => :number4,
|
|
2038
|
+
116 => :number5,
|
|
2039
|
+
117 => :duration1,
|
|
2040
|
+
118 => :duration2,
|
|
2041
|
+
119 => :duration3,
|
|
2042
|
+
120 => :duration1_units,
|
|
2043
|
+
121 => :duration2_units,
|
|
2044
|
+
122 => :duration3_units,
|
|
2045
|
+
123 => :cost1,
|
|
2046
|
+
124 => :cost2,
|
|
2047
|
+
125 => :cost3,
|
|
2048
|
+
126 => :flag10,
|
|
2049
|
+
127 => :flag1,
|
|
2050
|
+
128 => :flag2,
|
|
2051
|
+
129 => :flag3,
|
|
2052
|
+
130 => :flag4,
|
|
2053
|
+
131 => :flag5,
|
|
2054
|
+
132 => :flag6,
|
|
2055
|
+
133 => :flag7,
|
|
2056
|
+
134 => :flag8,
|
|
2057
|
+
135 => :flag9,
|
|
2058
|
+
136 => :hyperlink_data,
|
|
2059
|
+
138 => :hyperlink,
|
|
2060
|
+
139 => :hyperlink_address,
|
|
2061
|
+
140 => :hyperlink_subaddress,
|
|
2062
|
+
141 => :hyperlink_href,
|
|
2063
|
+
144 => :assignment,
|
|
2064
|
+
152 => :subproject_resource_unique_id,
|
|
2065
|
+
159 => :task_summary_name,
|
|
2066
|
+
163 => :can_level,
|
|
2067
|
+
164 => :work_contour,
|
|
2068
|
+
166 => :cost4,
|
|
2069
|
+
167 => :cost5,
|
|
2070
|
+
168 => :cost6,
|
|
2071
|
+
169 => :cost7,
|
|
2072
|
+
170 => :cost8,
|
|
2073
|
+
171 => :cost9,
|
|
2074
|
+
172 => :cost10,
|
|
2075
|
+
173 => :date1,
|
|
2076
|
+
174 => :date2,
|
|
2077
|
+
175 => :date3,
|
|
2078
|
+
176 => :date4,
|
|
2079
|
+
177 => :date5,
|
|
2080
|
+
178 => :date6,
|
|
2081
|
+
179 => :date7,
|
|
2082
|
+
180 => :date8,
|
|
2083
|
+
181 => :date9,
|
|
2084
|
+
182 => :date10,
|
|
2085
|
+
183 => :duration4,
|
|
2086
|
+
184 => :duration5,
|
|
2087
|
+
185 => :duration6,
|
|
2088
|
+
186 => :duration7,
|
|
2089
|
+
187 => :duration8,
|
|
2090
|
+
188 => :duration9,
|
|
2091
|
+
189 => :duration10,
|
|
2092
|
+
190 => :finish6,
|
|
2093
|
+
191 => :finish7,
|
|
2094
|
+
192 => :finish8,
|
|
2095
|
+
193 => :finish9,
|
|
2096
|
+
194 => :finish10,
|
|
2097
|
+
195 => :flag11,
|
|
2098
|
+
196 => :flag12,
|
|
2099
|
+
197 => :flag13,
|
|
2100
|
+
198 => :flag14,
|
|
2101
|
+
199 => :flag15,
|
|
2102
|
+
200 => :flag16,
|
|
2103
|
+
201 => :flag17,
|
|
2104
|
+
202 => :flag18,
|
|
2105
|
+
203 => :flag19,
|
|
2106
|
+
204 => :flag20,
|
|
2107
|
+
205 => :number6,
|
|
2108
|
+
206 => :number7,
|
|
2109
|
+
207 => :number8,
|
|
2110
|
+
208 => :number9,
|
|
2111
|
+
209 => :number10,
|
|
2112
|
+
210 => :number11,
|
|
2113
|
+
211 => :number12,
|
|
2114
|
+
212 => :number13,
|
|
2115
|
+
213 => :number14,
|
|
2116
|
+
214 => :number15,
|
|
2117
|
+
215 => :number16,
|
|
2118
|
+
216 => :number17,
|
|
2119
|
+
217 => :number18,
|
|
2120
|
+
218 => :number19,
|
|
2121
|
+
219 => :number20,
|
|
2122
|
+
220 => :start6,
|
|
2123
|
+
221 => :start7,
|
|
2124
|
+
222 => :start8,
|
|
2125
|
+
223 => :start9,
|
|
2126
|
+
224 => :start10,
|
|
2127
|
+
225 => :text11,
|
|
2128
|
+
226 => :text12,
|
|
2129
|
+
227 => :text13,
|
|
2130
|
+
228 => :text14,
|
|
2131
|
+
229 => :text15,
|
|
2132
|
+
230 => :text16,
|
|
2133
|
+
231 => :text17,
|
|
2134
|
+
232 => :text18,
|
|
2135
|
+
233 => :text19,
|
|
2136
|
+
234 => :text20,
|
|
2137
|
+
235 => :text21,
|
|
2138
|
+
236 => :text22,
|
|
2139
|
+
237 => :text23,
|
|
2140
|
+
238 => :text24,
|
|
2141
|
+
239 => :text25,
|
|
2142
|
+
240 => :text26,
|
|
2143
|
+
241 => :text27,
|
|
2144
|
+
242 => :text28,
|
|
2145
|
+
243 => :text29,
|
|
2146
|
+
244 => :text30,
|
|
2147
|
+
245 => :duration4_units,
|
|
2148
|
+
246 => :duration5_units,
|
|
2149
|
+
247 => :duration6_units,
|
|
2150
|
+
248 => :duration7_units,
|
|
2151
|
+
249 => :duration8_units,
|
|
2152
|
+
250 => :duration9_units,
|
|
2153
|
+
251 => :duration10_units,
|
|
2154
|
+
252 => :phonetics,
|
|
2155
|
+
253 => :index,
|
|
2156
|
+
257 => :assignment_delay,
|
|
2157
|
+
258 => :assignment_units,
|
|
2158
|
+
259 => :baseline_start,
|
|
2159
|
+
260 => :baseline_finish,
|
|
2160
|
+
261 => :confirmed,
|
|
2161
|
+
262 => :finish,
|
|
2162
|
+
263 => :leveling_delay,
|
|
2163
|
+
264 => :response_pending,
|
|
2164
|
+
265 => :start,
|
|
2165
|
+
266 => :team_status_pending,
|
|
2166
|
+
267 => :update_needed,
|
|
2167
|
+
268 => :cv,
|
|
2168
|
+
269 => :cost_rate_table,
|
|
2169
|
+
270 => :actual_start,
|
|
2170
|
+
271 => :actual_finish,
|
|
2171
|
+
272 => :workgroup,
|
|
2172
|
+
273 => :project,
|
|
2173
|
+
276 => :availability_data,
|
|
2174
|
+
278 => :outline_code1,
|
|
2175
|
+
279 => :outline_code1_index,
|
|
2176
|
+
280 => :outline_code2,
|
|
2177
|
+
281 => :outline_code2_index,
|
|
2178
|
+
282 => :outline_code3,
|
|
2179
|
+
283 => :outline_code3_index,
|
|
2180
|
+
284 => :outline_code4,
|
|
2181
|
+
285 => :outline_code4_index,
|
|
2182
|
+
286 => :outline_code5,
|
|
2183
|
+
287 => :outline_code5_index,
|
|
2184
|
+
288 => :outline_code6,
|
|
2185
|
+
289 => :outline_code6_index,
|
|
2186
|
+
290 => :outline_code7,
|
|
2187
|
+
291 => :outline_code7_index,
|
|
2188
|
+
292 => :outline_code8,
|
|
2189
|
+
293 => :outline_code8_index,
|
|
2190
|
+
294 => :outline_code9,
|
|
2191
|
+
295 => :outline_code9_index,
|
|
2192
|
+
296 => :outline_code10,
|
|
2193
|
+
297 => :outline_code10_index,
|
|
2194
|
+
299 => :material_label,
|
|
2195
|
+
300 => :type,
|
|
2196
|
+
301 => :vac,
|
|
2197
|
+
306 => :group_by_summary,
|
|
2198
|
+
311 => :windows_user_account,
|
|
2199
|
+
312 => :hyperlink_screen_tip,
|
|
2200
|
+
340 => :wbs,
|
|
2201
|
+
341 => :enterprise_data,
|
|
2202
|
+
342 => :baseline1_work,
|
|
2203
|
+
343 => :baseline1_cost,
|
|
2204
|
+
348 => :baseline1_start,
|
|
2205
|
+
349 => :baseline1_finish,
|
|
2206
|
+
352 => :baseline2_work,
|
|
2207
|
+
353 => :baseline2_cost,
|
|
2208
|
+
358 => :baseline2_start,
|
|
2209
|
+
359 => :baseline2_finish,
|
|
2210
|
+
362 => :baseline3_work,
|
|
2211
|
+
363 => :baseline3_cost,
|
|
2212
|
+
368 => :baseline3_start,
|
|
2213
|
+
369 => :baseline3_finish,
|
|
2214
|
+
372 => :baseline4_work,
|
|
2215
|
+
373 => :baseline4_cost,
|
|
2216
|
+
378 => :baseline4_start,
|
|
2217
|
+
379 => :baseline4_finish,
|
|
2218
|
+
382 => :baseline5_work,
|
|
2219
|
+
383 => :baseline5_cost,
|
|
2220
|
+
388 => :baseline5_start,
|
|
2221
|
+
389 => :baseline5_finish,
|
|
2222
|
+
392 => :baseline6_work,
|
|
2223
|
+
393 => :baseline6_cost,
|
|
2224
|
+
398 => :baseline6_start,
|
|
2225
|
+
399 => :baseline6_finish,
|
|
2226
|
+
402 => :baseline7_work,
|
|
2227
|
+
403 => :baseline7_cost,
|
|
2228
|
+
408 => :baseline7_start,
|
|
2229
|
+
409 => :baseline7_finish,
|
|
2230
|
+
412 => :baseline8_work,
|
|
2231
|
+
413 => :baseline8_cost,
|
|
2232
|
+
418 => :baseline8_start,
|
|
2233
|
+
419 => :baseline8_finish,
|
|
2234
|
+
422 => :baseline9_work,
|
|
2235
|
+
423 => :baseline9_cost,
|
|
2236
|
+
428 => :baseline9_start,
|
|
2237
|
+
429 => :baseline9_finish,
|
|
2238
|
+
432 => :baseline10_work,
|
|
2239
|
+
433 => :baseline10_cost,
|
|
2240
|
+
438 => :baseline10_start,
|
|
2241
|
+
439 => :baseline10_finish,
|
|
2242
|
+
442 => :task_outline_number,
|
|
2243
|
+
443 => :enterprise_unique_id,
|
|
2244
|
+
446 => :enterprise_cost1,
|
|
2245
|
+
447 => :enterprise_cost2,
|
|
2246
|
+
448 => :enterprise_cost3,
|
|
2247
|
+
449 => :enterprise_cost4,
|
|
2248
|
+
450 => :enterprise_cost5,
|
|
2249
|
+
451 => :enterprise_cost6,
|
|
2250
|
+
452 => :enterprise_cost7,
|
|
2251
|
+
453 => :enterprise_cost8,
|
|
2252
|
+
454 => :enterprise_cost9,
|
|
2253
|
+
455 => :enterprise_cost10,
|
|
2254
|
+
456 => :enterprise_date1,
|
|
2255
|
+
457 => :enterprise_date2,
|
|
2256
|
+
458 => :enterprise_date3,
|
|
2257
|
+
459 => :enterprise_date4,
|
|
2258
|
+
460 => :enterprise_date5,
|
|
2259
|
+
461 => :enterprise_date6,
|
|
2260
|
+
462 => :enterprise_date7,
|
|
2261
|
+
463 => :enterprise_date8,
|
|
2262
|
+
464 => :enterprise_date9,
|
|
2263
|
+
465 => :enterprise_date10,
|
|
2264
|
+
466 => :enterprise_date11,
|
|
2265
|
+
467 => :enterprise_date12,
|
|
2266
|
+
468 => :enterprise_date13,
|
|
2267
|
+
469 => :enterprise_date14,
|
|
2268
|
+
470 => :enterprise_date15,
|
|
2269
|
+
471 => :enterprise_date16,
|
|
2270
|
+
472 => :enterprise_date17,
|
|
2271
|
+
473 => :enterprise_date18,
|
|
2272
|
+
474 => :enterprise_date19,
|
|
2273
|
+
475 => :enterprise_date20,
|
|
2274
|
+
476 => :enterprise_date21,
|
|
2275
|
+
477 => :enterprise_date22,
|
|
2276
|
+
478 => :enterprise_date23,
|
|
2277
|
+
479 => :enterprise_date24,
|
|
2278
|
+
480 => :enterprise_date25,
|
|
2279
|
+
481 => :enterprise_date26,
|
|
2280
|
+
482 => :enterprise_date27,
|
|
2281
|
+
483 => :enterprise_date28,
|
|
2282
|
+
484 => :enterprise_date29,
|
|
2283
|
+
485 => :enterprise_date30,
|
|
2284
|
+
486 => :enterprise_duration1,
|
|
2285
|
+
487 => :enterprise_duration2,
|
|
2286
|
+
488 => :enterprise_duration3,
|
|
2287
|
+
489 => :enterprise_duration4,
|
|
2288
|
+
490 => :enterprise_duration5,
|
|
2289
|
+
491 => :enterprise_duration6,
|
|
2290
|
+
492 => :enterprise_duration7,
|
|
2291
|
+
493 => :enterprise_duration8,
|
|
2292
|
+
494 => :enterprise_duration9,
|
|
2293
|
+
495 => :enterprise_duration10,
|
|
2294
|
+
496 => :enterprise_duration1_units,
|
|
2295
|
+
497 => :enterprise_duration2_units,
|
|
2296
|
+
498 => :enterprise_duration3_units,
|
|
2297
|
+
499 => :enterprise_duration4_units,
|
|
2298
|
+
500 => :enterprise_duration5_units,
|
|
2299
|
+
501 => :enterprise_duration6_units,
|
|
2300
|
+
502 => :enterprise_duration7_units,
|
|
2301
|
+
503 => :enterprise_duration8_units,
|
|
2302
|
+
504 => :enterprise_duration9_units,
|
|
2303
|
+
505 => :enterprise_duration10_units,
|
|
2304
|
+
506 => :enterprise_flag1,
|
|
2305
|
+
507 => :enterprise_flag2,
|
|
2306
|
+
508 => :enterprise_flag3,
|
|
2307
|
+
509 => :enterprise_flag4,
|
|
2308
|
+
510 => :enterprise_flag5,
|
|
2309
|
+
511 => :enterprise_flag6,
|
|
2310
|
+
512 => :enterprise_flag7,
|
|
2311
|
+
513 => :enterprise_flag8,
|
|
2312
|
+
514 => :enterprise_flag9,
|
|
2313
|
+
515 => :enterprise_flag10,
|
|
2314
|
+
516 => :enterprise_flag11,
|
|
2315
|
+
517 => :enterprise_flag12,
|
|
2316
|
+
518 => :enterprise_flag13,
|
|
2317
|
+
519 => :enterprise_flag14,
|
|
2318
|
+
520 => :enterprise_flag15,
|
|
2319
|
+
521 => :enterprise_flag16,
|
|
2320
|
+
522 => :enterprise_flag17,
|
|
2321
|
+
523 => :enterprise_flag18,
|
|
2322
|
+
524 => :enterprise_flag19,
|
|
2323
|
+
525 => :enterprise_flag20,
|
|
2324
|
+
546 => :enterprise_number1,
|
|
2325
|
+
547 => :enterprise_number2,
|
|
2326
|
+
548 => :enterprise_number3,
|
|
2327
|
+
549 => :enterprise_number4,
|
|
2328
|
+
550 => :enterprise_number5,
|
|
2329
|
+
551 => :enterprise_number6,
|
|
2330
|
+
552 => :enterprise_number7,
|
|
2331
|
+
553 => :enterprise_number8,
|
|
2332
|
+
554 => :enterprise_number9,
|
|
2333
|
+
555 => :enterprise_number10,
|
|
2334
|
+
556 => :enterprise_number11,
|
|
2335
|
+
557 => :enterprise_number12,
|
|
2336
|
+
558 => :enterprise_number13,
|
|
2337
|
+
559 => :enterprise_number14,
|
|
2338
|
+
560 => :enterprise_number15,
|
|
2339
|
+
561 => :enterprise_number16,
|
|
2340
|
+
562 => :enterprise_number17,
|
|
2341
|
+
563 => :enterprise_number18,
|
|
2342
|
+
564 => :enterprise_number19,
|
|
2343
|
+
565 => :enterprise_number20,
|
|
2344
|
+
566 => :enterprise_number21,
|
|
2345
|
+
567 => :enterprise_number22,
|
|
2346
|
+
568 => :enterprise_number23,
|
|
2347
|
+
569 => :enterprise_number24,
|
|
2348
|
+
570 => :enterprise_number25,
|
|
2349
|
+
571 => :enterprise_number26,
|
|
2350
|
+
572 => :enterprise_number27,
|
|
2351
|
+
573 => :enterprise_number28,
|
|
2352
|
+
574 => :enterprise_number29,
|
|
2353
|
+
575 => :enterprise_number30,
|
|
2354
|
+
576 => :enterprise_number31,
|
|
2355
|
+
577 => :enterprise_number32,
|
|
2356
|
+
578 => :enterprise_number33,
|
|
2357
|
+
579 => :enterprise_number34,
|
|
2358
|
+
580 => :enterprise_number35,
|
|
2359
|
+
581 => :enterprise_number36,
|
|
2360
|
+
582 => :enterprise_number37,
|
|
2361
|
+
583 => :enterprise_number38,
|
|
2362
|
+
584 => :enterprise_number39,
|
|
2363
|
+
585 => :enterprise_number40,
|
|
2364
|
+
586 => :enterprise_outline_code1,
|
|
2365
|
+
588 => :enterprise_outline_code2,
|
|
2366
|
+
590 => :enterprise_outline_code3,
|
|
2367
|
+
592 => :enterprise_outline_code4,
|
|
2368
|
+
594 => :enterprise_outline_code5,
|
|
2369
|
+
596 => :enterprise_outline_code6,
|
|
2370
|
+
598 => :enterprise_outline_code7,
|
|
2371
|
+
600 => :enterprise_outline_code8,
|
|
2372
|
+
602 => :enterprise_outline_code9,
|
|
2373
|
+
604 => :enterprise_outline_code10,
|
|
2374
|
+
606 => :enterprise_outline_code11,
|
|
2375
|
+
608 => :enterprise_outline_code12,
|
|
2376
|
+
610 => :enterprise_outline_code13,
|
|
2377
|
+
612 => :enterprise_outline_code14,
|
|
2378
|
+
614 => :enterprise_outline_code15,
|
|
2379
|
+
616 => :enterprise_outline_code16,
|
|
2380
|
+
618 => :enterprise_outline_code17,
|
|
2381
|
+
620 => :enterprise_outline_code18,
|
|
2382
|
+
622 => :enterprise_outline_code19,
|
|
2383
|
+
624 => :enterprise_outline_code20,
|
|
2384
|
+
626 => :enterprise_outline_code21,
|
|
2385
|
+
628 => :enterprise_outline_code22,
|
|
2386
|
+
630 => :enterprise_outline_code23,
|
|
2387
|
+
632 => :enterprise_outline_code24,
|
|
2388
|
+
634 => :enterprise_outline_code25,
|
|
2389
|
+
636 => :enterprise_outline_code26,
|
|
2390
|
+
638 => :enterprise_outline_code27,
|
|
2391
|
+
640 => :enterprise_outline_code28,
|
|
2392
|
+
642 => :enterprise_outline_code29,
|
|
2393
|
+
644 => :enterprise_rbs,
|
|
2394
|
+
646 => :enterprise_text1,
|
|
2395
|
+
647 => :enterprise_text2,
|
|
2396
|
+
648 => :enterprise_text3,
|
|
2397
|
+
649 => :enterprise_text4,
|
|
2398
|
+
650 => :enterprise_text5,
|
|
2399
|
+
651 => :enterprise_text6,
|
|
2400
|
+
652 => :enterprise_text7,
|
|
2401
|
+
653 => :enterprise_text8,
|
|
2402
|
+
654 => :enterprise_text9,
|
|
2403
|
+
655 => :enterprise_text10,
|
|
2404
|
+
656 => :enterprise_text11,
|
|
2405
|
+
657 => :enterprise_text12,
|
|
2406
|
+
658 => :enterprise_text13,
|
|
2407
|
+
659 => :enterprise_text14,
|
|
2408
|
+
660 => :enterprise_text15,
|
|
2409
|
+
661 => :enterprise_text16,
|
|
2410
|
+
662 => :enterprise_text17,
|
|
2411
|
+
663 => :enterprise_text18,
|
|
2412
|
+
664 => :enterprise_text19,
|
|
2413
|
+
665 => :enterprise_text20,
|
|
2414
|
+
666 => :enterprise_text21,
|
|
2415
|
+
667 => :enterprise_text22,
|
|
2416
|
+
668 => :enterprise_text23,
|
|
2417
|
+
669 => :enterprise_text24,
|
|
2418
|
+
670 => :enterprise_text25,
|
|
2419
|
+
671 => :enterprise_text26,
|
|
2420
|
+
672 => :enterprise_text27,
|
|
2421
|
+
673 => :enterprise_text28,
|
|
2422
|
+
674 => :enterprise_text29,
|
|
2423
|
+
675 => :enterprise_text30,
|
|
2424
|
+
676 => :enterprise_text31,
|
|
2425
|
+
677 => :enterprise_text32,
|
|
2426
|
+
678 => :enterprise_text33,
|
|
2427
|
+
679 => :enterprise_text34,
|
|
2428
|
+
680 => :enterprise_text35,
|
|
2429
|
+
681 => :enterprise_text36,
|
|
2430
|
+
682 => :enterprise_text37,
|
|
2431
|
+
683 => :enterprise_text38,
|
|
2432
|
+
684 => :enterprise_text39,
|
|
2433
|
+
685 => :enterprise_text40,
|
|
2434
|
+
686 => :generic,
|
|
2435
|
+
687 => :enterprise_base_calendar,
|
|
2436
|
+
688 => :enterprise_required_values,
|
|
2437
|
+
689 => :enterprise_name_used,
|
|
2438
|
+
690 => :request_demand,
|
|
2439
|
+
691 => :enterprise,
|
|
2440
|
+
692 => :enterprise_is_checked_out,
|
|
2441
|
+
693 => :enterprise_checked_out_by,
|
|
2442
|
+
694 => :enterprise_last_modified_date,
|
|
2443
|
+
695 => :enterprise_team_member,
|
|
2444
|
+
696 => :inactive,
|
|
2445
|
+
699 => :booking_type,
|
|
2446
|
+
700 => :enterprise_multi_value20,
|
|
2447
|
+
702 => :enterprise_multi_value21,
|
|
2448
|
+
704 => :enterprise_multi_value22,
|
|
2449
|
+
706 => :enterprise_multi_value23,
|
|
2450
|
+
708 => :enterprise_multi_value24,
|
|
2451
|
+
710 => :enterprise_multi_value25,
|
|
2452
|
+
712 => :enterprise_multi_value26,
|
|
2453
|
+
714 => :enterprise_multi_value27,
|
|
2454
|
+
716 => :enterprise_multi_value28,
|
|
2455
|
+
718 => :enterprise_multi_value29,
|
|
2456
|
+
720 => :actual_work_protected,
|
|
2457
|
+
721 => :actual_overtime_work_protected,
|
|
2458
|
+
726 => :created,
|
|
2459
|
+
728 => :guid,
|
|
2460
|
+
729 => :calendar_guid,
|
|
2461
|
+
737 => :summary,
|
|
2462
|
+
738 => :error_message,
|
|
2463
|
+
740 => :default_assignment_owner,
|
|
2464
|
+
752 => :budget,
|
|
2465
|
+
753 => :budget_work,
|
|
2466
|
+
754 => :budget_cost,
|
|
2467
|
+
755 => :import,
|
|
2468
|
+
756 => :baseline_budget_work,
|
|
2469
|
+
757 => :baseline_budget_cost,
|
|
2470
|
+
760 => :baseline1_budget_work,
|
|
2471
|
+
761 => :baseline1_budget_cost,
|
|
2472
|
+
764 => :baseline2_budget_work,
|
|
2473
|
+
765 => :baseline2_budget_cost,
|
|
2474
|
+
768 => :baseline3_budget_work,
|
|
2475
|
+
769 => :baseline3_budget_cost,
|
|
2476
|
+
772 => :baseline4_budget_work,
|
|
2477
|
+
773 => :baseline4_budget_cost,
|
|
2478
|
+
776 => :baseline5_budget_work,
|
|
2479
|
+
777 => :baseline5_budget_cost,
|
|
2480
|
+
780 => :baseline6_budget_work,
|
|
2481
|
+
781 => :baseline6_budget_cost,
|
|
2482
|
+
784 => :baseline7_budget_work,
|
|
2483
|
+
785 => :baseline7_budget_cost,
|
|
2484
|
+
788 => :baseline8_budget_work,
|
|
2485
|
+
789 => :baseline8_budget_cost,
|
|
2486
|
+
792 => :baseline9_budget_work,
|
|
2487
|
+
793 => :baseline9_budget_cost,
|
|
2488
|
+
796 => :baseline10_budget_work,
|
|
2489
|
+
797 => :baseline10_budget_cost,
|
|
2490
|
+
800 => :team_assignment_pool,
|
|
2491
|
+
801 => :cost_center,
|
|
2492
|
+
803 => :assignment_owner,
|
|
2493
|
+
808 => :active,
|
|
2494
|
+
853 => :proposed_start,
|
|
2495
|
+
856 => :proposed_finish,
|
|
2496
|
+
859 => :proposed_max_units,
|
|
2497
|
+
862 => :engagement_status,
|
|
2498
|
+
}.freeze
|
|
2499
|
+
|
|
2500
|
+
# field name => [data type, units field]
|
|
2501
|
+
RESOURCE_FIELD_TYPES = {
|
|
2502
|
+
accrue_at: [:accrue, nil],
|
|
2503
|
+
active: [:boolean, nil],
|
|
2504
|
+
actual_cost: [:currency, nil],
|
|
2505
|
+
actual_finish: [:date, nil],
|
|
2506
|
+
actual_material: [:numeric, nil],
|
|
2507
|
+
actual_overtime_cost: [:currency, nil],
|
|
2508
|
+
actual_overtime_work: [:work, nil],
|
|
2509
|
+
actual_overtime_work_protected: [:work, nil],
|
|
2510
|
+
actual_regular_cost: [:currency, nil],
|
|
2511
|
+
actual_regular_work: [:work, nil],
|
|
2512
|
+
actual_start: [:date, nil],
|
|
2513
|
+
actual_work: [:work, nil],
|
|
2514
|
+
actual_work_protected: [:work, nil],
|
|
2515
|
+
acwp: [:currency, nil],
|
|
2516
|
+
assignment: [:boolean, nil],
|
|
2517
|
+
assignment_delay: [:delay, nil],
|
|
2518
|
+
assignment_owner: [:string, nil],
|
|
2519
|
+
assignment_units: [:units, nil],
|
|
2520
|
+
availability_data: [:binary, nil],
|
|
2521
|
+
available_from: [:date, nil],
|
|
2522
|
+
available_to: [:date, nil],
|
|
2523
|
+
base_calendar: [:string, nil],
|
|
2524
|
+
baseline10_budget_cost: [:currency, nil],
|
|
2525
|
+
baseline10_budget_work: [:work, nil],
|
|
2526
|
+
baseline10_cost: [:currency, nil],
|
|
2527
|
+
baseline10_finish: [:date, nil],
|
|
2528
|
+
baseline10_material: [:numeric, nil],
|
|
2529
|
+
baseline10_start: [:date, nil],
|
|
2530
|
+
baseline10_work: [:work, nil],
|
|
2531
|
+
baseline1_budget_cost: [:currency, nil],
|
|
2532
|
+
baseline1_budget_work: [:work, nil],
|
|
2533
|
+
baseline1_cost: [:currency, nil],
|
|
2534
|
+
baseline1_finish: [:date, nil],
|
|
2535
|
+
baseline1_material: [:numeric, nil],
|
|
2536
|
+
baseline1_start: [:date, nil],
|
|
2537
|
+
baseline1_work: [:work, nil],
|
|
2538
|
+
baseline2_budget_cost: [:currency, nil],
|
|
2539
|
+
baseline2_budget_work: [:work, nil],
|
|
2540
|
+
baseline2_cost: [:currency, nil],
|
|
2541
|
+
baseline2_finish: [:date, nil],
|
|
2542
|
+
baseline2_material: [:numeric, nil],
|
|
2543
|
+
baseline2_start: [:date, nil],
|
|
2544
|
+
baseline2_work: [:work, nil],
|
|
2545
|
+
baseline3_budget_cost: [:currency, nil],
|
|
2546
|
+
baseline3_budget_work: [:work, nil],
|
|
2547
|
+
baseline3_cost: [:currency, nil],
|
|
2548
|
+
baseline3_finish: [:date, nil],
|
|
2549
|
+
baseline3_material: [:numeric, nil],
|
|
2550
|
+
baseline3_start: [:date, nil],
|
|
2551
|
+
baseline3_work: [:work, nil],
|
|
2552
|
+
baseline4_budget_cost: [:currency, nil],
|
|
2553
|
+
baseline4_budget_work: [:work, nil],
|
|
2554
|
+
baseline4_cost: [:currency, nil],
|
|
2555
|
+
baseline4_finish: [:date, nil],
|
|
2556
|
+
baseline4_material: [:numeric, nil],
|
|
2557
|
+
baseline4_start: [:date, nil],
|
|
2558
|
+
baseline4_work: [:work, nil],
|
|
2559
|
+
baseline5_budget_cost: [:currency, nil],
|
|
2560
|
+
baseline5_budget_work: [:work, nil],
|
|
2561
|
+
baseline5_cost: [:currency, nil],
|
|
2562
|
+
baseline5_finish: [:date, nil],
|
|
2563
|
+
baseline5_material: [:numeric, nil],
|
|
2564
|
+
baseline5_start: [:date, nil],
|
|
2565
|
+
baseline5_work: [:work, nil],
|
|
2566
|
+
baseline6_budget_cost: [:currency, nil],
|
|
2567
|
+
baseline6_budget_work: [:work, nil],
|
|
2568
|
+
baseline6_cost: [:currency, nil],
|
|
2569
|
+
baseline6_finish: [:date, nil],
|
|
2570
|
+
baseline6_material: [:numeric, nil],
|
|
2571
|
+
baseline6_start: [:date, nil],
|
|
2572
|
+
baseline6_work: [:work, nil],
|
|
2573
|
+
baseline7_budget_cost: [:currency, nil],
|
|
2574
|
+
baseline7_budget_work: [:work, nil],
|
|
2575
|
+
baseline7_cost: [:currency, nil],
|
|
2576
|
+
baseline7_finish: [:date, nil],
|
|
2577
|
+
baseline7_material: [:numeric, nil],
|
|
2578
|
+
baseline7_start: [:date, nil],
|
|
2579
|
+
baseline7_work: [:work, nil],
|
|
2580
|
+
baseline8_budget_cost: [:currency, nil],
|
|
2581
|
+
baseline8_budget_work: [:work, nil],
|
|
2582
|
+
baseline8_cost: [:currency, nil],
|
|
2583
|
+
baseline8_finish: [:date, nil],
|
|
2584
|
+
baseline8_material: [:numeric, nil],
|
|
2585
|
+
baseline8_start: [:date, nil],
|
|
2586
|
+
baseline8_work: [:work, nil],
|
|
2587
|
+
baseline9_budget_cost: [:currency, nil],
|
|
2588
|
+
baseline9_budget_work: [:work, nil],
|
|
2589
|
+
baseline9_cost: [:currency, nil],
|
|
2590
|
+
baseline9_finish: [:date, nil],
|
|
2591
|
+
baseline9_material: [:numeric, nil],
|
|
2592
|
+
baseline9_start: [:date, nil],
|
|
2593
|
+
baseline9_work: [:work, nil],
|
|
2594
|
+
baseline_budget_cost: [:currency, nil],
|
|
2595
|
+
baseline_budget_work: [:work, nil],
|
|
2596
|
+
baseline_cost: [:currency, nil],
|
|
2597
|
+
baseline_finish: [:date, nil],
|
|
2598
|
+
baseline_material: [:numeric, nil],
|
|
2599
|
+
baseline_start: [:date, nil],
|
|
2600
|
+
baseline_work: [:work, nil],
|
|
2601
|
+
bcwp: [:currency, nil],
|
|
2602
|
+
bcws: [:currency, nil],
|
|
2603
|
+
booking_type: [:booking_type, nil],
|
|
2604
|
+
budget: [:boolean, nil],
|
|
2605
|
+
budget_cost: [:currency, nil],
|
|
2606
|
+
budget_work: [:work, nil],
|
|
2607
|
+
calculate_costs_from_units: [:boolean, nil],
|
|
2608
|
+
calendar_guid: [:guid, nil],
|
|
2609
|
+
calendar_unique_id: [:integer, nil],
|
|
2610
|
+
can_level: [:boolean, nil],
|
|
2611
|
+
code: [:string, nil],
|
|
2612
|
+
confirmed: [:boolean, nil],
|
|
2613
|
+
cost: [:currency, nil],
|
|
2614
|
+
cost1: [:currency, nil],
|
|
2615
|
+
cost10: [:currency, nil],
|
|
2616
|
+
cost2: [:currency, nil],
|
|
2617
|
+
cost3: [:currency, nil],
|
|
2618
|
+
cost4: [:currency, nil],
|
|
2619
|
+
cost5: [:currency, nil],
|
|
2620
|
+
cost6: [:currency, nil],
|
|
2621
|
+
cost7: [:currency, nil],
|
|
2622
|
+
cost8: [:currency, nil],
|
|
2623
|
+
cost9: [:currency, nil],
|
|
2624
|
+
cost_center: [:string, nil],
|
|
2625
|
+
cost_per_use: [:currency, nil],
|
|
2626
|
+
cost_rate_a: [:binary, nil],
|
|
2627
|
+
cost_rate_b: [:binary, nil],
|
|
2628
|
+
cost_rate_c: [:binary, nil],
|
|
2629
|
+
cost_rate_d: [:binary, nil],
|
|
2630
|
+
cost_rate_e: [:binary, nil],
|
|
2631
|
+
cost_rate_table: [:short, nil],
|
|
2632
|
+
cost_variance: [:currency, nil],
|
|
2633
|
+
created: [:date, nil],
|
|
2634
|
+
currency_unique_id: [:integer, nil],
|
|
2635
|
+
cv: [:currency, nil],
|
|
2636
|
+
date1: [:date, nil],
|
|
2637
|
+
date10: [:date, nil],
|
|
2638
|
+
date2: [:date, nil],
|
|
2639
|
+
date3: [:date, nil],
|
|
2640
|
+
date4: [:date, nil],
|
|
2641
|
+
date5: [:date, nil],
|
|
2642
|
+
date6: [:date, nil],
|
|
2643
|
+
date7: [:date, nil],
|
|
2644
|
+
date8: [:date, nil],
|
|
2645
|
+
date9: [:date, nil],
|
|
2646
|
+
default_assignment_owner: [:string, nil],
|
|
2647
|
+
default_units: [:units, nil],
|
|
2648
|
+
description: [:string, nil],
|
|
2649
|
+
duration1: [:duration, :duration1_units],
|
|
2650
|
+
duration10: [:duration, :duration10_units],
|
|
2651
|
+
duration10_units: [:time_units, nil],
|
|
2652
|
+
duration1_units: [:time_units, nil],
|
|
2653
|
+
duration2: [:duration, :duration2_units],
|
|
2654
|
+
duration2_units: [:time_units, nil],
|
|
2655
|
+
duration3: [:duration, :duration3_units],
|
|
2656
|
+
duration3_units: [:time_units, nil],
|
|
2657
|
+
duration4: [:duration, :duration4_units],
|
|
2658
|
+
duration4_units: [:time_units, nil],
|
|
2659
|
+
duration5: [:duration, :duration5_units],
|
|
2660
|
+
duration5_units: [:time_units, nil],
|
|
2661
|
+
duration6: [:duration, :duration6_units],
|
|
2662
|
+
duration6_units: [:time_units, nil],
|
|
2663
|
+
duration7: [:duration, :duration7_units],
|
|
2664
|
+
duration7_units: [:time_units, nil],
|
|
2665
|
+
duration8: [:duration, :duration8_units],
|
|
2666
|
+
duration8_units: [:time_units, nil],
|
|
2667
|
+
duration9: [:duration, :duration9_units],
|
|
2668
|
+
duration9_units: [:time_units, nil],
|
|
2669
|
+
email_address: [:string, nil],
|
|
2670
|
+
engagement_status: [:string, nil],
|
|
2671
|
+
enterprise: [:boolean, nil],
|
|
2672
|
+
enterprise_base_calendar: [:boolean, nil],
|
|
2673
|
+
enterprise_checked_out_by: [:string, nil],
|
|
2674
|
+
enterprise_cost1: [:currency, nil],
|
|
2675
|
+
enterprise_cost10: [:currency, nil],
|
|
2676
|
+
enterprise_cost2: [:currency, nil],
|
|
2677
|
+
enterprise_cost3: [:currency, nil],
|
|
2678
|
+
enterprise_cost4: [:currency, nil],
|
|
2679
|
+
enterprise_cost5: [:currency, nil],
|
|
2680
|
+
enterprise_cost6: [:currency, nil],
|
|
2681
|
+
enterprise_cost7: [:currency, nil],
|
|
2682
|
+
enterprise_cost8: [:currency, nil],
|
|
2683
|
+
enterprise_cost9: [:currency, nil],
|
|
2684
|
+
enterprise_data: [:binary, nil],
|
|
2685
|
+
enterprise_date1: [:date, nil],
|
|
2686
|
+
enterprise_date10: [:date, nil],
|
|
2687
|
+
enterprise_date11: [:date, nil],
|
|
2688
|
+
enterprise_date12: [:date, nil],
|
|
2689
|
+
enterprise_date13: [:date, nil],
|
|
2690
|
+
enterprise_date14: [:date, nil],
|
|
2691
|
+
enterprise_date15: [:date, nil],
|
|
2692
|
+
enterprise_date16: [:date, nil],
|
|
2693
|
+
enterprise_date17: [:date, nil],
|
|
2694
|
+
enterprise_date18: [:date, nil],
|
|
2695
|
+
enterprise_date19: [:date, nil],
|
|
2696
|
+
enterprise_date2: [:date, nil],
|
|
2697
|
+
enterprise_date20: [:date, nil],
|
|
2698
|
+
enterprise_date21: [:date, nil],
|
|
2699
|
+
enterprise_date22: [:date, nil],
|
|
2700
|
+
enterprise_date23: [:date, nil],
|
|
2701
|
+
enterprise_date24: [:date, nil],
|
|
2702
|
+
enterprise_date25: [:date, nil],
|
|
2703
|
+
enterprise_date26: [:date, nil],
|
|
2704
|
+
enterprise_date27: [:date, nil],
|
|
2705
|
+
enterprise_date28: [:date, nil],
|
|
2706
|
+
enterprise_date29: [:date, nil],
|
|
2707
|
+
enterprise_date3: [:date, nil],
|
|
2708
|
+
enterprise_date30: [:date, nil],
|
|
2709
|
+
enterprise_date4: [:date, nil],
|
|
2710
|
+
enterprise_date5: [:date, nil],
|
|
2711
|
+
enterprise_date6: [:date, nil],
|
|
2712
|
+
enterprise_date7: [:date, nil],
|
|
2713
|
+
enterprise_date8: [:date, nil],
|
|
2714
|
+
enterprise_date9: [:date, nil],
|
|
2715
|
+
enterprise_duration1: [:duration, :enterprise_duration1_units],
|
|
2716
|
+
enterprise_duration10: [:duration, :enterprise_duration10_units],
|
|
2717
|
+
enterprise_duration10_units: [:time_units, nil],
|
|
2718
|
+
enterprise_duration1_units: [:time_units, nil],
|
|
2719
|
+
enterprise_duration2: [:duration, :enterprise_duration2_units],
|
|
2720
|
+
enterprise_duration2_units: [:time_units, nil],
|
|
2721
|
+
enterprise_duration3: [:duration, :enterprise_duration3_units],
|
|
2722
|
+
enterprise_duration3_units: [:time_units, nil],
|
|
2723
|
+
enterprise_duration4: [:duration, :enterprise_duration4_units],
|
|
2724
|
+
enterprise_duration4_units: [:time_units, nil],
|
|
2725
|
+
enterprise_duration5: [:duration, :enterprise_duration5_units],
|
|
2726
|
+
enterprise_duration5_units: [:time_units, nil],
|
|
2727
|
+
enterprise_duration6: [:duration, :enterprise_duration6_units],
|
|
2728
|
+
enterprise_duration6_units: [:time_units, nil],
|
|
2729
|
+
enterprise_duration7: [:duration, :enterprise_duration7_units],
|
|
2730
|
+
enterprise_duration7_units: [:time_units, nil],
|
|
2731
|
+
enterprise_duration8: [:duration, :enterprise_duration8_units],
|
|
2732
|
+
enterprise_duration8_units: [:time_units, nil],
|
|
2733
|
+
enterprise_duration9: [:duration, :enterprise_duration9_units],
|
|
2734
|
+
enterprise_duration9_units: [:time_units, nil],
|
|
2735
|
+
enterprise_flag1: [:boolean, nil],
|
|
2736
|
+
enterprise_flag10: [:boolean, nil],
|
|
2737
|
+
enterprise_flag11: [:boolean, nil],
|
|
2738
|
+
enterprise_flag12: [:boolean, nil],
|
|
2739
|
+
enterprise_flag13: [:boolean, nil],
|
|
2740
|
+
enterprise_flag14: [:boolean, nil],
|
|
2741
|
+
enterprise_flag15: [:boolean, nil],
|
|
2742
|
+
enterprise_flag16: [:boolean, nil],
|
|
2743
|
+
enterprise_flag17: [:boolean, nil],
|
|
2744
|
+
enterprise_flag18: [:boolean, nil],
|
|
2745
|
+
enterprise_flag19: [:boolean, nil],
|
|
2746
|
+
enterprise_flag2: [:boolean, nil],
|
|
2747
|
+
enterprise_flag20: [:boolean, nil],
|
|
2748
|
+
enterprise_flag3: [:boolean, nil],
|
|
2749
|
+
enterprise_flag4: [:boolean, nil],
|
|
2750
|
+
enterprise_flag5: [:boolean, nil],
|
|
2751
|
+
enterprise_flag6: [:boolean, nil],
|
|
2752
|
+
enterprise_flag7: [:boolean, nil],
|
|
2753
|
+
enterprise_flag8: [:boolean, nil],
|
|
2754
|
+
enterprise_flag9: [:boolean, nil],
|
|
2755
|
+
enterprise_is_checked_out: [:boolean, nil],
|
|
2756
|
+
enterprise_last_modified_date: [:date, nil],
|
|
2757
|
+
enterprise_multi_value20: [:string, nil],
|
|
2758
|
+
enterprise_multi_value21: [:string, nil],
|
|
2759
|
+
enterprise_multi_value22: [:string, nil],
|
|
2760
|
+
enterprise_multi_value23: [:string, nil],
|
|
2761
|
+
enterprise_multi_value24: [:string, nil],
|
|
2762
|
+
enterprise_multi_value25: [:string, nil],
|
|
2763
|
+
enterprise_multi_value26: [:string, nil],
|
|
2764
|
+
enterprise_multi_value27: [:string, nil],
|
|
2765
|
+
enterprise_multi_value28: [:string, nil],
|
|
2766
|
+
enterprise_multi_value29: [:string, nil],
|
|
2767
|
+
enterprise_name_used: [:string, nil],
|
|
2768
|
+
enterprise_number1: [:numeric, nil],
|
|
2769
|
+
enterprise_number10: [:numeric, nil],
|
|
2770
|
+
enterprise_number11: [:numeric, nil],
|
|
2771
|
+
enterprise_number12: [:numeric, nil],
|
|
2772
|
+
enterprise_number13: [:numeric, nil],
|
|
2773
|
+
enterprise_number14: [:numeric, nil],
|
|
2774
|
+
enterprise_number15: [:numeric, nil],
|
|
2775
|
+
enterprise_number16: [:numeric, nil],
|
|
2776
|
+
enterprise_number17: [:numeric, nil],
|
|
2777
|
+
enterprise_number18: [:numeric, nil],
|
|
2778
|
+
enterprise_number19: [:numeric, nil],
|
|
2779
|
+
enterprise_number2: [:numeric, nil],
|
|
2780
|
+
enterprise_number20: [:numeric, nil],
|
|
2781
|
+
enterprise_number21: [:numeric, nil],
|
|
2782
|
+
enterprise_number22: [:numeric, nil],
|
|
2783
|
+
enterprise_number23: [:numeric, nil],
|
|
2784
|
+
enterprise_number24: [:numeric, nil],
|
|
2785
|
+
enterprise_number25: [:numeric, nil],
|
|
2786
|
+
enterprise_number26: [:numeric, nil],
|
|
2787
|
+
enterprise_number27: [:numeric, nil],
|
|
2788
|
+
enterprise_number28: [:numeric, nil],
|
|
2789
|
+
enterprise_number29: [:numeric, nil],
|
|
2790
|
+
enterprise_number3: [:numeric, nil],
|
|
2791
|
+
enterprise_number30: [:numeric, nil],
|
|
2792
|
+
enterprise_number31: [:numeric, nil],
|
|
2793
|
+
enterprise_number32: [:numeric, nil],
|
|
2794
|
+
enterprise_number33: [:numeric, nil],
|
|
2795
|
+
enterprise_number34: [:numeric, nil],
|
|
2796
|
+
enterprise_number35: [:numeric, nil],
|
|
2797
|
+
enterprise_number36: [:numeric, nil],
|
|
2798
|
+
enterprise_number37: [:numeric, nil],
|
|
2799
|
+
enterprise_number38: [:numeric, nil],
|
|
2800
|
+
enterprise_number39: [:numeric, nil],
|
|
2801
|
+
enterprise_number4: [:numeric, nil],
|
|
2802
|
+
enterprise_number40: [:numeric, nil],
|
|
2803
|
+
enterprise_number5: [:numeric, nil],
|
|
2804
|
+
enterprise_number6: [:numeric, nil],
|
|
2805
|
+
enterprise_number7: [:numeric, nil],
|
|
2806
|
+
enterprise_number8: [:numeric, nil],
|
|
2807
|
+
enterprise_number9: [:numeric, nil],
|
|
2808
|
+
enterprise_outline_code1: [:string, nil],
|
|
2809
|
+
enterprise_outline_code10: [:string, nil],
|
|
2810
|
+
enterprise_outline_code11: [:string, nil],
|
|
2811
|
+
enterprise_outline_code12: [:string, nil],
|
|
2812
|
+
enterprise_outline_code13: [:string, nil],
|
|
2813
|
+
enterprise_outline_code14: [:string, nil],
|
|
2814
|
+
enterprise_outline_code15: [:string, nil],
|
|
2815
|
+
enterprise_outline_code16: [:string, nil],
|
|
2816
|
+
enterprise_outline_code17: [:string, nil],
|
|
2817
|
+
enterprise_outline_code18: [:string, nil],
|
|
2818
|
+
enterprise_outline_code19: [:string, nil],
|
|
2819
|
+
enterprise_outline_code2: [:string, nil],
|
|
2820
|
+
enterprise_outline_code20: [:string, nil],
|
|
2821
|
+
enterprise_outline_code21: [:string, nil],
|
|
2822
|
+
enterprise_outline_code22: [:string, nil],
|
|
2823
|
+
enterprise_outline_code23: [:string, nil],
|
|
2824
|
+
enterprise_outline_code24: [:string, nil],
|
|
2825
|
+
enterprise_outline_code25: [:string, nil],
|
|
2826
|
+
enterprise_outline_code26: [:string, nil],
|
|
2827
|
+
enterprise_outline_code27: [:string, nil],
|
|
2828
|
+
enterprise_outline_code28: [:string, nil],
|
|
2829
|
+
enterprise_outline_code29: [:string, nil],
|
|
2830
|
+
enterprise_outline_code3: [:string, nil],
|
|
2831
|
+
enterprise_outline_code4: [:string, nil],
|
|
2832
|
+
enterprise_outline_code5: [:string, nil],
|
|
2833
|
+
enterprise_outline_code6: [:string, nil],
|
|
2834
|
+
enterprise_outline_code7: [:string, nil],
|
|
2835
|
+
enterprise_outline_code8: [:string, nil],
|
|
2836
|
+
enterprise_outline_code9: [:string, nil],
|
|
2837
|
+
enterprise_rbs: [:string, nil],
|
|
2838
|
+
enterprise_required_values: [:boolean, nil],
|
|
2839
|
+
enterprise_team_member: [:boolean, nil],
|
|
2840
|
+
enterprise_text1: [:string, nil],
|
|
2841
|
+
enterprise_text10: [:string, nil],
|
|
2842
|
+
enterprise_text11: [:string, nil],
|
|
2843
|
+
enterprise_text12: [:string, nil],
|
|
2844
|
+
enterprise_text13: [:string, nil],
|
|
2845
|
+
enterprise_text14: [:string, nil],
|
|
2846
|
+
enterprise_text15: [:string, nil],
|
|
2847
|
+
enterprise_text16: [:string, nil],
|
|
2848
|
+
enterprise_text17: [:string, nil],
|
|
2849
|
+
enterprise_text18: [:string, nil],
|
|
2850
|
+
enterprise_text19: [:string, nil],
|
|
2851
|
+
enterprise_text2: [:string, nil],
|
|
2852
|
+
enterprise_text20: [:string, nil],
|
|
2853
|
+
enterprise_text21: [:string, nil],
|
|
2854
|
+
enterprise_text22: [:string, nil],
|
|
2855
|
+
enterprise_text23: [:string, nil],
|
|
2856
|
+
enterprise_text24: [:string, nil],
|
|
2857
|
+
enterprise_text25: [:string, nil],
|
|
2858
|
+
enterprise_text26: [:string, nil],
|
|
2859
|
+
enterprise_text27: [:string, nil],
|
|
2860
|
+
enterprise_text28: [:string, nil],
|
|
2861
|
+
enterprise_text29: [:string, nil],
|
|
2862
|
+
enterprise_text3: [:string, nil],
|
|
2863
|
+
enterprise_text30: [:string, nil],
|
|
2864
|
+
enterprise_text31: [:string, nil],
|
|
2865
|
+
enterprise_text32: [:string, nil],
|
|
2866
|
+
enterprise_text33: [:string, nil],
|
|
2867
|
+
enterprise_text34: [:string, nil],
|
|
2868
|
+
enterprise_text35: [:string, nil],
|
|
2869
|
+
enterprise_text36: [:string, nil],
|
|
2870
|
+
enterprise_text37: [:string, nil],
|
|
2871
|
+
enterprise_text38: [:string, nil],
|
|
2872
|
+
enterprise_text39: [:string, nil],
|
|
2873
|
+
enterprise_text4: [:string, nil],
|
|
2874
|
+
enterprise_text40: [:string, nil],
|
|
2875
|
+
enterprise_text5: [:string, nil],
|
|
2876
|
+
enterprise_text6: [:string, nil],
|
|
2877
|
+
enterprise_text7: [:string, nil],
|
|
2878
|
+
enterprise_text8: [:string, nil],
|
|
2879
|
+
enterprise_text9: [:string, nil],
|
|
2880
|
+
enterprise_unique_id: [:integer, nil],
|
|
2881
|
+
error_message: [:string, nil],
|
|
2882
|
+
expenses_only: [:boolean, nil],
|
|
2883
|
+
finish: [:date, nil],
|
|
2884
|
+
finish1: [:date, nil],
|
|
2885
|
+
finish10: [:date, nil],
|
|
2886
|
+
finish2: [:date, nil],
|
|
2887
|
+
finish3: [:date, nil],
|
|
2888
|
+
finish4: [:date, nil],
|
|
2889
|
+
finish5: [:date, nil],
|
|
2890
|
+
finish6: [:date, nil],
|
|
2891
|
+
finish7: [:date, nil],
|
|
2892
|
+
finish8: [:date, nil],
|
|
2893
|
+
finish9: [:date, nil],
|
|
2894
|
+
flag1: [:boolean, nil],
|
|
2895
|
+
flag10: [:boolean, nil],
|
|
2896
|
+
flag11: [:boolean, nil],
|
|
2897
|
+
flag12: [:boolean, nil],
|
|
2898
|
+
flag13: [:boolean, nil],
|
|
2899
|
+
flag14: [:boolean, nil],
|
|
2900
|
+
flag15: [:boolean, nil],
|
|
2901
|
+
flag16: [:boolean, nil],
|
|
2902
|
+
flag17: [:boolean, nil],
|
|
2903
|
+
flag18: [:boolean, nil],
|
|
2904
|
+
flag19: [:boolean, nil],
|
|
2905
|
+
flag2: [:boolean, nil],
|
|
2906
|
+
flag20: [:boolean, nil],
|
|
2907
|
+
flag3: [:boolean, nil],
|
|
2908
|
+
flag4: [:boolean, nil],
|
|
2909
|
+
flag5: [:boolean, nil],
|
|
2910
|
+
flag6: [:boolean, nil],
|
|
2911
|
+
flag7: [:boolean, nil],
|
|
2912
|
+
flag8: [:boolean, nil],
|
|
2913
|
+
flag9: [:boolean, nil],
|
|
2914
|
+
generic: [:boolean, nil],
|
|
2915
|
+
group: [:string, nil],
|
|
2916
|
+
group_by_summary: [:boolean, nil],
|
|
2917
|
+
guid: [:guid, nil],
|
|
2918
|
+
hyperlink: [:string, nil],
|
|
2919
|
+
hyperlink_address: [:string, nil],
|
|
2920
|
+
hyperlink_data: [:binary, nil],
|
|
2921
|
+
hyperlink_href: [:string, nil],
|
|
2922
|
+
hyperlink_screen_tip: [:string, nil],
|
|
2923
|
+
hyperlink_subaddress: [:string, nil],
|
|
2924
|
+
id: [:integer, nil],
|
|
2925
|
+
import: [:boolean, nil],
|
|
2926
|
+
inactive: [:boolean, nil],
|
|
2927
|
+
index: [:integer, nil],
|
|
2928
|
+
indicators: [:string, nil],
|
|
2929
|
+
initials: [:string, nil],
|
|
2930
|
+
leveling_delay: [:duration, nil],
|
|
2931
|
+
linked_fields: [:boolean, nil],
|
|
2932
|
+
location_unique_id: [:integer, nil],
|
|
2933
|
+
material: [:numeric, nil],
|
|
2934
|
+
material_label: [:string, nil],
|
|
2935
|
+
max_units: [:units, nil],
|
|
2936
|
+
modify_on_integrate: [:boolean, nil],
|
|
2937
|
+
name: [:string, nil],
|
|
2938
|
+
notes: [:notes, nil],
|
|
2939
|
+
number1: [:numeric, nil],
|
|
2940
|
+
number10: [:numeric, nil],
|
|
2941
|
+
number11: [:numeric, nil],
|
|
2942
|
+
number12: [:numeric, nil],
|
|
2943
|
+
number13: [:numeric, nil],
|
|
2944
|
+
number14: [:numeric, nil],
|
|
2945
|
+
number15: [:numeric, nil],
|
|
2946
|
+
number16: [:numeric, nil],
|
|
2947
|
+
number17: [:numeric, nil],
|
|
2948
|
+
number18: [:numeric, nil],
|
|
2949
|
+
number19: [:numeric, nil],
|
|
2950
|
+
number2: [:numeric, nil],
|
|
2951
|
+
number20: [:numeric, nil],
|
|
2952
|
+
number3: [:numeric, nil],
|
|
2953
|
+
number4: [:numeric, nil],
|
|
2954
|
+
number5: [:numeric, nil],
|
|
2955
|
+
number6: [:numeric, nil],
|
|
2956
|
+
number7: [:numeric, nil],
|
|
2957
|
+
number8: [:numeric, nil],
|
|
2958
|
+
number9: [:numeric, nil],
|
|
2959
|
+
objects: [:numeric, nil],
|
|
2960
|
+
outline_code1: [:string, nil],
|
|
2961
|
+
outline_code10: [:string, nil],
|
|
2962
|
+
outline_code10_index: [:integer, nil],
|
|
2963
|
+
outline_code1_index: [:integer, nil],
|
|
2964
|
+
outline_code2: [:string, nil],
|
|
2965
|
+
outline_code2_index: [:integer, nil],
|
|
2966
|
+
outline_code3: [:string, nil],
|
|
2967
|
+
outline_code3_index: [:integer, nil],
|
|
2968
|
+
outline_code4: [:string, nil],
|
|
2969
|
+
outline_code4_index: [:integer, nil],
|
|
2970
|
+
outline_code5: [:string, nil],
|
|
2971
|
+
outline_code5_index: [:integer, nil],
|
|
2972
|
+
outline_code6: [:string, nil],
|
|
2973
|
+
outline_code6_index: [:integer, nil],
|
|
2974
|
+
outline_code7: [:string, nil],
|
|
2975
|
+
outline_code7_index: [:integer, nil],
|
|
2976
|
+
outline_code8: [:string, nil],
|
|
2977
|
+
outline_code8_index: [:integer, nil],
|
|
2978
|
+
outline_code9: [:string, nil],
|
|
2979
|
+
outline_code9_index: [:integer, nil],
|
|
2980
|
+
overallocated: [:boolean, nil],
|
|
2981
|
+
overtime_cost: [:currency, nil],
|
|
2982
|
+
overtime_rate: [:rate, nil],
|
|
2983
|
+
overtime_rate_units: [:rate_units, nil],
|
|
2984
|
+
overtime_work: [:work, nil],
|
|
2985
|
+
parent_id: [:integer, nil],
|
|
2986
|
+
peak: [:units, nil],
|
|
2987
|
+
per_day: [:numeric, nil],
|
|
2988
|
+
percent_work_complete: [:percentage, nil],
|
|
2989
|
+
period_dur: [:numeric, nil],
|
|
2990
|
+
phone: [:string, nil],
|
|
2991
|
+
phonetics: [:string, nil],
|
|
2992
|
+
planned_cost: [:currency, nil],
|
|
2993
|
+
planned_material: [:numeric, nil],
|
|
2994
|
+
planned_work: [:work, nil],
|
|
2995
|
+
pool: [:numeric, nil],
|
|
2996
|
+
primary_role_unique_id: [:integer, nil],
|
|
2997
|
+
priority: [:numeric, nil],
|
|
2998
|
+
project: [:string, nil],
|
|
2999
|
+
proposed_finish: [:date, nil],
|
|
3000
|
+
proposed_max_units: [:units, nil],
|
|
3001
|
+
proposed_start: [:date, nil],
|
|
3002
|
+
rate: [:numeric, nil],
|
|
3003
|
+
regular_work: [:work, nil],
|
|
3004
|
+
remaining_cost: [:currency, nil],
|
|
3005
|
+
remaining_material: [:numeric, nil],
|
|
3006
|
+
remaining_overtime_cost: [:currency, nil],
|
|
3007
|
+
remaining_overtime_work: [:work, nil],
|
|
3008
|
+
remaining_regular_cost: [:currency, nil],
|
|
3009
|
+
remaining_regular_work: [:work, nil],
|
|
3010
|
+
remaining_work: [:work, nil],
|
|
3011
|
+
request_demand: [:string, nil],
|
|
3012
|
+
resource_code_values: [:code_values, nil],
|
|
3013
|
+
resource_id: [:string, nil],
|
|
3014
|
+
response_pending: [:boolean, nil],
|
|
3015
|
+
role: [:boolean, nil],
|
|
3016
|
+
role_code_values: [:code_values, nil],
|
|
3017
|
+
sequence_number: [:integer, nil],
|
|
3018
|
+
shift_unique_id: [:integer, nil],
|
|
3019
|
+
standard_rate: [:rate, nil],
|
|
3020
|
+
standard_rate_units: [:rate_units, nil],
|
|
3021
|
+
start: [:date, nil],
|
|
3022
|
+
start1: [:date, nil],
|
|
3023
|
+
start10: [:date, nil],
|
|
3024
|
+
start2: [:date, nil],
|
|
3025
|
+
start3: [:date, nil],
|
|
3026
|
+
start4: [:date, nil],
|
|
3027
|
+
start5: [:date, nil],
|
|
3028
|
+
start6: [:date, nil],
|
|
3029
|
+
start7: [:date, nil],
|
|
3030
|
+
start8: [:date, nil],
|
|
3031
|
+
start9: [:date, nil],
|
|
3032
|
+
subproject_resource_unique_id: [:integer, nil],
|
|
3033
|
+
summary: [:string, nil],
|
|
3034
|
+
supply_reference: [:string, nil],
|
|
3035
|
+
sv: [:currency, nil],
|
|
3036
|
+
task_outline_number: [:string, nil],
|
|
3037
|
+
task_summary_name: [:string, nil],
|
|
3038
|
+
team_assignment_pool: [:boolean, nil],
|
|
3039
|
+
team_status_pending: [:boolean, nil],
|
|
3040
|
+
text1: [:string, nil],
|
|
3041
|
+
text10: [:string, nil],
|
|
3042
|
+
text11: [:string, nil],
|
|
3043
|
+
text12: [:string, nil],
|
|
3044
|
+
text13: [:string, nil],
|
|
3045
|
+
text14: [:string, nil],
|
|
3046
|
+
text15: [:string, nil],
|
|
3047
|
+
text16: [:string, nil],
|
|
3048
|
+
text17: [:string, nil],
|
|
3049
|
+
text18: [:string, nil],
|
|
3050
|
+
text19: [:string, nil],
|
|
3051
|
+
text2: [:string, nil],
|
|
3052
|
+
text20: [:string, nil],
|
|
3053
|
+
text21: [:string, nil],
|
|
3054
|
+
text22: [:string, nil],
|
|
3055
|
+
text23: [:string, nil],
|
|
3056
|
+
text24: [:string, nil],
|
|
3057
|
+
text25: [:string, nil],
|
|
3058
|
+
text26: [:string, nil],
|
|
3059
|
+
text27: [:string, nil],
|
|
3060
|
+
text28: [:string, nil],
|
|
3061
|
+
text29: [:string, nil],
|
|
3062
|
+
text3: [:string, nil],
|
|
3063
|
+
text30: [:string, nil],
|
|
3064
|
+
text4: [:string, nil],
|
|
3065
|
+
text5: [:string, nil],
|
|
3066
|
+
text6: [:string, nil],
|
|
3067
|
+
text7: [:string, nil],
|
|
3068
|
+
text8: [:string, nil],
|
|
3069
|
+
text9: [:string, nil],
|
|
3070
|
+
type: [:resource_type, nil],
|
|
3071
|
+
unavailable: [:string, nil],
|
|
3072
|
+
unique_id: [:integer, nil],
|
|
3073
|
+
unit: [:string, nil],
|
|
3074
|
+
unit_of_measure_unique_id: [:integer, nil],
|
|
3075
|
+
update_needed: [:boolean, nil],
|
|
3076
|
+
vac: [:currency, nil],
|
|
3077
|
+
wbs: [:string, nil],
|
|
3078
|
+
windows_user_account: [:string, nil],
|
|
3079
|
+
work: [:work, nil],
|
|
3080
|
+
work_contour: [:work_contour, nil],
|
|
3081
|
+
work_variance: [:duration, nil],
|
|
3082
|
+
workgroup: [:workgroup, nil],
|
|
3083
|
+
}.freeze
|
|
3084
|
+
|
|
3085
|
+
ASSIGNMENT_FIELDS = {
|
|
3086
|
+
0 => :unique_id,
|
|
3087
|
+
1 => :task_unique_id,
|
|
3088
|
+
2 => :resource_unique_id,
|
|
3089
|
+
3 => :task_id,
|
|
3090
|
+
4 => :resource_id,
|
|
3091
|
+
5 => :task_name,
|
|
3092
|
+
6 => :resource_name,
|
|
3093
|
+
7 => :assignment_units,
|
|
3094
|
+
8 => :work,
|
|
3095
|
+
9 => :overtime_work,
|
|
3096
|
+
10 => :actual_work,
|
|
3097
|
+
11 => :regular_work,
|
|
3098
|
+
12 => :remaining_work,
|
|
3099
|
+
13 => :actual_overtime_work,
|
|
3100
|
+
14 => :remaining_overtime_work,
|
|
3101
|
+
16 => :baseline_work,
|
|
3102
|
+
19 => :peak,
|
|
3103
|
+
20 => :start,
|
|
3104
|
+
21 => :finish,
|
|
3105
|
+
22 => :actual_start,
|
|
3106
|
+
23 => :actual_finish,
|
|
3107
|
+
24 => :resume,
|
|
3108
|
+
25 => :assignment_delay,
|
|
3109
|
+
26 => :cost,
|
|
3110
|
+
27 => :overtime_cost,
|
|
3111
|
+
28 => :actual_cost,
|
|
3112
|
+
29 => :remaining_cost,
|
|
3113
|
+
30 => :actual_overtime_cost,
|
|
3114
|
+
31 => :remaining_overtime_cost,
|
|
3115
|
+
32 => :baseline_cost,
|
|
3116
|
+
34 => :bcws,
|
|
3117
|
+
35 => :bcwp,
|
|
3118
|
+
36 => :acwp,
|
|
3119
|
+
37 => :sv,
|
|
3120
|
+
38 => :cost_variance,
|
|
3121
|
+
39 => :work_contour,
|
|
3122
|
+
43 => :percent_work_complete,
|
|
3123
|
+
44 => :project,
|
|
3124
|
+
49 => :raw_timephased_remaining_regular_work,
|
|
3125
|
+
50 => :raw_timephased_actual_regular_work,
|
|
3126
|
+
51 => :raw_timephased_actual_overtime_work,
|
|
3127
|
+
52 => :raw_timephased_baseline_work,
|
|
3128
|
+
53 => :raw_timephased_baseline_cost,
|
|
3129
|
+
55 => :leveling_delay_units,
|
|
3130
|
+
71 => :notes,
|
|
3131
|
+
72 => :confirmed,
|
|
3132
|
+
73 => :response_pending,
|
|
3133
|
+
74 => :update_needed,
|
|
3134
|
+
75 => :team_status_pending,
|
|
3135
|
+
80 => :cost_rate_table,
|
|
3136
|
+
87 => :timephased_actual_irregular_work,
|
|
3137
|
+
88 => :text1,
|
|
3138
|
+
89 => :text2,
|
|
3139
|
+
90 => :text3,
|
|
3140
|
+
91 => :text4,
|
|
3141
|
+
92 => :text5,
|
|
3142
|
+
93 => :text6,
|
|
3143
|
+
94 => :text7,
|
|
3144
|
+
95 => :text8,
|
|
3145
|
+
96 => :text9,
|
|
3146
|
+
97 => :text10,
|
|
3147
|
+
98 => :start1,
|
|
3148
|
+
99 => :start2,
|
|
3149
|
+
100 => :start3,
|
|
3150
|
+
101 => :start4,
|
|
3151
|
+
102 => :start5,
|
|
3152
|
+
103 => :finish1,
|
|
3153
|
+
104 => :finish2,
|
|
3154
|
+
105 => :finish3,
|
|
3155
|
+
106 => :finish4,
|
|
3156
|
+
107 => :finish5,
|
|
3157
|
+
108 => :number1,
|
|
3158
|
+
109 => :number2,
|
|
3159
|
+
110 => :number3,
|
|
3160
|
+
111 => :number4,
|
|
3161
|
+
112 => :number5,
|
|
3162
|
+
113 => :duration1,
|
|
3163
|
+
114 => :duration2,
|
|
3164
|
+
115 => :duration3,
|
|
3165
|
+
116 => :duration1_units,
|
|
3166
|
+
117 => :duration2_units,
|
|
3167
|
+
118 => :duration3_units,
|
|
3168
|
+
119 => :cost1,
|
|
3169
|
+
120 => :cost2,
|
|
3170
|
+
121 => :cost3,
|
|
3171
|
+
122 => :flag10,
|
|
3172
|
+
123 => :flag1,
|
|
3173
|
+
124 => :flag2,
|
|
3174
|
+
125 => :flag3,
|
|
3175
|
+
126 => :flag4,
|
|
3176
|
+
127 => :flag5,
|
|
3177
|
+
128 => :flag6,
|
|
3178
|
+
129 => :flag7,
|
|
3179
|
+
130 => :flag8,
|
|
3180
|
+
131 => :flag9,
|
|
3181
|
+
132 => :linked_fields,
|
|
3182
|
+
135 => :overallocated,
|
|
3183
|
+
142 => :task_summary_name,
|
|
3184
|
+
145 => :leveling_delay,
|
|
3185
|
+
146 => :baseline_start,
|
|
3186
|
+
147 => :baseline_finish,
|
|
3187
|
+
150 => :hyperlink_data,
|
|
3188
|
+
152 => :hyperlink,
|
|
3189
|
+
153 => :hyperlink_address,
|
|
3190
|
+
154 => :hyperlink_subaddress,
|
|
3191
|
+
155 => :hyperlink_href,
|
|
3192
|
+
159 => :cost4,
|
|
3193
|
+
160 => :cost5,
|
|
3194
|
+
161 => :cost6,
|
|
3195
|
+
162 => :cost7,
|
|
3196
|
+
163 => :cost8,
|
|
3197
|
+
164 => :cost9,
|
|
3198
|
+
165 => :cost10,
|
|
3199
|
+
166 => :date1,
|
|
3200
|
+
167 => :date2,
|
|
3201
|
+
168 => :date3,
|
|
3202
|
+
169 => :date4,
|
|
3203
|
+
170 => :date5,
|
|
3204
|
+
171 => :date6,
|
|
3205
|
+
172 => :date7,
|
|
3206
|
+
173 => :date8,
|
|
3207
|
+
174 => :date9,
|
|
3208
|
+
175 => :date10,
|
|
3209
|
+
176 => :duration4,
|
|
3210
|
+
177 => :duration5,
|
|
3211
|
+
178 => :duration6,
|
|
3212
|
+
179 => :duration7,
|
|
3213
|
+
180 => :duration8,
|
|
3214
|
+
181 => :duration9,
|
|
3215
|
+
182 => :duration10,
|
|
3216
|
+
183 => :finish6,
|
|
3217
|
+
184 => :finish7,
|
|
3218
|
+
185 => :finish8,
|
|
3219
|
+
186 => :finish9,
|
|
3220
|
+
187 => :finish10,
|
|
3221
|
+
188 => :flag11,
|
|
3222
|
+
189 => :flag12,
|
|
3223
|
+
190 => :flag13,
|
|
3224
|
+
191 => :flag14,
|
|
3225
|
+
192 => :flag15,
|
|
3226
|
+
193 => :flag16,
|
|
3227
|
+
194 => :flag17,
|
|
3228
|
+
195 => :flag18,
|
|
3229
|
+
196 => :flag19,
|
|
3230
|
+
197 => :flag20,
|
|
3231
|
+
198 => :number6,
|
|
3232
|
+
199 => :number7,
|
|
3233
|
+
200 => :number8,
|
|
3234
|
+
201 => :number9,
|
|
3235
|
+
202 => :number10,
|
|
3236
|
+
203 => :number11,
|
|
3237
|
+
204 => :number12,
|
|
3238
|
+
205 => :number13,
|
|
3239
|
+
206 => :number14,
|
|
3240
|
+
207 => :number15,
|
|
3241
|
+
208 => :number16,
|
|
3242
|
+
209 => :number17,
|
|
3243
|
+
210 => :number18,
|
|
3244
|
+
211 => :number19,
|
|
3245
|
+
212 => :number20,
|
|
3246
|
+
213 => :start6,
|
|
3247
|
+
214 => :start7,
|
|
3248
|
+
215 => :start8,
|
|
3249
|
+
216 => :start9,
|
|
3250
|
+
217 => :start10,
|
|
3251
|
+
218 => :text11,
|
|
3252
|
+
219 => :text12,
|
|
3253
|
+
220 => :text13,
|
|
3254
|
+
221 => :text14,
|
|
3255
|
+
222 => :text15,
|
|
3256
|
+
223 => :text16,
|
|
3257
|
+
224 => :text17,
|
|
3258
|
+
225 => :text18,
|
|
3259
|
+
226 => :text19,
|
|
3260
|
+
227 => :text20,
|
|
3261
|
+
228 => :text21,
|
|
3262
|
+
229 => :text22,
|
|
3263
|
+
230 => :text23,
|
|
3264
|
+
231 => :text24,
|
|
3265
|
+
232 => :text25,
|
|
3266
|
+
233 => :text26,
|
|
3267
|
+
234 => :text27,
|
|
3268
|
+
235 => :text28,
|
|
3269
|
+
236 => :text29,
|
|
3270
|
+
237 => :text30,
|
|
3271
|
+
238 => :duration4_units,
|
|
3272
|
+
239 => :duration5_units,
|
|
3273
|
+
240 => :duration6_units,
|
|
3274
|
+
241 => :duration7_units,
|
|
3275
|
+
242 => :duration8_units,
|
|
3276
|
+
243 => :duration9_units,
|
|
3277
|
+
244 => :duration10_units,
|
|
3278
|
+
246 => :index,
|
|
3279
|
+
247 => :cv,
|
|
3280
|
+
248 => :work_variance,
|
|
3281
|
+
262 => :start_variance,
|
|
3282
|
+
263 => :finish_variance,
|
|
3283
|
+
264 => :stop,
|
|
3284
|
+
270 => :variable_rate_units,
|
|
3285
|
+
271 => :vac,
|
|
3286
|
+
275 => :fixed_material_assignment,
|
|
3287
|
+
276 => :resource_type,
|
|
3288
|
+
279 => :hyperlink_screen_tip,
|
|
3289
|
+
286 => :wbs,
|
|
3290
|
+
289 => :baseline1_work,
|
|
3291
|
+
290 => :baseline1_cost,
|
|
3292
|
+
291 => :raw_timephased_baseline1_work,
|
|
3293
|
+
292 => :raw_timephased_baseline1_cost,
|
|
3294
|
+
295 => :baseline1_start,
|
|
3295
|
+
296 => :baseline1_finish,
|
|
3296
|
+
298 => :baseline2_work,
|
|
3297
|
+
299 => :baseline2_cost,
|
|
3298
|
+
300 => :raw_timephased_baseline2_work,
|
|
3299
|
+
301 => :raw_timephased_baseline2_cost,
|
|
3300
|
+
304 => :baseline2_start,
|
|
3301
|
+
305 => :baseline2_finish,
|
|
3302
|
+
307 => :baseline3_work,
|
|
3303
|
+
308 => :baseline3_cost,
|
|
3304
|
+
309 => :raw_timephased_baseline3_work,
|
|
3305
|
+
310 => :raw_timephased_baseline3_cost,
|
|
3306
|
+
313 => :baseline3_start,
|
|
3307
|
+
314 => :baseline3_finish,
|
|
3308
|
+
316 => :baseline4_work,
|
|
3309
|
+
317 => :baseline4_cost,
|
|
3310
|
+
318 => :raw_timephased_baseline4_work,
|
|
3311
|
+
319 => :raw_timephased_baseline4_cost,
|
|
3312
|
+
322 => :baseline4_start,
|
|
3313
|
+
323 => :baseline4_finish,
|
|
3314
|
+
325 => :baseline5_work,
|
|
3315
|
+
326 => :baseline5_cost,
|
|
3316
|
+
327 => :raw_timephased_baseline5_work,
|
|
3317
|
+
328 => :raw_timephased_baseline5_cost,
|
|
3318
|
+
331 => :baseline5_start,
|
|
3319
|
+
332 => :baseline5_finish,
|
|
3320
|
+
334 => :baseline6_work,
|
|
3321
|
+
335 => :baseline6_cost,
|
|
3322
|
+
336 => :raw_timephased_baseline6_work,
|
|
3323
|
+
337 => :raw_timephased_baseline6_cost,
|
|
3324
|
+
340 => :baseline6_start,
|
|
3325
|
+
341 => :baseline6_finish,
|
|
3326
|
+
343 => :baseline7_work,
|
|
3327
|
+
344 => :baseline7_cost,
|
|
3328
|
+
345 => :raw_timephased_baseline7_work,
|
|
3329
|
+
346 => :raw_timephased_baseline7_cost,
|
|
3330
|
+
349 => :baseline7_start,
|
|
3331
|
+
350 => :baseline7_finish,
|
|
3332
|
+
352 => :baseline8_work,
|
|
3333
|
+
353 => :baseline8_cost,
|
|
3334
|
+
354 => :raw_timephased_baseline8_work,
|
|
3335
|
+
355 => :raw_timephased_baseline8_cost,
|
|
3336
|
+
358 => :baseline8_start,
|
|
3337
|
+
359 => :baseline8_finish,
|
|
3338
|
+
361 => :baseline9_work,
|
|
3339
|
+
362 => :baseline9_cost,
|
|
3340
|
+
363 => :raw_timephased_baseline9_work,
|
|
3341
|
+
364 => :raw_timephased_baseline9_cost,
|
|
3342
|
+
367 => :baseline9_start,
|
|
3343
|
+
368 => :baseline9_finish,
|
|
3344
|
+
370 => :baseline10_work,
|
|
3345
|
+
371 => :baseline10_cost,
|
|
3346
|
+
372 => :raw_timephased_baseline10_work,
|
|
3347
|
+
373 => :raw_timephased_baseline10_cost,
|
|
3348
|
+
376 => :baseline10_start,
|
|
3349
|
+
377 => :baseline10_finish,
|
|
3350
|
+
379 => :task_outline_number,
|
|
3351
|
+
381 => :enterprise_cost1,
|
|
3352
|
+
382 => :enterprise_cost2,
|
|
3353
|
+
383 => :enterprise_cost3,
|
|
3354
|
+
384 => :enterprise_cost4,
|
|
3355
|
+
385 => :enterprise_cost5,
|
|
3356
|
+
386 => :enterprise_cost6,
|
|
3357
|
+
387 => :enterprise_cost7,
|
|
3358
|
+
388 => :enterprise_cost8,
|
|
3359
|
+
389 => :enterprise_cost9,
|
|
3360
|
+
390 => :enterprise_cost10,
|
|
3361
|
+
391 => :enterprise_date1,
|
|
3362
|
+
392 => :enterprise_date2,
|
|
3363
|
+
393 => :enterprise_date3,
|
|
3364
|
+
394 => :enterprise_date4,
|
|
3365
|
+
395 => :enterprise_date5,
|
|
3366
|
+
396 => :enterprise_date6,
|
|
3367
|
+
397 => :enterprise_date7,
|
|
3368
|
+
398 => :enterprise_date8,
|
|
3369
|
+
399 => :enterprise_date9,
|
|
3370
|
+
400 => :enterprise_date10,
|
|
3371
|
+
401 => :enterprise_date11,
|
|
3372
|
+
402 => :enterprise_date12,
|
|
3373
|
+
403 => :enterprise_date13,
|
|
3374
|
+
404 => :enterprise_date14,
|
|
3375
|
+
405 => :enterprise_date15,
|
|
3376
|
+
406 => :enterprise_date16,
|
|
3377
|
+
407 => :enterprise_date17,
|
|
3378
|
+
408 => :enterprise_date18,
|
|
3379
|
+
409 => :enterprise_date19,
|
|
3380
|
+
410 => :enterprise_date20,
|
|
3381
|
+
411 => :enterprise_date21,
|
|
3382
|
+
412 => :enterprise_date22,
|
|
3383
|
+
413 => :enterprise_date23,
|
|
3384
|
+
414 => :enterprise_date24,
|
|
3385
|
+
415 => :enterprise_date25,
|
|
3386
|
+
416 => :enterprise_date26,
|
|
3387
|
+
417 => :enterprise_date27,
|
|
3388
|
+
418 => :enterprise_date28,
|
|
3389
|
+
419 => :enterprise_date29,
|
|
3390
|
+
420 => :enterprise_date30,
|
|
3391
|
+
421 => :enterprise_duration1,
|
|
3392
|
+
422 => :enterprise_duration2,
|
|
3393
|
+
423 => :enterprise_duration3,
|
|
3394
|
+
424 => :enterprise_duration4,
|
|
3395
|
+
425 => :enterprise_duration5,
|
|
3396
|
+
426 => :enterprise_duration6,
|
|
3397
|
+
427 => :enterprise_duration7,
|
|
3398
|
+
428 => :enterprise_duration8,
|
|
3399
|
+
429 => :enterprise_duration9,
|
|
3400
|
+
430 => :enterprise_duration10,
|
|
3401
|
+
441 => :enterprise_flag1,
|
|
3402
|
+
442 => :enterprise_flag2,
|
|
3403
|
+
443 => :enterprise_flag3,
|
|
3404
|
+
444 => :enterprise_flag4,
|
|
3405
|
+
445 => :enterprise_flag5,
|
|
3406
|
+
446 => :enterprise_flag6,
|
|
3407
|
+
447 => :enterprise_flag7,
|
|
3408
|
+
448 => :enterprise_flag8,
|
|
3409
|
+
449 => :enterprise_flag9,
|
|
3410
|
+
450 => :enterprise_flag10,
|
|
3411
|
+
451 => :enterprise_flag11,
|
|
3412
|
+
452 => :enterprise_flag12,
|
|
3413
|
+
453 => :enterprise_flag13,
|
|
3414
|
+
454 => :enterprise_flag14,
|
|
3415
|
+
455 => :enterprise_flag15,
|
|
3416
|
+
456 => :enterprise_flag16,
|
|
3417
|
+
457 => :enterprise_flag17,
|
|
3418
|
+
458 => :enterprise_flag18,
|
|
3419
|
+
459 => :enterprise_flag19,
|
|
3420
|
+
460 => :enterprise_flag20,
|
|
3421
|
+
461 => :enterprise_number1,
|
|
3422
|
+
462 => :enterprise_number2,
|
|
3423
|
+
463 => :enterprise_number3,
|
|
3424
|
+
464 => :enterprise_number4,
|
|
3425
|
+
465 => :enterprise_number5,
|
|
3426
|
+
466 => :enterprise_number6,
|
|
3427
|
+
467 => :enterprise_number7,
|
|
3428
|
+
468 => :enterprise_number8,
|
|
3429
|
+
469 => :enterprise_number9,
|
|
3430
|
+
470 => :enterprise_number10,
|
|
3431
|
+
471 => :enterprise_number11,
|
|
3432
|
+
472 => :enterprise_number12,
|
|
3433
|
+
473 => :enterprise_number13,
|
|
3434
|
+
474 => :enterprise_number14,
|
|
3435
|
+
475 => :enterprise_number15,
|
|
3436
|
+
476 => :enterprise_number16,
|
|
3437
|
+
477 => :enterprise_number17,
|
|
3438
|
+
478 => :enterprise_number18,
|
|
3439
|
+
479 => :enterprise_number19,
|
|
3440
|
+
480 => :enterprise_number20,
|
|
3441
|
+
481 => :enterprise_number21,
|
|
3442
|
+
482 => :enterprise_number22,
|
|
3443
|
+
483 => :enterprise_number23,
|
|
3444
|
+
484 => :enterprise_number24,
|
|
3445
|
+
485 => :enterprise_number25,
|
|
3446
|
+
486 => :enterprise_number26,
|
|
3447
|
+
487 => :enterprise_number27,
|
|
3448
|
+
488 => :enterprise_number28,
|
|
3449
|
+
489 => :enterprise_number29,
|
|
3450
|
+
490 => :enterprise_number30,
|
|
3451
|
+
491 => :enterprise_number31,
|
|
3452
|
+
492 => :enterprise_number32,
|
|
3453
|
+
493 => :enterprise_number33,
|
|
3454
|
+
494 => :enterprise_number34,
|
|
3455
|
+
495 => :enterprise_number35,
|
|
3456
|
+
496 => :enterprise_number36,
|
|
3457
|
+
497 => :enterprise_number37,
|
|
3458
|
+
498 => :enterprise_number38,
|
|
3459
|
+
499 => :enterprise_number39,
|
|
3460
|
+
500 => :enterprise_number40,
|
|
3461
|
+
501 => :enterprise_text1,
|
|
3462
|
+
502 => :enterprise_text2,
|
|
3463
|
+
503 => :enterprise_text3,
|
|
3464
|
+
504 => :enterprise_text4,
|
|
3465
|
+
505 => :enterprise_text5,
|
|
3466
|
+
506 => :enterprise_text6,
|
|
3467
|
+
507 => :enterprise_text7,
|
|
3468
|
+
508 => :enterprise_text8,
|
|
3469
|
+
509 => :enterprise_text9,
|
|
3470
|
+
510 => :enterprise_text10,
|
|
3471
|
+
511 => :enterprise_text11,
|
|
3472
|
+
512 => :enterprise_text12,
|
|
3473
|
+
513 => :enterprise_text13,
|
|
3474
|
+
514 => :enterprise_text14,
|
|
3475
|
+
515 => :enterprise_text15,
|
|
3476
|
+
516 => :enterprise_text16,
|
|
3477
|
+
517 => :enterprise_text17,
|
|
3478
|
+
518 => :enterprise_text18,
|
|
3479
|
+
519 => :enterprise_text19,
|
|
3480
|
+
520 => :enterprise_text20,
|
|
3481
|
+
521 => :enterprise_text21,
|
|
3482
|
+
522 => :enterprise_text22,
|
|
3483
|
+
523 => :enterprise_text23,
|
|
3484
|
+
524 => :enterprise_text24,
|
|
3485
|
+
525 => :enterprise_text25,
|
|
3486
|
+
526 => :enterprise_text26,
|
|
3487
|
+
527 => :enterprise_text27,
|
|
3488
|
+
528 => :enterprise_text28,
|
|
3489
|
+
529 => :enterprise_text29,
|
|
3490
|
+
530 => :enterprise_text30,
|
|
3491
|
+
531 => :enterprise_text31,
|
|
3492
|
+
532 => :enterprise_text32,
|
|
3493
|
+
533 => :enterprise_text33,
|
|
3494
|
+
534 => :enterprise_text34,
|
|
3495
|
+
535 => :enterprise_text35,
|
|
3496
|
+
536 => :enterprise_text36,
|
|
3497
|
+
537 => :enterprise_text37,
|
|
3498
|
+
538 => :enterprise_text38,
|
|
3499
|
+
539 => :enterprise_text39,
|
|
3500
|
+
540 => :enterprise_text40,
|
|
3501
|
+
545 => :enterprise_resource_outline_code1,
|
|
3502
|
+
546 => :enterprise_resource_outline_code2,
|
|
3503
|
+
547 => :enterprise_resource_outline_code3,
|
|
3504
|
+
548 => :enterprise_resource_outline_code4,
|
|
3505
|
+
549 => :enterprise_resource_outline_code5,
|
|
3506
|
+
550 => :enterprise_resource_outline_code6,
|
|
3507
|
+
551 => :enterprise_resource_outline_code7,
|
|
3508
|
+
552 => :enterprise_resource_outline_code8,
|
|
3509
|
+
553 => :enterprise_resource_outline_code9,
|
|
3510
|
+
554 => :enterprise_resource_outline_code10,
|
|
3511
|
+
555 => :enterprise_resource_outline_code11,
|
|
3512
|
+
556 => :enterprise_resource_outline_code12,
|
|
3513
|
+
557 => :enterprise_resource_outline_code13,
|
|
3514
|
+
558 => :enterprise_resource_outline_code14,
|
|
3515
|
+
559 => :enterprise_resource_outline_code15,
|
|
3516
|
+
560 => :enterprise_resource_outline_code16,
|
|
3517
|
+
561 => :enterprise_resource_outline_code17,
|
|
3518
|
+
562 => :enterprise_resource_outline_code18,
|
|
3519
|
+
563 => :enterprise_resource_outline_code19,
|
|
3520
|
+
564 => :enterprise_resource_outline_code20,
|
|
3521
|
+
565 => :enterprise_resource_outline_code21,
|
|
3522
|
+
566 => :enterprise_resource_outline_code22,
|
|
3523
|
+
567 => :enterprise_resource_outline_code23,
|
|
3524
|
+
568 => :enterprise_resource_outline_code24,
|
|
3525
|
+
569 => :enterprise_resource_outline_code25,
|
|
3526
|
+
570 => :enterprise_resource_outline_code26,
|
|
3527
|
+
571 => :enterprise_resource_outline_code27,
|
|
3528
|
+
572 => :enterprise_resource_outline_code28,
|
|
3529
|
+
573 => :enterprise_resource_outline_code29,
|
|
3530
|
+
574 => :enterprise_resource_rbs,
|
|
3531
|
+
605 => :resource_request_type,
|
|
3532
|
+
607 => :enterprise_team_member,
|
|
3533
|
+
610 => :enterprise_resource_multi_value20,
|
|
3534
|
+
612 => :enterprise_resource_multi_value21,
|
|
3535
|
+
614 => :enterprise_resource_multi_value22,
|
|
3536
|
+
616 => :enterprise_resource_multi_value23,
|
|
3537
|
+
618 => :enterprise_resource_multi_value24,
|
|
3538
|
+
620 => :enterprise_resource_multi_value25,
|
|
3539
|
+
622 => :enterprise_resource_multi_value26,
|
|
3540
|
+
624 => :enterprise_resource_multi_value27,
|
|
3541
|
+
626 => :enterprise_resource_multi_value28,
|
|
3542
|
+
628 => :enterprise_resource_multi_value29,
|
|
3543
|
+
630 => :actual_work_protected,
|
|
3544
|
+
631 => :actual_overtime_work_protected,
|
|
3545
|
+
634 => :created,
|
|
3546
|
+
636 => :guid,
|
|
3547
|
+
637 => :assignment_task_guid,
|
|
3548
|
+
638 => :assignment_resource_guid,
|
|
3549
|
+
646 => :summary,
|
|
3550
|
+
668 => :owner,
|
|
3551
|
+
669 => :budget_work,
|
|
3552
|
+
670 => :budget_cost,
|
|
3553
|
+
671 => :raw_timephased_budget_work,
|
|
3554
|
+
672 => :raw_timephased_budget_cost,
|
|
3555
|
+
673 => :baseline_budget_work,
|
|
3556
|
+
674 => :baseline_budget_cost,
|
|
3557
|
+
675 => :raw_timephased_baseline_budget_work,
|
|
3558
|
+
676 => :raw_timephased_baseline_budget_cost,
|
|
3559
|
+
677 => :baseline1_budget_work,
|
|
3560
|
+
678 => :baseline1_budget_cost,
|
|
3561
|
+
679 => :raw_timephased_baseline1_budget_work,
|
|
3562
|
+
680 => :raw_timephased_baseline1_budget_cost,
|
|
3563
|
+
681 => :baseline2_budget_work,
|
|
3564
|
+
682 => :baseline2_budget_cost,
|
|
3565
|
+
683 => :raw_timephased_baseline2_budget_work,
|
|
3566
|
+
684 => :raw_timephased_baseline2_budget_cost,
|
|
3567
|
+
685 => :baseline3_budget_work,
|
|
3568
|
+
686 => :baseline3_budget_cost,
|
|
3569
|
+
687 => :raw_timephased_baseline3_budget_work,
|
|
3570
|
+
688 => :raw_timephased_baseline3_budget_cost,
|
|
3571
|
+
689 => :baseline4_budget_work,
|
|
3572
|
+
690 => :baseline4_budget_cost,
|
|
3573
|
+
691 => :raw_timephased_baseline4_budget_work,
|
|
3574
|
+
692 => :raw_timephased_baseline4_budget_cost,
|
|
3575
|
+
693 => :baseline5_budget_work,
|
|
3576
|
+
694 => :baseline5_budget_cost,
|
|
3577
|
+
695 => :raw_timephased_baseline5_budget_work,
|
|
3578
|
+
696 => :raw_timephased_baseline5_budget_cost,
|
|
3579
|
+
697 => :baseline6_budget_work,
|
|
3580
|
+
698 => :baseline6_budget_cost,
|
|
3581
|
+
699 => :raw_timephased_baseline6_budget_work,
|
|
3582
|
+
700 => :raw_timephased_baseline6_budget_cost,
|
|
3583
|
+
701 => :baseline7_budget_work,
|
|
3584
|
+
702 => :baseline7_budget_cost,
|
|
3585
|
+
703 => :raw_timephased_baseline7_budget_work,
|
|
3586
|
+
704 => :raw_timephased_baseline7_budget_cost,
|
|
3587
|
+
705 => :baseline8_budget_work,
|
|
3588
|
+
706 => :baseline8_budget_cost,
|
|
3589
|
+
707 => :raw_timephased_baseline8_budget_work,
|
|
3590
|
+
708 => :raw_timephased_baseline8_budget_cost,
|
|
3591
|
+
709 => :baseline9_budget_work,
|
|
3592
|
+
710 => :baseline9_budget_cost,
|
|
3593
|
+
711 => :raw_timephased_baseline9_budget_work,
|
|
3594
|
+
712 => :raw_timephased_baseline9_budget_cost,
|
|
3595
|
+
713 => :baseline10_budget_work,
|
|
3596
|
+
714 => :baseline10_budget_cost,
|
|
3597
|
+
715 => :raw_timephased_baseline10_budget_work,
|
|
3598
|
+
716 => :raw_timephased_baseline10_budget_cost,
|
|
3599
|
+
}.freeze
|
|
3600
|
+
|
|
3601
|
+
# field name => [data type, units field]
|
|
3602
|
+
ASSIGNMENT_FIELD_TYPES = {
|
|
3603
|
+
actual_cost: [:currency, nil],
|
|
3604
|
+
actual_finish: [:date, nil],
|
|
3605
|
+
actual_material: [:numeric, nil],
|
|
3606
|
+
actual_overtime_cost: [:currency, nil],
|
|
3607
|
+
actual_overtime_work: [:work, nil],
|
|
3608
|
+
actual_overtime_work_protected: [:work, nil],
|
|
3609
|
+
actual_regular_cost: [:currency, nil],
|
|
3610
|
+
actual_regular_work: [:work, nil],
|
|
3611
|
+
actual_start: [:date, nil],
|
|
3612
|
+
actual_work: [:work, nil],
|
|
3613
|
+
actual_work_protected: [:work, nil],
|
|
3614
|
+
acwp: [:currency, nil],
|
|
3615
|
+
assignment_delay: [:delay, nil],
|
|
3616
|
+
assignment_resource_guid: [:guid, nil],
|
|
3617
|
+
assignment_task_guid: [:guid, nil],
|
|
3618
|
+
assignment_units: [:units, nil],
|
|
3619
|
+
baseline10_budget_cost: [:currency, nil],
|
|
3620
|
+
baseline10_budget_work: [:work, nil],
|
|
3621
|
+
baseline10_cost: [:currency, nil],
|
|
3622
|
+
baseline10_finish: [:date, nil],
|
|
3623
|
+
baseline10_material: [:numeric, nil],
|
|
3624
|
+
baseline10_start: [:date, nil],
|
|
3625
|
+
baseline10_work: [:work, nil],
|
|
3626
|
+
baseline1_budget_cost: [:currency, nil],
|
|
3627
|
+
baseline1_budget_work: [:work, nil],
|
|
3628
|
+
baseline1_cost: [:currency, nil],
|
|
3629
|
+
baseline1_finish: [:date, nil],
|
|
3630
|
+
baseline1_material: [:numeric, nil],
|
|
3631
|
+
baseline1_start: [:date, nil],
|
|
3632
|
+
baseline1_work: [:work, nil],
|
|
3633
|
+
baseline2_budget_cost: [:currency, nil],
|
|
3634
|
+
baseline2_budget_work: [:work, nil],
|
|
3635
|
+
baseline2_cost: [:currency, nil],
|
|
3636
|
+
baseline2_finish: [:date, nil],
|
|
3637
|
+
baseline2_material: [:numeric, nil],
|
|
3638
|
+
baseline2_start: [:date, nil],
|
|
3639
|
+
baseline2_work: [:work, nil],
|
|
3640
|
+
baseline3_budget_cost: [:currency, nil],
|
|
3641
|
+
baseline3_budget_work: [:work, nil],
|
|
3642
|
+
baseline3_cost: [:currency, nil],
|
|
3643
|
+
baseline3_finish: [:date, nil],
|
|
3644
|
+
baseline3_material: [:numeric, nil],
|
|
3645
|
+
baseline3_start: [:date, nil],
|
|
3646
|
+
baseline3_work: [:work, nil],
|
|
3647
|
+
baseline4_budget_cost: [:currency, nil],
|
|
3648
|
+
baseline4_budget_work: [:work, nil],
|
|
3649
|
+
baseline4_cost: [:currency, nil],
|
|
3650
|
+
baseline4_finish: [:date, nil],
|
|
3651
|
+
baseline4_material: [:numeric, nil],
|
|
3652
|
+
baseline4_start: [:date, nil],
|
|
3653
|
+
baseline4_work: [:work, nil],
|
|
3654
|
+
baseline5_budget_cost: [:currency, nil],
|
|
3655
|
+
baseline5_budget_work: [:work, nil],
|
|
3656
|
+
baseline5_cost: [:currency, nil],
|
|
3657
|
+
baseline5_finish: [:date, nil],
|
|
3658
|
+
baseline5_material: [:numeric, nil],
|
|
3659
|
+
baseline5_start: [:date, nil],
|
|
3660
|
+
baseline5_work: [:work, nil],
|
|
3661
|
+
baseline6_budget_cost: [:currency, nil],
|
|
3662
|
+
baseline6_budget_work: [:work, nil],
|
|
3663
|
+
baseline6_cost: [:currency, nil],
|
|
3664
|
+
baseline6_finish: [:date, nil],
|
|
3665
|
+
baseline6_material: [:numeric, nil],
|
|
3666
|
+
baseline6_start: [:date, nil],
|
|
3667
|
+
baseline6_work: [:work, nil],
|
|
3668
|
+
baseline7_budget_cost: [:currency, nil],
|
|
3669
|
+
baseline7_budget_work: [:work, nil],
|
|
3670
|
+
baseline7_cost: [:currency, nil],
|
|
3671
|
+
baseline7_finish: [:date, nil],
|
|
3672
|
+
baseline7_material: [:numeric, nil],
|
|
3673
|
+
baseline7_start: [:date, nil],
|
|
3674
|
+
baseline7_work: [:work, nil],
|
|
3675
|
+
baseline8_budget_cost: [:currency, nil],
|
|
3676
|
+
baseline8_budget_work: [:work, nil],
|
|
3677
|
+
baseline8_cost: [:currency, nil],
|
|
3678
|
+
baseline8_finish: [:date, nil],
|
|
3679
|
+
baseline8_material: [:numeric, nil],
|
|
3680
|
+
baseline8_start: [:date, nil],
|
|
3681
|
+
baseline8_work: [:work, nil],
|
|
3682
|
+
baseline9_budget_cost: [:currency, nil],
|
|
3683
|
+
baseline9_budget_work: [:work, nil],
|
|
3684
|
+
baseline9_cost: [:currency, nil],
|
|
3685
|
+
baseline9_finish: [:date, nil],
|
|
3686
|
+
baseline9_material: [:numeric, nil],
|
|
3687
|
+
baseline9_start: [:date, nil],
|
|
3688
|
+
baseline9_work: [:work, nil],
|
|
3689
|
+
baseline_budget_cost: [:currency, nil],
|
|
3690
|
+
baseline_budget_work: [:work, nil],
|
|
3691
|
+
baseline_cost: [:currency, nil],
|
|
3692
|
+
baseline_finish: [:date, nil],
|
|
3693
|
+
baseline_material: [:numeric, nil],
|
|
3694
|
+
baseline_start: [:date, nil],
|
|
3695
|
+
baseline_work: [:work, nil],
|
|
3696
|
+
bcwp: [:currency, nil],
|
|
3697
|
+
bcws: [:currency, nil],
|
|
3698
|
+
budget_cost: [:currency, nil],
|
|
3699
|
+
budget_work: [:work, nil],
|
|
3700
|
+
calculate_costs_from_units: [:boolean, nil],
|
|
3701
|
+
confirmed: [:boolean, nil],
|
|
3702
|
+
cost: [:currency, nil],
|
|
3703
|
+
cost1: [:currency, nil],
|
|
3704
|
+
cost10: [:currency, nil],
|
|
3705
|
+
cost2: [:currency, nil],
|
|
3706
|
+
cost3: [:currency, nil],
|
|
3707
|
+
cost4: [:currency, nil],
|
|
3708
|
+
cost5: [:currency, nil],
|
|
3709
|
+
cost6: [:currency, nil],
|
|
3710
|
+
cost7: [:currency, nil],
|
|
3711
|
+
cost8: [:currency, nil],
|
|
3712
|
+
cost9: [:currency, nil],
|
|
3713
|
+
cost_account_unique_id: [:integer, nil],
|
|
3714
|
+
cost_rate_table: [:short, nil],
|
|
3715
|
+
cost_variance: [:currency, nil],
|
|
3716
|
+
created: [:date, nil],
|
|
3717
|
+
cv: [:currency, nil],
|
|
3718
|
+
date1: [:date, nil],
|
|
3719
|
+
date10: [:date, nil],
|
|
3720
|
+
date2: [:date, nil],
|
|
3721
|
+
date3: [:date, nil],
|
|
3722
|
+
date4: [:date, nil],
|
|
3723
|
+
date5: [:date, nil],
|
|
3724
|
+
date6: [:date, nil],
|
|
3725
|
+
date7: [:date, nil],
|
|
3726
|
+
date8: [:date, nil],
|
|
3727
|
+
date9: [:date, nil],
|
|
3728
|
+
duration1: [:duration, :duration1_units],
|
|
3729
|
+
duration10: [:duration, :duration10_units],
|
|
3730
|
+
duration10_units: [:time_units, nil],
|
|
3731
|
+
duration1_units: [:time_units, nil],
|
|
3732
|
+
duration2: [:duration, :duration2_units],
|
|
3733
|
+
duration2_units: [:time_units, nil],
|
|
3734
|
+
duration3: [:duration, :duration3_units],
|
|
3735
|
+
duration3_units: [:time_units, nil],
|
|
3736
|
+
duration4: [:duration, :duration4_units],
|
|
3737
|
+
duration4_units: [:time_units, nil],
|
|
3738
|
+
duration5: [:duration, :duration5_units],
|
|
3739
|
+
duration5_units: [:time_units, nil],
|
|
3740
|
+
duration6: [:duration, :duration6_units],
|
|
3741
|
+
duration6_units: [:time_units, nil],
|
|
3742
|
+
duration7: [:duration, :duration7_units],
|
|
3743
|
+
duration7_units: [:time_units, nil],
|
|
3744
|
+
duration8: [:duration, :duration8_units],
|
|
3745
|
+
duration8_units: [:time_units, nil],
|
|
3746
|
+
duration9: [:duration, :duration9_units],
|
|
3747
|
+
duration9_units: [:time_units, nil],
|
|
3748
|
+
enterprise_cost1: [:currency, nil],
|
|
3749
|
+
enterprise_cost10: [:currency, nil],
|
|
3750
|
+
enterprise_cost2: [:currency, nil],
|
|
3751
|
+
enterprise_cost3: [:currency, nil],
|
|
3752
|
+
enterprise_cost4: [:currency, nil],
|
|
3753
|
+
enterprise_cost5: [:currency, nil],
|
|
3754
|
+
enterprise_cost6: [:currency, nil],
|
|
3755
|
+
enterprise_cost7: [:currency, nil],
|
|
3756
|
+
enterprise_cost8: [:currency, nil],
|
|
3757
|
+
enterprise_cost9: [:currency, nil],
|
|
3758
|
+
enterprise_date1: [:date, nil],
|
|
3759
|
+
enterprise_date10: [:date, nil],
|
|
3760
|
+
enterprise_date11: [:date, nil],
|
|
3761
|
+
enterprise_date12: [:date, nil],
|
|
3762
|
+
enterprise_date13: [:date, nil],
|
|
3763
|
+
enterprise_date14: [:date, nil],
|
|
3764
|
+
enterprise_date15: [:date, nil],
|
|
3765
|
+
enterprise_date16: [:date, nil],
|
|
3766
|
+
enterprise_date17: [:date, nil],
|
|
3767
|
+
enterprise_date18: [:date, nil],
|
|
3768
|
+
enterprise_date19: [:date, nil],
|
|
3769
|
+
enterprise_date2: [:date, nil],
|
|
3770
|
+
enterprise_date20: [:date, nil],
|
|
3771
|
+
enterprise_date21: [:date, nil],
|
|
3772
|
+
enterprise_date22: [:date, nil],
|
|
3773
|
+
enterprise_date23: [:date, nil],
|
|
3774
|
+
enterprise_date24: [:date, nil],
|
|
3775
|
+
enterprise_date25: [:date, nil],
|
|
3776
|
+
enterprise_date26: [:date, nil],
|
|
3777
|
+
enterprise_date27: [:date, nil],
|
|
3778
|
+
enterprise_date28: [:date, nil],
|
|
3779
|
+
enterprise_date29: [:date, nil],
|
|
3780
|
+
enterprise_date3: [:date, nil],
|
|
3781
|
+
enterprise_date30: [:date, nil],
|
|
3782
|
+
enterprise_date4: [:date, nil],
|
|
3783
|
+
enterprise_date5: [:date, nil],
|
|
3784
|
+
enterprise_date6: [:date, nil],
|
|
3785
|
+
enterprise_date7: [:date, nil],
|
|
3786
|
+
enterprise_date8: [:date, nil],
|
|
3787
|
+
enterprise_date9: [:date, nil],
|
|
3788
|
+
enterprise_duration1: [:duration, nil],
|
|
3789
|
+
enterprise_duration10: [:duration, nil],
|
|
3790
|
+
enterprise_duration2: [:duration, nil],
|
|
3791
|
+
enterprise_duration3: [:duration, nil],
|
|
3792
|
+
enterprise_duration4: [:duration, nil],
|
|
3793
|
+
enterprise_duration5: [:duration, nil],
|
|
3794
|
+
enterprise_duration6: [:duration, nil],
|
|
3795
|
+
enterprise_duration7: [:duration, nil],
|
|
3796
|
+
enterprise_duration8: [:duration, nil],
|
|
3797
|
+
enterprise_duration9: [:duration, nil],
|
|
3798
|
+
enterprise_flag1: [:boolean, nil],
|
|
3799
|
+
enterprise_flag10: [:boolean, nil],
|
|
3800
|
+
enterprise_flag11: [:boolean, nil],
|
|
3801
|
+
enterprise_flag12: [:boolean, nil],
|
|
3802
|
+
enterprise_flag13: [:boolean, nil],
|
|
3803
|
+
enterprise_flag14: [:boolean, nil],
|
|
3804
|
+
enterprise_flag15: [:boolean, nil],
|
|
3805
|
+
enterprise_flag16: [:boolean, nil],
|
|
3806
|
+
enterprise_flag17: [:boolean, nil],
|
|
3807
|
+
enterprise_flag18: [:boolean, nil],
|
|
3808
|
+
enterprise_flag19: [:boolean, nil],
|
|
3809
|
+
enterprise_flag2: [:boolean, nil],
|
|
3810
|
+
enterprise_flag20: [:boolean, nil],
|
|
3811
|
+
enterprise_flag3: [:boolean, nil],
|
|
3812
|
+
enterprise_flag4: [:boolean, nil],
|
|
3813
|
+
enterprise_flag5: [:boolean, nil],
|
|
3814
|
+
enterprise_flag6: [:boolean, nil],
|
|
3815
|
+
enterprise_flag7: [:boolean, nil],
|
|
3816
|
+
enterprise_flag8: [:boolean, nil],
|
|
3817
|
+
enterprise_flag9: [:boolean, nil],
|
|
3818
|
+
enterprise_number1: [:numeric, nil],
|
|
3819
|
+
enterprise_number10: [:numeric, nil],
|
|
3820
|
+
enterprise_number11: [:numeric, nil],
|
|
3821
|
+
enterprise_number12: [:numeric, nil],
|
|
3822
|
+
enterprise_number13: [:numeric, nil],
|
|
3823
|
+
enterprise_number14: [:numeric, nil],
|
|
3824
|
+
enterprise_number15: [:numeric, nil],
|
|
3825
|
+
enterprise_number16: [:numeric, nil],
|
|
3826
|
+
enterprise_number17: [:numeric, nil],
|
|
3827
|
+
enterprise_number18: [:numeric, nil],
|
|
3828
|
+
enterprise_number19: [:numeric, nil],
|
|
3829
|
+
enterprise_number2: [:numeric, nil],
|
|
3830
|
+
enterprise_number20: [:numeric, nil],
|
|
3831
|
+
enterprise_number21: [:numeric, nil],
|
|
3832
|
+
enterprise_number22: [:numeric, nil],
|
|
3833
|
+
enterprise_number23: [:numeric, nil],
|
|
3834
|
+
enterprise_number24: [:numeric, nil],
|
|
3835
|
+
enterprise_number25: [:numeric, nil],
|
|
3836
|
+
enterprise_number26: [:numeric, nil],
|
|
3837
|
+
enterprise_number27: [:numeric, nil],
|
|
3838
|
+
enterprise_number28: [:numeric, nil],
|
|
3839
|
+
enterprise_number29: [:numeric, nil],
|
|
3840
|
+
enterprise_number3: [:numeric, nil],
|
|
3841
|
+
enterprise_number30: [:numeric, nil],
|
|
3842
|
+
enterprise_number31: [:numeric, nil],
|
|
3843
|
+
enterprise_number32: [:numeric, nil],
|
|
3844
|
+
enterprise_number33: [:numeric, nil],
|
|
3845
|
+
enterprise_number34: [:numeric, nil],
|
|
3846
|
+
enterprise_number35: [:numeric, nil],
|
|
3847
|
+
enterprise_number36: [:numeric, nil],
|
|
3848
|
+
enterprise_number37: [:numeric, nil],
|
|
3849
|
+
enterprise_number38: [:numeric, nil],
|
|
3850
|
+
enterprise_number39: [:numeric, nil],
|
|
3851
|
+
enterprise_number4: [:numeric, nil],
|
|
3852
|
+
enterprise_number40: [:numeric, nil],
|
|
3853
|
+
enterprise_number5: [:numeric, nil],
|
|
3854
|
+
enterprise_number6: [:numeric, nil],
|
|
3855
|
+
enterprise_number7: [:numeric, nil],
|
|
3856
|
+
enterprise_number8: [:numeric, nil],
|
|
3857
|
+
enterprise_number9: [:numeric, nil],
|
|
3858
|
+
enterprise_resource_multi_value20: [:string, nil],
|
|
3859
|
+
enterprise_resource_multi_value21: [:string, nil],
|
|
3860
|
+
enterprise_resource_multi_value22: [:string, nil],
|
|
3861
|
+
enterprise_resource_multi_value23: [:string, nil],
|
|
3862
|
+
enterprise_resource_multi_value24: [:string, nil],
|
|
3863
|
+
enterprise_resource_multi_value25: [:string, nil],
|
|
3864
|
+
enterprise_resource_multi_value26: [:string, nil],
|
|
3865
|
+
enterprise_resource_multi_value27: [:string, nil],
|
|
3866
|
+
enterprise_resource_multi_value28: [:string, nil],
|
|
3867
|
+
enterprise_resource_multi_value29: [:string, nil],
|
|
3868
|
+
enterprise_resource_outline_code1: [:string, nil],
|
|
3869
|
+
enterprise_resource_outline_code10: [:string, nil],
|
|
3870
|
+
enterprise_resource_outline_code11: [:string, nil],
|
|
3871
|
+
enterprise_resource_outline_code12: [:string, nil],
|
|
3872
|
+
enterprise_resource_outline_code13: [:string, nil],
|
|
3873
|
+
enterprise_resource_outline_code14: [:string, nil],
|
|
3874
|
+
enterprise_resource_outline_code15: [:string, nil],
|
|
3875
|
+
enterprise_resource_outline_code16: [:string, nil],
|
|
3876
|
+
enterprise_resource_outline_code17: [:string, nil],
|
|
3877
|
+
enterprise_resource_outline_code18: [:string, nil],
|
|
3878
|
+
enterprise_resource_outline_code19: [:string, nil],
|
|
3879
|
+
enterprise_resource_outline_code2: [:string, nil],
|
|
3880
|
+
enterprise_resource_outline_code20: [:string, nil],
|
|
3881
|
+
enterprise_resource_outline_code21: [:string, nil],
|
|
3882
|
+
enterprise_resource_outline_code22: [:string, nil],
|
|
3883
|
+
enterprise_resource_outline_code23: [:string, nil],
|
|
3884
|
+
enterprise_resource_outline_code24: [:string, nil],
|
|
3885
|
+
enterprise_resource_outline_code25: [:string, nil],
|
|
3886
|
+
enterprise_resource_outline_code26: [:string, nil],
|
|
3887
|
+
enterprise_resource_outline_code27: [:string, nil],
|
|
3888
|
+
enterprise_resource_outline_code28: [:string, nil],
|
|
3889
|
+
enterprise_resource_outline_code29: [:string, nil],
|
|
3890
|
+
enterprise_resource_outline_code3: [:string, nil],
|
|
3891
|
+
enterprise_resource_outline_code4: [:string, nil],
|
|
3892
|
+
enterprise_resource_outline_code5: [:string, nil],
|
|
3893
|
+
enterprise_resource_outline_code6: [:string, nil],
|
|
3894
|
+
enterprise_resource_outline_code7: [:string, nil],
|
|
3895
|
+
enterprise_resource_outline_code8: [:string, nil],
|
|
3896
|
+
enterprise_resource_outline_code9: [:string, nil],
|
|
3897
|
+
enterprise_resource_rbs: [:string, nil],
|
|
3898
|
+
enterprise_team_member: [:string, nil],
|
|
3899
|
+
enterprise_text1: [:string, nil],
|
|
3900
|
+
enterprise_text10: [:string, nil],
|
|
3901
|
+
enterprise_text11: [:string, nil],
|
|
3902
|
+
enterprise_text12: [:string, nil],
|
|
3903
|
+
enterprise_text13: [:string, nil],
|
|
3904
|
+
enterprise_text14: [:string, nil],
|
|
3905
|
+
enterprise_text15: [:string, nil],
|
|
3906
|
+
enterprise_text16: [:string, nil],
|
|
3907
|
+
enterprise_text17: [:string, nil],
|
|
3908
|
+
enterprise_text18: [:string, nil],
|
|
3909
|
+
enterprise_text19: [:string, nil],
|
|
3910
|
+
enterprise_text2: [:string, nil],
|
|
3911
|
+
enterprise_text20: [:string, nil],
|
|
3912
|
+
enterprise_text21: [:string, nil],
|
|
3913
|
+
enterprise_text22: [:string, nil],
|
|
3914
|
+
enterprise_text23: [:string, nil],
|
|
3915
|
+
enterprise_text24: [:string, nil],
|
|
3916
|
+
enterprise_text25: [:string, nil],
|
|
3917
|
+
enterprise_text26: [:string, nil],
|
|
3918
|
+
enterprise_text27: [:string, nil],
|
|
3919
|
+
enterprise_text28: [:string, nil],
|
|
3920
|
+
enterprise_text29: [:string, nil],
|
|
3921
|
+
enterprise_text3: [:string, nil],
|
|
3922
|
+
enterprise_text30: [:string, nil],
|
|
3923
|
+
enterprise_text31: [:string, nil],
|
|
3924
|
+
enterprise_text32: [:string, nil],
|
|
3925
|
+
enterprise_text33: [:string, nil],
|
|
3926
|
+
enterprise_text34: [:string, nil],
|
|
3927
|
+
enterprise_text35: [:string, nil],
|
|
3928
|
+
enterprise_text36: [:string, nil],
|
|
3929
|
+
enterprise_text37: [:string, nil],
|
|
3930
|
+
enterprise_text38: [:string, nil],
|
|
3931
|
+
enterprise_text39: [:string, nil],
|
|
3932
|
+
enterprise_text4: [:string, nil],
|
|
3933
|
+
enterprise_text40: [:string, nil],
|
|
3934
|
+
enterprise_text5: [:string, nil],
|
|
3935
|
+
enterprise_text6: [:string, nil],
|
|
3936
|
+
enterprise_text7: [:string, nil],
|
|
3937
|
+
enterprise_text8: [:string, nil],
|
|
3938
|
+
enterprise_text9: [:string, nil],
|
|
3939
|
+
finish: [:date, nil],
|
|
3940
|
+
finish1: [:date, nil],
|
|
3941
|
+
finish10: [:date, nil],
|
|
3942
|
+
finish2: [:date, nil],
|
|
3943
|
+
finish3: [:date, nil],
|
|
3944
|
+
finish4: [:date, nil],
|
|
3945
|
+
finish5: [:date, nil],
|
|
3946
|
+
finish6: [:date, nil],
|
|
3947
|
+
finish7: [:date, nil],
|
|
3948
|
+
finish8: [:date, nil],
|
|
3949
|
+
finish9: [:date, nil],
|
|
3950
|
+
finish_variance: [:duration, nil],
|
|
3951
|
+
fixed_material_assignment: [:string, nil],
|
|
3952
|
+
flag1: [:boolean, nil],
|
|
3953
|
+
flag10: [:boolean, nil],
|
|
3954
|
+
flag11: [:boolean, nil],
|
|
3955
|
+
flag12: [:boolean, nil],
|
|
3956
|
+
flag13: [:boolean, nil],
|
|
3957
|
+
flag14: [:boolean, nil],
|
|
3958
|
+
flag15: [:boolean, nil],
|
|
3959
|
+
flag16: [:boolean, nil],
|
|
3960
|
+
flag17: [:boolean, nil],
|
|
3961
|
+
flag18: [:boolean, nil],
|
|
3962
|
+
flag19: [:boolean, nil],
|
|
3963
|
+
flag2: [:boolean, nil],
|
|
3964
|
+
flag20: [:boolean, nil],
|
|
3965
|
+
flag3: [:boolean, nil],
|
|
3966
|
+
flag4: [:boolean, nil],
|
|
3967
|
+
flag5: [:boolean, nil],
|
|
3968
|
+
flag6: [:boolean, nil],
|
|
3969
|
+
flag7: [:boolean, nil],
|
|
3970
|
+
flag8: [:boolean, nil],
|
|
3971
|
+
flag9: [:boolean, nil],
|
|
3972
|
+
guid: [:guid, nil],
|
|
3973
|
+
hyperlink: [:string, nil],
|
|
3974
|
+
hyperlink_address: [:string, nil],
|
|
3975
|
+
hyperlink_data: [:binary, nil],
|
|
3976
|
+
hyperlink_href: [:string, nil],
|
|
3977
|
+
hyperlink_screen_tip: [:string, nil],
|
|
3978
|
+
hyperlink_subaddress: [:string, nil],
|
|
3979
|
+
index: [:integer, nil],
|
|
3980
|
+
leveling_delay: [:duration, :leveling_delay_units],
|
|
3981
|
+
leveling_delay_units: [:time_units, nil],
|
|
3982
|
+
linked_fields: [:boolean, nil],
|
|
3983
|
+
material: [:numeric, nil],
|
|
3984
|
+
notes: [:notes, nil],
|
|
3985
|
+
number1: [:numeric, nil],
|
|
3986
|
+
number10: [:numeric, nil],
|
|
3987
|
+
number11: [:numeric, nil],
|
|
3988
|
+
number12: [:numeric, nil],
|
|
3989
|
+
number13: [:numeric, nil],
|
|
3990
|
+
number14: [:numeric, nil],
|
|
3991
|
+
number15: [:numeric, nil],
|
|
3992
|
+
number16: [:numeric, nil],
|
|
3993
|
+
number17: [:numeric, nil],
|
|
3994
|
+
number18: [:numeric, nil],
|
|
3995
|
+
number19: [:numeric, nil],
|
|
3996
|
+
number2: [:numeric, nil],
|
|
3997
|
+
number20: [:numeric, nil],
|
|
3998
|
+
number3: [:numeric, nil],
|
|
3999
|
+
number4: [:numeric, nil],
|
|
4000
|
+
number5: [:numeric, nil],
|
|
4001
|
+
number6: [:numeric, nil],
|
|
4002
|
+
number7: [:numeric, nil],
|
|
4003
|
+
number8: [:numeric, nil],
|
|
4004
|
+
number9: [:numeric, nil],
|
|
4005
|
+
overallocated: [:boolean, nil],
|
|
4006
|
+
override_rate: [:rate, nil],
|
|
4007
|
+
overtime_cost: [:currency, nil],
|
|
4008
|
+
overtime_work: [:work, nil],
|
|
4009
|
+
owner: [:string, nil],
|
|
4010
|
+
peak: [:units, nil],
|
|
4011
|
+
percent_work_complete: [:percentage, nil],
|
|
4012
|
+
planned_cost: [:currency, nil],
|
|
4013
|
+
planned_finish: [:date, nil],
|
|
4014
|
+
planned_material: [:numeric, nil],
|
|
4015
|
+
planned_start: [:date, nil],
|
|
4016
|
+
planned_work: [:work, nil],
|
|
4017
|
+
project: [:string, nil],
|
|
4018
|
+
rate_index: [:integer, nil],
|
|
4019
|
+
rate_source: [:rate_source, nil],
|
|
4020
|
+
raw_timephased_actual_overtime_work: [:timephased_work_list, nil],
|
|
4021
|
+
raw_timephased_actual_regular_work: [:timephased_work_list, nil],
|
|
4022
|
+
raw_timephased_baseline10_budget_cost: [:timephased_cost_list, nil],
|
|
4023
|
+
raw_timephased_baseline10_budget_work: [:timephased_work_list, nil],
|
|
4024
|
+
raw_timephased_baseline10_cost: [:timephased_cost_list, nil],
|
|
4025
|
+
raw_timephased_baseline10_work: [:timephased_work_list, nil],
|
|
4026
|
+
raw_timephased_baseline1_budget_cost: [:timephased_cost_list, nil],
|
|
4027
|
+
raw_timephased_baseline1_budget_work: [:timephased_work_list, nil],
|
|
4028
|
+
raw_timephased_baseline1_cost: [:timephased_cost_list, nil],
|
|
4029
|
+
raw_timephased_baseline1_work: [:timephased_work_list, nil],
|
|
4030
|
+
raw_timephased_baseline2_budget_cost: [:timephased_cost_list, nil],
|
|
4031
|
+
raw_timephased_baseline2_budget_work: [:timephased_work_list, nil],
|
|
4032
|
+
raw_timephased_baseline2_cost: [:timephased_cost_list, nil],
|
|
4033
|
+
raw_timephased_baseline2_work: [:timephased_work_list, nil],
|
|
4034
|
+
raw_timephased_baseline3_budget_cost: [:timephased_cost_list, nil],
|
|
4035
|
+
raw_timephased_baseline3_budget_work: [:timephased_work_list, nil],
|
|
4036
|
+
raw_timephased_baseline3_cost: [:timephased_cost_list, nil],
|
|
4037
|
+
raw_timephased_baseline3_work: [:timephased_work_list, nil],
|
|
4038
|
+
raw_timephased_baseline4_budget_cost: [:timephased_cost_list, nil],
|
|
4039
|
+
raw_timephased_baseline4_budget_work: [:timephased_work_list, nil],
|
|
4040
|
+
raw_timephased_baseline4_cost: [:timephased_cost_list, nil],
|
|
4041
|
+
raw_timephased_baseline4_work: [:timephased_work_list, nil],
|
|
4042
|
+
raw_timephased_baseline5_budget_cost: [:timephased_cost_list, nil],
|
|
4043
|
+
raw_timephased_baseline5_budget_work: [:timephased_work_list, nil],
|
|
4044
|
+
raw_timephased_baseline5_cost: [:timephased_cost_list, nil],
|
|
4045
|
+
raw_timephased_baseline5_work: [:timephased_work_list, nil],
|
|
4046
|
+
raw_timephased_baseline6_budget_cost: [:timephased_cost_list, nil],
|
|
4047
|
+
raw_timephased_baseline6_budget_work: [:timephased_work_list, nil],
|
|
4048
|
+
raw_timephased_baseline6_cost: [:timephased_cost_list, nil],
|
|
4049
|
+
raw_timephased_baseline6_work: [:timephased_work_list, nil],
|
|
4050
|
+
raw_timephased_baseline7_budget_cost: [:timephased_cost_list, nil],
|
|
4051
|
+
raw_timephased_baseline7_budget_work: [:timephased_work_list, nil],
|
|
4052
|
+
raw_timephased_baseline7_cost: [:timephased_cost_list, nil],
|
|
4053
|
+
raw_timephased_baseline7_work: [:timephased_work_list, nil],
|
|
4054
|
+
raw_timephased_baseline8_budget_cost: [:timephased_cost_list, nil],
|
|
4055
|
+
raw_timephased_baseline8_budget_work: [:timephased_work_list, nil],
|
|
4056
|
+
raw_timephased_baseline8_cost: [:timephased_cost_list, nil],
|
|
4057
|
+
raw_timephased_baseline8_work: [:timephased_work_list, nil],
|
|
4058
|
+
raw_timephased_baseline9_budget_cost: [:timephased_cost_list, nil],
|
|
4059
|
+
raw_timephased_baseline9_budget_work: [:timephased_work_list, nil],
|
|
4060
|
+
raw_timephased_baseline9_cost: [:timephased_cost_list, nil],
|
|
4061
|
+
raw_timephased_baseline9_work: [:timephased_work_list, nil],
|
|
4062
|
+
raw_timephased_baseline_budget_cost: [:timephased_cost_list, nil],
|
|
4063
|
+
raw_timephased_baseline_budget_work: [:timephased_work_list, nil],
|
|
4064
|
+
raw_timephased_baseline_cost: [:timephased_cost_list, nil],
|
|
4065
|
+
raw_timephased_baseline_work: [:timephased_work_list, nil],
|
|
4066
|
+
raw_timephased_budget_cost: [:timephased_cost_list, nil],
|
|
4067
|
+
raw_timephased_budget_work: [:timephased_work_list, nil],
|
|
4068
|
+
raw_timephased_planned_work: [:timephased_work_list, nil],
|
|
4069
|
+
raw_timephased_remaining_overtime_work: [:timephased_work_list, nil],
|
|
4070
|
+
raw_timephased_remaining_regular_work: [:timephased_work_list, nil],
|
|
4071
|
+
regular_work: [:work, nil],
|
|
4072
|
+
remaining_assignment_units: [:units, nil],
|
|
4073
|
+
remaining_cost: [:currency, nil],
|
|
4074
|
+
remaining_early_finish: [:date, nil],
|
|
4075
|
+
remaining_early_start: [:date, nil],
|
|
4076
|
+
remaining_late_finish: [:date, nil],
|
|
4077
|
+
remaining_late_start: [:date, nil],
|
|
4078
|
+
remaining_material: [:numeric, nil],
|
|
4079
|
+
remaining_overtime_cost: [:currency, nil],
|
|
4080
|
+
remaining_overtime_work: [:work, nil],
|
|
4081
|
+
remaining_regular_cost: [:currency, nil],
|
|
4082
|
+
remaining_regular_work: [:work, nil],
|
|
4083
|
+
remaining_work: [:work, nil],
|
|
4084
|
+
resource_assignment_code_values: [:code_values, nil],
|
|
4085
|
+
resource_id: [:integer, nil],
|
|
4086
|
+
resource_name: [:string, nil],
|
|
4087
|
+
resource_request_type: [:resource_request_type, nil],
|
|
4088
|
+
resource_type: [:resource_type, nil],
|
|
4089
|
+
resource_unique_id: [:integer, nil],
|
|
4090
|
+
response_pending: [:boolean, nil],
|
|
4091
|
+
resume: [:date, nil],
|
|
4092
|
+
role_unique_id: [:integer, nil],
|
|
4093
|
+
start: [:date, nil],
|
|
4094
|
+
start1: [:date, nil],
|
|
4095
|
+
start10: [:date, nil],
|
|
4096
|
+
start2: [:date, nil],
|
|
4097
|
+
start3: [:date, nil],
|
|
4098
|
+
start4: [:date, nil],
|
|
4099
|
+
start5: [:date, nil],
|
|
4100
|
+
start6: [:date, nil],
|
|
4101
|
+
start7: [:date, nil],
|
|
4102
|
+
start8: [:date, nil],
|
|
4103
|
+
start9: [:date, nil],
|
|
4104
|
+
start_variance: [:duration, nil],
|
|
4105
|
+
stop: [:date, nil],
|
|
4106
|
+
summary: [:string, nil],
|
|
4107
|
+
sv: [:currency, nil],
|
|
4108
|
+
task_id: [:integer, nil],
|
|
4109
|
+
task_name: [:string, nil],
|
|
4110
|
+
task_outline_number: [:string, nil],
|
|
4111
|
+
task_summary_name: [:string, nil],
|
|
4112
|
+
task_unique_id: [:integer, nil],
|
|
4113
|
+
team_status_pending: [:boolean, nil],
|
|
4114
|
+
text1: [:string, nil],
|
|
4115
|
+
text10: [:string, nil],
|
|
4116
|
+
text11: [:string, nil],
|
|
4117
|
+
text12: [:string, nil],
|
|
4118
|
+
text13: [:string, nil],
|
|
4119
|
+
text14: [:string, nil],
|
|
4120
|
+
text15: [:string, nil],
|
|
4121
|
+
text16: [:string, nil],
|
|
4122
|
+
text17: [:string, nil],
|
|
4123
|
+
text18: [:string, nil],
|
|
4124
|
+
text19: [:string, nil],
|
|
4125
|
+
text2: [:string, nil],
|
|
4126
|
+
text20: [:string, nil],
|
|
4127
|
+
text21: [:string, nil],
|
|
4128
|
+
text22: [:string, nil],
|
|
4129
|
+
text23: [:string, nil],
|
|
4130
|
+
text24: [:string, nil],
|
|
4131
|
+
text25: [:string, nil],
|
|
4132
|
+
text26: [:string, nil],
|
|
4133
|
+
text27: [:string, nil],
|
|
4134
|
+
text28: [:string, nil],
|
|
4135
|
+
text29: [:string, nil],
|
|
4136
|
+
text3: [:string, nil],
|
|
4137
|
+
text30: [:string, nil],
|
|
4138
|
+
text4: [:string, nil],
|
|
4139
|
+
text5: [:string, nil],
|
|
4140
|
+
text6: [:string, nil],
|
|
4141
|
+
text7: [:string, nil],
|
|
4142
|
+
text8: [:string, nil],
|
|
4143
|
+
text9: [:string, nil],
|
|
4144
|
+
timephased_actual_irregular_work: [:timephased_work_list, nil],
|
|
4145
|
+
unavailable: [:string, nil],
|
|
4146
|
+
unique_id: [:integer, nil],
|
|
4147
|
+
update_needed: [:boolean, nil],
|
|
4148
|
+
vac: [:currency, nil],
|
|
4149
|
+
variable_rate_units: [:work_units, nil],
|
|
4150
|
+
wbs: [:string, nil],
|
|
4151
|
+
work: [:work, nil],
|
|
4152
|
+
work_contour: [:work_contour, nil],
|
|
4153
|
+
work_variance: [:work, nil],
|
|
4154
|
+
}.freeze
|
|
4155
|
+
end
|
|
4156
|
+
end
|