mpxj 9.2.5 → 9.5.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of mpxj might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +87 -125
- data/lib/mpxj.rb +4 -0
- data/lib/mpxj/assignment.rb +20 -18
- data/lib/mpxj/assignment_methods.rb +3804 -0
- data/lib/mpxj/container.rb +1 -37
- data/lib/mpxj/mpxj.jar +0 -0
- data/lib/mpxj/project.rb +4 -9
- data/lib/mpxj/properties.rb +6 -5
- data/lib/mpxj/property_methods.rb +2334 -0
- data/lib/mpxj/reader.rb +1 -15
- data/lib/mpxj/relation.rb +25 -5
- data/lib/mpxj/resource.rb +12 -10
- data/lib/mpxj/resource_methods.rb +4210 -0
- data/lib/mpxj/task.rb +52 -52
- data/lib/mpxj/task_methods.rb +8137 -0
- data/lib/mpxj/version.rb +1 -1
- metadata +6 -7
- data/docs/AssignmentAttributes.md +0 -162
- data/docs/PropertiesAttributes.md +0 -128
- data/docs/RelationAttributes.md +0 -5
- data/docs/ResourceAttributes.md +0 -201
- data/docs/TaskAttributes.md +0 -318
data/lib/mpxj/container.rb
CHANGED
@@ -5,51 +5,15 @@ module MPXJ
|
|
5
5
|
# Base class from which all project entities are derived
|
6
6
|
class Container
|
7
7
|
attr_reader :parent_project
|
8
|
-
def initialize(parent_project,
|
8
|
+
def initialize(parent_project, attribute_values)
|
9
9
|
@parent_project = parent_project
|
10
|
-
@attribute_types = attribute_types
|
11
10
|
@attribute_values = attribute_values
|
12
11
|
end
|
13
12
|
|
14
|
-
def method_missing(name, *args, &block)
|
15
|
-
# We can probably do this more efficiently with dynamic methods... but let's get some feedback first!
|
16
|
-
attribute_name = name.to_s
|
17
|
-
attribute_type = @attribute_types[attribute_name]
|
18
|
-
attribute_value = @attribute_values[attribute_name]
|
19
|
-
|
20
|
-
if attribute_type.nil? && attribute_value.nil?
|
21
|
-
super
|
22
|
-
else
|
23
|
-
if attribute_type.nil?
|
24
|
-
attribute_type = 1
|
25
|
-
end
|
26
|
-
get_attribute_value(attribute_type, attribute_value)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
protected
|
31
|
-
|
32
13
|
attr_reader :attribute_values
|
33
14
|
|
34
15
|
private
|
35
16
|
|
36
|
-
def get_attribute_value(attribute_type, attribute_value)
|
37
|
-
case attribute_type.to_i
|
38
|
-
when 12, 17, 19
|
39
|
-
get_integer_value(attribute_value)
|
40
|
-
when 8, 3, 5, 7
|
41
|
-
get_float_value(attribute_value)
|
42
|
-
when 2
|
43
|
-
get_date_value(attribute_value)
|
44
|
-
when 6, 16
|
45
|
-
get_duration_value(attribute_value)
|
46
|
-
when 4
|
47
|
-
get_boolean_value(attribute_value)
|
48
|
-
else
|
49
|
-
attribute_value
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
17
|
def get_duration_value(attribute_value)
|
54
18
|
if attribute_value.nil?
|
55
19
|
Duration.new(0)
|
data/lib/mpxj/mpxj.jar
CHANGED
Binary file
|
data/lib/mpxj/project.rb
CHANGED
@@ -130,16 +130,13 @@ module MPXJ
|
|
130
130
|
end
|
131
131
|
|
132
132
|
def process_properties(json_data)
|
133
|
-
|
134
|
-
attribute_values = json_data["property_values"]
|
135
|
-
@properties = Properties.new(self, attribute_types, attribute_values)
|
133
|
+
@properties = Properties.new(self, json_data["property_values"])
|
136
134
|
end
|
137
135
|
|
138
136
|
def process_resources(json_data)
|
139
|
-
attribute_types = json_data["resource_types"]
|
140
137
|
resources = json_data["resources"]
|
141
138
|
resources.each do |attribute_values|
|
142
|
-
resource = Resource.new(self,
|
139
|
+
resource = Resource.new(self, attribute_values)
|
143
140
|
@all_resources << resource
|
144
141
|
@resources_by_unique_id[resource.unique_id] = resource
|
145
142
|
@resources_by_id[resource.id] = resource
|
@@ -147,10 +144,9 @@ module MPXJ
|
|
147
144
|
end
|
148
145
|
|
149
146
|
def process_tasks(json_data)
|
150
|
-
attribute_types = json_data["task_types"]
|
151
147
|
tasks = json_data["tasks"]
|
152
148
|
tasks.each do |attribute_values|
|
153
|
-
task = Task.new(self,
|
149
|
+
task = Task.new(self, attribute_values)
|
154
150
|
@all_tasks << task
|
155
151
|
@tasks_by_unique_id[task.unique_id] = task
|
156
152
|
@tasks_by_id[task.id] = task
|
@@ -158,10 +154,9 @@ module MPXJ
|
|
158
154
|
end
|
159
155
|
|
160
156
|
def process_assignments(json_data)
|
161
|
-
attribute_types = json_data["assignment_types"]
|
162
157
|
assignments = json_data["assignments"]
|
163
158
|
assignments.each do |attribute_values|
|
164
|
-
assignment = Assignment.new(self,
|
159
|
+
assignment = Assignment.new(self, attribute_values)
|
165
160
|
@all_assignments << assignment
|
166
161
|
if assignment.task
|
167
162
|
assignment.task.assignments << assignment
|
data/lib/mpxj/properties.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
-
module MPXJ
|
2
|
-
# Represents the properties of a project
|
3
|
-
class Properties < Container
|
4
|
-
|
5
|
-
end
|
1
|
+
module MPXJ
|
2
|
+
# Represents the properties of a project
|
3
|
+
class Properties < Container
|
4
|
+
include MPXJ::PropertyMethods
|
5
|
+
end
|
6
|
+
end
|
@@ -0,0 +1,2334 @@
|
|
1
|
+
module MPXJ
|
2
|
+
module PropertyMethods
|
3
|
+
# Retrieve the Actuals In Sync value
|
4
|
+
#
|
5
|
+
# @return Actuals In Sync value
|
6
|
+
def actuals_in_sync
|
7
|
+
get_boolean_value(attribute_values['actuals_in_sync'])
|
8
|
+
end
|
9
|
+
|
10
|
+
# Retrieve the Actual Cost value
|
11
|
+
#
|
12
|
+
# @return Actual Cost value
|
13
|
+
def actual_cost
|
14
|
+
get_float_value(attribute_values['actual_cost'])
|
15
|
+
end
|
16
|
+
|
17
|
+
# Retrieve the Actual Duration value
|
18
|
+
#
|
19
|
+
# @return Actual Duration value
|
20
|
+
def actual_duration
|
21
|
+
get_duration_value(attribute_values['actual_duration'])
|
22
|
+
end
|
23
|
+
|
24
|
+
# Retrieve the Actual Finish value
|
25
|
+
#
|
26
|
+
# @return Actual Finish value
|
27
|
+
def actual_finish
|
28
|
+
get_date_value(attribute_values['actual_finish'])
|
29
|
+
end
|
30
|
+
|
31
|
+
# Retrieve the Actual Start value
|
32
|
+
#
|
33
|
+
# @return Actual Start value
|
34
|
+
def actual_start
|
35
|
+
get_date_value(attribute_values['actual_start'])
|
36
|
+
end
|
37
|
+
|
38
|
+
# Retrieve the Actual Work value
|
39
|
+
#
|
40
|
+
# @return Actual Work value
|
41
|
+
def actual_work
|
42
|
+
get_duration_value(attribute_values['actual_work'])
|
43
|
+
end
|
44
|
+
|
45
|
+
# Retrieve the Admin Project value
|
46
|
+
#
|
47
|
+
# @return Admin Project value
|
48
|
+
def admin_project
|
49
|
+
get_boolean_value(attribute_values['admin_project'])
|
50
|
+
end
|
51
|
+
|
52
|
+
# Retrieve the AM Text value
|
53
|
+
#
|
54
|
+
# @return AM Text value
|
55
|
+
def am_text
|
56
|
+
attribute_values['am_text']
|
57
|
+
end
|
58
|
+
|
59
|
+
# Retrieve the Application Version value
|
60
|
+
#
|
61
|
+
# @return Application Version value
|
62
|
+
def application_version
|
63
|
+
get_integer_value(attribute_values['application_version'])
|
64
|
+
end
|
65
|
+
|
66
|
+
# Retrieve the Author value
|
67
|
+
#
|
68
|
+
# @return Author value
|
69
|
+
def author
|
70
|
+
attribute_values['author']
|
71
|
+
end
|
72
|
+
|
73
|
+
# Retrieve the Auto Filter value
|
74
|
+
#
|
75
|
+
# @return Auto Filter value
|
76
|
+
def autofilter
|
77
|
+
get_boolean_value(attribute_values['autofilter'])
|
78
|
+
end
|
79
|
+
|
80
|
+
# Retrieve the Auto Add New Resources and Tasks value
|
81
|
+
#
|
82
|
+
# @return Auto Add New Resources and Tasks value
|
83
|
+
def auto_add_new_resources_and_tasks
|
84
|
+
get_boolean_value(attribute_values['auto_add_new_resources_and_tasks'])
|
85
|
+
end
|
86
|
+
|
87
|
+
# Retrieve the Auto Link value
|
88
|
+
#
|
89
|
+
# @return Auto Link value
|
90
|
+
def auto_link
|
91
|
+
get_boolean_value(attribute_values['auto_link'])
|
92
|
+
end
|
93
|
+
|
94
|
+
# Retrieve the Bar Text Date Format value
|
95
|
+
#
|
96
|
+
# @return Bar Text Date Format value
|
97
|
+
def bar_text_date_format
|
98
|
+
attribute_values['bar_text_date_format']
|
99
|
+
end
|
100
|
+
|
101
|
+
# Retrieve the Baseline10 Date value
|
102
|
+
#
|
103
|
+
# @return Baseline10 Date value
|
104
|
+
def baseline10_date
|
105
|
+
get_date_value(attribute_values['baseline10_date'])
|
106
|
+
end
|
107
|
+
|
108
|
+
# Retrieve the Baseline1 Date value
|
109
|
+
#
|
110
|
+
# @return Baseline1 Date value
|
111
|
+
def baseline1_date
|
112
|
+
get_date_value(attribute_values['baseline1_date'])
|
113
|
+
end
|
114
|
+
|
115
|
+
# Retrieve the Baseline2 Date value
|
116
|
+
#
|
117
|
+
# @return Baseline2 Date value
|
118
|
+
def baseline2_date
|
119
|
+
get_date_value(attribute_values['baseline2_date'])
|
120
|
+
end
|
121
|
+
|
122
|
+
# Retrieve the Baseline3 Date value
|
123
|
+
#
|
124
|
+
# @return Baseline3 Date value
|
125
|
+
def baseline3_date
|
126
|
+
get_date_value(attribute_values['baseline3_date'])
|
127
|
+
end
|
128
|
+
|
129
|
+
# Retrieve the Baseline4 Date value
|
130
|
+
#
|
131
|
+
# @return Baseline4 Date value
|
132
|
+
def baseline4_date
|
133
|
+
get_date_value(attribute_values['baseline4_date'])
|
134
|
+
end
|
135
|
+
|
136
|
+
# Retrieve the Baseline5 Date value
|
137
|
+
#
|
138
|
+
# @return Baseline5 Date value
|
139
|
+
def baseline5_date
|
140
|
+
get_date_value(attribute_values['baseline5_date'])
|
141
|
+
end
|
142
|
+
|
143
|
+
# Retrieve the Baseline6 Date value
|
144
|
+
#
|
145
|
+
# @return Baseline6 Date value
|
146
|
+
def baseline6_date
|
147
|
+
get_date_value(attribute_values['baseline6_date'])
|
148
|
+
end
|
149
|
+
|
150
|
+
# Retrieve the Baseline7 Date value
|
151
|
+
#
|
152
|
+
# @return Baseline7 Date value
|
153
|
+
def baseline7_date
|
154
|
+
get_date_value(attribute_values['baseline7_date'])
|
155
|
+
end
|
156
|
+
|
157
|
+
# Retrieve the Baseline8 Date value
|
158
|
+
#
|
159
|
+
# @return Baseline8 Date value
|
160
|
+
def baseline8_date
|
161
|
+
get_date_value(attribute_values['baseline8_date'])
|
162
|
+
end
|
163
|
+
|
164
|
+
# Retrieve the Baseline9 Date value
|
165
|
+
#
|
166
|
+
# @return Baseline9 Date value
|
167
|
+
def baseline9_date
|
168
|
+
get_date_value(attribute_values['baseline9_date'])
|
169
|
+
end
|
170
|
+
|
171
|
+
# Retrieve the Baseline Cost value
|
172
|
+
#
|
173
|
+
# @return Baseline Cost value
|
174
|
+
def baseline_cost
|
175
|
+
get_float_value(attribute_values['baseline_cost'])
|
176
|
+
end
|
177
|
+
|
178
|
+
# Retrieve the Baseline Date value
|
179
|
+
#
|
180
|
+
# @return Baseline Date value
|
181
|
+
def baseline_date
|
182
|
+
get_date_value(attribute_values['baseline_date'])
|
183
|
+
end
|
184
|
+
|
185
|
+
# Retrieve the Baseline Duration value
|
186
|
+
#
|
187
|
+
# @return Baseline Duration value
|
188
|
+
def baseline_duration
|
189
|
+
get_duration_value(attribute_values['baseline_duration'])
|
190
|
+
end
|
191
|
+
|
192
|
+
# Retrieve the Baseline Finish value
|
193
|
+
#
|
194
|
+
# @return Baseline Finish value
|
195
|
+
def baseline_finish
|
196
|
+
get_date_value(attribute_values['baseline_finish'])
|
197
|
+
end
|
198
|
+
|
199
|
+
# Retrieve the Baseline For Earned Value value
|
200
|
+
#
|
201
|
+
# @return Baseline For Earned Value value
|
202
|
+
def baseline_for_earned_value
|
203
|
+
get_integer_value(attribute_values['baseline_for_earned_value'])
|
204
|
+
end
|
205
|
+
|
206
|
+
# Retrieve the Baseline Project Unique ID value
|
207
|
+
#
|
208
|
+
# @return Baseline Project Unique ID value
|
209
|
+
def baseline_project_unique_id
|
210
|
+
get_integer_value(attribute_values['baseline_project_unique_id'])
|
211
|
+
end
|
212
|
+
|
213
|
+
# Retrieve the Baseline Start value
|
214
|
+
#
|
215
|
+
# @return Baseline Start value
|
216
|
+
def baseline_start
|
217
|
+
get_date_value(attribute_values['baseline_start'])
|
218
|
+
end
|
219
|
+
|
220
|
+
# Retrieve the Baseline Work value
|
221
|
+
#
|
222
|
+
# @return Baseline Work value
|
223
|
+
def baseline_work
|
224
|
+
get_duration_value(attribute_values['baseline_work'])
|
225
|
+
end
|
226
|
+
|
227
|
+
# Retrieve the Category value
|
228
|
+
#
|
229
|
+
# @return Category value
|
230
|
+
def category
|
231
|
+
attribute_values['category']
|
232
|
+
end
|
233
|
+
|
234
|
+
# Retrieve the Comments value
|
235
|
+
#
|
236
|
+
# @return Comments value
|
237
|
+
def comments
|
238
|
+
attribute_values['comments']
|
239
|
+
end
|
240
|
+
|
241
|
+
# Retrieve the Company value
|
242
|
+
#
|
243
|
+
# @return Company value
|
244
|
+
def company
|
245
|
+
attribute_values['company']
|
246
|
+
end
|
247
|
+
|
248
|
+
# Retrieve the Content Status value
|
249
|
+
#
|
250
|
+
# @return Content Status value
|
251
|
+
def content_status
|
252
|
+
attribute_values['content_status']
|
253
|
+
end
|
254
|
+
|
255
|
+
# Retrieve the Content Type value
|
256
|
+
#
|
257
|
+
# @return Content Type value
|
258
|
+
def content_type
|
259
|
+
attribute_values['content_type']
|
260
|
+
end
|
261
|
+
|
262
|
+
# Retrieve the Cost value
|
263
|
+
#
|
264
|
+
# @return Cost value
|
265
|
+
def cost
|
266
|
+
get_float_value(attribute_values['cost'])
|
267
|
+
end
|
268
|
+
|
269
|
+
# Retrieve the Creation Date value
|
270
|
+
#
|
271
|
+
# @return Creation Date value
|
272
|
+
def creation_date
|
273
|
+
get_date_value(attribute_values['creation_date'])
|
274
|
+
end
|
275
|
+
|
276
|
+
# Retrieve the Critical Activity Type value
|
277
|
+
#
|
278
|
+
# @return Critical Activity Type value
|
279
|
+
def critical_activity_type
|
280
|
+
attribute_values['critical_activity_type']
|
281
|
+
end
|
282
|
+
|
283
|
+
# Retrieve the Critical Slack Limit value
|
284
|
+
#
|
285
|
+
# @return Critical Slack Limit value
|
286
|
+
def critical_slack_limit
|
287
|
+
get_integer_value(attribute_values['critical_slack_limit'])
|
288
|
+
end
|
289
|
+
|
290
|
+
# Retrieve the Currency Code value
|
291
|
+
#
|
292
|
+
# @return Currency Code value
|
293
|
+
def currency_code
|
294
|
+
attribute_values['currency_code']
|
295
|
+
end
|
296
|
+
|
297
|
+
# Retrieve the Currency Digits value
|
298
|
+
#
|
299
|
+
# @return Currency Digits value
|
300
|
+
def currency_digits
|
301
|
+
get_integer_value(attribute_values['currency_digits'])
|
302
|
+
end
|
303
|
+
|
304
|
+
# Retrieve the Currency Symbol value
|
305
|
+
#
|
306
|
+
# @return Currency Symbol value
|
307
|
+
def currency_symbol
|
308
|
+
attribute_values['currency_symbol']
|
309
|
+
end
|
310
|
+
|
311
|
+
# Retrieve the Currency Symbol Position value
|
312
|
+
#
|
313
|
+
# @return Currency Symbol Position value
|
314
|
+
def currency_symbol_position
|
315
|
+
attribute_values['currency_symbol_position']
|
316
|
+
end
|
317
|
+
|
318
|
+
# Retrieve the Current Date value
|
319
|
+
#
|
320
|
+
# @return Current Date value
|
321
|
+
def current_date
|
322
|
+
get_date_value(attribute_values['current_date'])
|
323
|
+
end
|
324
|
+
|
325
|
+
# Retrieve the Custom Properties value
|
326
|
+
#
|
327
|
+
# @return Custom Properties value
|
328
|
+
def custom_properties
|
329
|
+
attribute_values['custom_properties']
|
330
|
+
end
|
331
|
+
|
332
|
+
# Retrieve the Date Format value
|
333
|
+
#
|
334
|
+
# @return Date Format value
|
335
|
+
def date_format
|
336
|
+
attribute_values['date_format']
|
337
|
+
end
|
338
|
+
|
339
|
+
# Retrieve the Date Order value
|
340
|
+
#
|
341
|
+
# @return Date Order value
|
342
|
+
def date_order
|
343
|
+
attribute_values['date_order']
|
344
|
+
end
|
345
|
+
|
346
|
+
# Retrieve the Date Separator value
|
347
|
+
#
|
348
|
+
# @return Date Separator value
|
349
|
+
def date_separator
|
350
|
+
attribute_values['date_separator']
|
351
|
+
end
|
352
|
+
|
353
|
+
# Retrieve the Days per Month value
|
354
|
+
#
|
355
|
+
# @return Days per Month value
|
356
|
+
def days_per_month
|
357
|
+
get_integer_value(attribute_values['days_per_month'])
|
358
|
+
end
|
359
|
+
|
360
|
+
# Retrieve the Decimal Separator value
|
361
|
+
#
|
362
|
+
# @return Decimal Separator value
|
363
|
+
def decimal_separator
|
364
|
+
attribute_values['decimal_separator']
|
365
|
+
end
|
366
|
+
|
367
|
+
# Retrieve the Default Calendar Name value
|
368
|
+
#
|
369
|
+
# @return Default Calendar Name value
|
370
|
+
def default_calendar_name
|
371
|
+
attribute_values['default_calendar_name']
|
372
|
+
end
|
373
|
+
|
374
|
+
# Retrieve the Default Duration Is Fixed value
|
375
|
+
#
|
376
|
+
# @return Default Duration Is Fixed value
|
377
|
+
def default_duration_is_fixed
|
378
|
+
get_boolean_value(attribute_values['default_duration_is_fixed'])
|
379
|
+
end
|
380
|
+
|
381
|
+
# Retrieve the Default Duration Units value
|
382
|
+
#
|
383
|
+
# @return Default Duration Units value
|
384
|
+
def default_duration_units
|
385
|
+
attribute_values['default_duration_units']
|
386
|
+
end
|
387
|
+
|
388
|
+
# Retrieve the Default End Time value
|
389
|
+
#
|
390
|
+
# @return Default End Time value
|
391
|
+
def default_end_time
|
392
|
+
get_date_value(attribute_values['default_end_time'])
|
393
|
+
end
|
394
|
+
|
395
|
+
# Retrieve the Default Fixed Cost Accrual value
|
396
|
+
#
|
397
|
+
# @return Default Fixed Cost Accrual value
|
398
|
+
def default_fixed_cost_accrual
|
399
|
+
attribute_values['default_fixed_cost_accrual']
|
400
|
+
end
|
401
|
+
|
402
|
+
# Retrieve the Default Overtime Rate value
|
403
|
+
#
|
404
|
+
# @return Default Overtime Rate value
|
405
|
+
def default_overtime_rate
|
406
|
+
attribute_values['default_overtime_rate']
|
407
|
+
end
|
408
|
+
|
409
|
+
# Retrieve the Default Standard Rate value
|
410
|
+
#
|
411
|
+
# @return Default Standard Rate value
|
412
|
+
def default_standard_rate
|
413
|
+
attribute_values['default_standard_rate']
|
414
|
+
end
|
415
|
+
|
416
|
+
# Retrieve the Default Start Time value
|
417
|
+
#
|
418
|
+
# @return Default Start Time value
|
419
|
+
def default_start_time
|
420
|
+
get_date_value(attribute_values['default_start_time'])
|
421
|
+
end
|
422
|
+
|
423
|
+
# Retrieve the Default Tssk Earned Value Method value
|
424
|
+
#
|
425
|
+
# @return Default Tssk Earned Value Method value
|
426
|
+
def default_task_earned_value_method
|
427
|
+
attribute_values['default_task_earned_value_method']
|
428
|
+
end
|
429
|
+
|
430
|
+
# Retrieve the Default Task Type value
|
431
|
+
#
|
432
|
+
# @return Default Task Type value
|
433
|
+
def default_task_type
|
434
|
+
attribute_values['default_task_type']
|
435
|
+
end
|
436
|
+
|
437
|
+
# Retrieve the Default Work Units value
|
438
|
+
#
|
439
|
+
# @return Default Work Units value
|
440
|
+
def default_work_units
|
441
|
+
attribute_values['default_work_units']
|
442
|
+
end
|
443
|
+
|
444
|
+
# Retrieve the Document Version value
|
445
|
+
#
|
446
|
+
# @return Document Version value
|
447
|
+
def document_version
|
448
|
+
attribute_values['document_version']
|
449
|
+
end
|
450
|
+
|
451
|
+
# Retrieve the Duration value
|
452
|
+
#
|
453
|
+
# @return Duration value
|
454
|
+
def duration
|
455
|
+
get_duration_value(attribute_values['duration'])
|
456
|
+
end
|
457
|
+
|
458
|
+
# Retrieve the Earned Value Method value
|
459
|
+
#
|
460
|
+
# @return Earned Value Method value
|
461
|
+
def earned_value_method
|
462
|
+
attribute_values['earned_value_method']
|
463
|
+
end
|
464
|
+
|
465
|
+
# Retrieve the Editable Actual Costs value
|
466
|
+
#
|
467
|
+
# @return Editable Actual Costs value
|
468
|
+
def editable_actual_costs
|
469
|
+
get_boolean_value(attribute_values['editable_actual_costs'])
|
470
|
+
end
|
471
|
+
|
472
|
+
# Retrieve the Editing Time value
|
473
|
+
#
|
474
|
+
# @return Editing Time value
|
475
|
+
def editing_time
|
476
|
+
get_integer_value(attribute_values['editing_time'])
|
477
|
+
end
|
478
|
+
|
479
|
+
# Retrieve the Enterprise Custom Field 1 value
|
480
|
+
#
|
481
|
+
# @return Enterprise Custom Field 1 value
|
482
|
+
def enterprise_custom_field1
|
483
|
+
attribute_values['enterprise_custom_field1']
|
484
|
+
end
|
485
|
+
|
486
|
+
# Retrieve the Enterprise Custom Field 10 value
|
487
|
+
#
|
488
|
+
# @return Enterprise Custom Field 10 value
|
489
|
+
def enterprise_custom_field10
|
490
|
+
attribute_values['enterprise_custom_field10']
|
491
|
+
end
|
492
|
+
|
493
|
+
# Retrieve the Enterprise Custom Field 100 value
|
494
|
+
#
|
495
|
+
# @return Enterprise Custom Field 100 value
|
496
|
+
def enterprise_custom_field100
|
497
|
+
attribute_values['enterprise_custom_field100']
|
498
|
+
end
|
499
|
+
|
500
|
+
# Retrieve the Enterprise Custom Field 101 value
|
501
|
+
#
|
502
|
+
# @return Enterprise Custom Field 101 value
|
503
|
+
def enterprise_custom_field101
|
504
|
+
attribute_values['enterprise_custom_field101']
|
505
|
+
end
|
506
|
+
|
507
|
+
# Retrieve the Enterprise Custom Field 102 value
|
508
|
+
#
|
509
|
+
# @return Enterprise Custom Field 102 value
|
510
|
+
def enterprise_custom_field102
|
511
|
+
attribute_values['enterprise_custom_field102']
|
512
|
+
end
|
513
|
+
|
514
|
+
# Retrieve the Enterprise Custom Field 103 value
|
515
|
+
#
|
516
|
+
# @return Enterprise Custom Field 103 value
|
517
|
+
def enterprise_custom_field103
|
518
|
+
attribute_values['enterprise_custom_field103']
|
519
|
+
end
|
520
|
+
|
521
|
+
# Retrieve the Enterprise Custom Field 104 value
|
522
|
+
#
|
523
|
+
# @return Enterprise Custom Field 104 value
|
524
|
+
def enterprise_custom_field104
|
525
|
+
attribute_values['enterprise_custom_field104']
|
526
|
+
end
|
527
|
+
|
528
|
+
# Retrieve the Enterprise Custom Field 105 value
|
529
|
+
#
|
530
|
+
# @return Enterprise Custom Field 105 value
|
531
|
+
def enterprise_custom_field105
|
532
|
+
attribute_values['enterprise_custom_field105']
|
533
|
+
end
|
534
|
+
|
535
|
+
# Retrieve the Enterprise Custom Field 106 value
|
536
|
+
#
|
537
|
+
# @return Enterprise Custom Field 106 value
|
538
|
+
def enterprise_custom_field106
|
539
|
+
attribute_values['enterprise_custom_field106']
|
540
|
+
end
|
541
|
+
|
542
|
+
# Retrieve the Enterprise Custom Field 107 value
|
543
|
+
#
|
544
|
+
# @return Enterprise Custom Field 107 value
|
545
|
+
def enterprise_custom_field107
|
546
|
+
attribute_values['enterprise_custom_field107']
|
547
|
+
end
|
548
|
+
|
549
|
+
# Retrieve the Enterprise Custom Field 108 value
|
550
|
+
#
|
551
|
+
# @return Enterprise Custom Field 108 value
|
552
|
+
def enterprise_custom_field108
|
553
|
+
attribute_values['enterprise_custom_field108']
|
554
|
+
end
|
555
|
+
|
556
|
+
# Retrieve the Enterprise Custom Field 109 value
|
557
|
+
#
|
558
|
+
# @return Enterprise Custom Field 109 value
|
559
|
+
def enterprise_custom_field109
|
560
|
+
attribute_values['enterprise_custom_field109']
|
561
|
+
end
|
562
|
+
|
563
|
+
# Retrieve the Enterprise Custom Field 11 value
|
564
|
+
#
|
565
|
+
# @return Enterprise Custom Field 11 value
|
566
|
+
def enterprise_custom_field11
|
567
|
+
attribute_values['enterprise_custom_field11']
|
568
|
+
end
|
569
|
+
|
570
|
+
# Retrieve the Enterprise Custom Field 110 value
|
571
|
+
#
|
572
|
+
# @return Enterprise Custom Field 110 value
|
573
|
+
def enterprise_custom_field110
|
574
|
+
attribute_values['enterprise_custom_field110']
|
575
|
+
end
|
576
|
+
|
577
|
+
# Retrieve the Enterprise Custom Field 111 value
|
578
|
+
#
|
579
|
+
# @return Enterprise Custom Field 111 value
|
580
|
+
def enterprise_custom_field111
|
581
|
+
attribute_values['enterprise_custom_field111']
|
582
|
+
end
|
583
|
+
|
584
|
+
# Retrieve the Enterprise Custom Field 112 value
|
585
|
+
#
|
586
|
+
# @return Enterprise Custom Field 112 value
|
587
|
+
def enterprise_custom_field112
|
588
|
+
attribute_values['enterprise_custom_field112']
|
589
|
+
end
|
590
|
+
|
591
|
+
# Retrieve the Enterprise Custom Field 113 value
|
592
|
+
#
|
593
|
+
# @return Enterprise Custom Field 113 value
|
594
|
+
def enterprise_custom_field113
|
595
|
+
attribute_values['enterprise_custom_field113']
|
596
|
+
end
|
597
|
+
|
598
|
+
# Retrieve the Enterprise Custom Field 114 value
|
599
|
+
#
|
600
|
+
# @return Enterprise Custom Field 114 value
|
601
|
+
def enterprise_custom_field114
|
602
|
+
attribute_values['enterprise_custom_field114']
|
603
|
+
end
|
604
|
+
|
605
|
+
# Retrieve the Enterprise Custom Field 115 value
|
606
|
+
#
|
607
|
+
# @return Enterprise Custom Field 115 value
|
608
|
+
def enterprise_custom_field115
|
609
|
+
attribute_values['enterprise_custom_field115']
|
610
|
+
end
|
611
|
+
|
612
|
+
# Retrieve the Enterprise Custom Field 116 value
|
613
|
+
#
|
614
|
+
# @return Enterprise Custom Field 116 value
|
615
|
+
def enterprise_custom_field116
|
616
|
+
attribute_values['enterprise_custom_field116']
|
617
|
+
end
|
618
|
+
|
619
|
+
# Retrieve the Enterprise Custom Field 117 value
|
620
|
+
#
|
621
|
+
# @return Enterprise Custom Field 117 value
|
622
|
+
def enterprise_custom_field117
|
623
|
+
attribute_values['enterprise_custom_field117']
|
624
|
+
end
|
625
|
+
|
626
|
+
# Retrieve the Enterprise Custom Field 118 value
|
627
|
+
#
|
628
|
+
# @return Enterprise Custom Field 118 value
|
629
|
+
def enterprise_custom_field118
|
630
|
+
attribute_values['enterprise_custom_field118']
|
631
|
+
end
|
632
|
+
|
633
|
+
# Retrieve the Enterprise Custom Field 119 value
|
634
|
+
#
|
635
|
+
# @return Enterprise Custom Field 119 value
|
636
|
+
def enterprise_custom_field119
|
637
|
+
attribute_values['enterprise_custom_field119']
|
638
|
+
end
|
639
|
+
|
640
|
+
# Retrieve the Enterprise Custom Field 12 value
|
641
|
+
#
|
642
|
+
# @return Enterprise Custom Field 12 value
|
643
|
+
def enterprise_custom_field12
|
644
|
+
attribute_values['enterprise_custom_field12']
|
645
|
+
end
|
646
|
+
|
647
|
+
# Retrieve the Enterprise Custom Field 120 value
|
648
|
+
#
|
649
|
+
# @return Enterprise Custom Field 120 value
|
650
|
+
def enterprise_custom_field120
|
651
|
+
attribute_values['enterprise_custom_field120']
|
652
|
+
end
|
653
|
+
|
654
|
+
# Retrieve the Enterprise Custom Field 121 value
|
655
|
+
#
|
656
|
+
# @return Enterprise Custom Field 121 value
|
657
|
+
def enterprise_custom_field121
|
658
|
+
attribute_values['enterprise_custom_field121']
|
659
|
+
end
|
660
|
+
|
661
|
+
# Retrieve the Enterprise Custom Field 122 value
|
662
|
+
#
|
663
|
+
# @return Enterprise Custom Field 122 value
|
664
|
+
def enterprise_custom_field122
|
665
|
+
attribute_values['enterprise_custom_field122']
|
666
|
+
end
|
667
|
+
|
668
|
+
# Retrieve the Enterprise Custom Field 123 value
|
669
|
+
#
|
670
|
+
# @return Enterprise Custom Field 123 value
|
671
|
+
def enterprise_custom_field123
|
672
|
+
attribute_values['enterprise_custom_field123']
|
673
|
+
end
|
674
|
+
|
675
|
+
# Retrieve the Enterprise Custom Field 124 value
|
676
|
+
#
|
677
|
+
# @return Enterprise Custom Field 124 value
|
678
|
+
def enterprise_custom_field124
|
679
|
+
attribute_values['enterprise_custom_field124']
|
680
|
+
end
|
681
|
+
|
682
|
+
# Retrieve the Enterprise Custom Field 125 value
|
683
|
+
#
|
684
|
+
# @return Enterprise Custom Field 125 value
|
685
|
+
def enterprise_custom_field125
|
686
|
+
attribute_values['enterprise_custom_field125']
|
687
|
+
end
|
688
|
+
|
689
|
+
# Retrieve the Enterprise Custom Field 126 value
|
690
|
+
#
|
691
|
+
# @return Enterprise Custom Field 126 value
|
692
|
+
def enterprise_custom_field126
|
693
|
+
attribute_values['enterprise_custom_field126']
|
694
|
+
end
|
695
|
+
|
696
|
+
# Retrieve the Enterprise Custom Field 127 value
|
697
|
+
#
|
698
|
+
# @return Enterprise Custom Field 127 value
|
699
|
+
def enterprise_custom_field127
|
700
|
+
attribute_values['enterprise_custom_field127']
|
701
|
+
end
|
702
|
+
|
703
|
+
# Retrieve the Enterprise Custom Field 128 value
|
704
|
+
#
|
705
|
+
# @return Enterprise Custom Field 128 value
|
706
|
+
def enterprise_custom_field128
|
707
|
+
attribute_values['enterprise_custom_field128']
|
708
|
+
end
|
709
|
+
|
710
|
+
# Retrieve the Enterprise Custom Field 129 value
|
711
|
+
#
|
712
|
+
# @return Enterprise Custom Field 129 value
|
713
|
+
def enterprise_custom_field129
|
714
|
+
attribute_values['enterprise_custom_field129']
|
715
|
+
end
|
716
|
+
|
717
|
+
# Retrieve the Enterprise Custom Field 13 value
|
718
|
+
#
|
719
|
+
# @return Enterprise Custom Field 13 value
|
720
|
+
def enterprise_custom_field13
|
721
|
+
attribute_values['enterprise_custom_field13']
|
722
|
+
end
|
723
|
+
|
724
|
+
# Retrieve the Enterprise Custom Field 130 value
|
725
|
+
#
|
726
|
+
# @return Enterprise Custom Field 130 value
|
727
|
+
def enterprise_custom_field130
|
728
|
+
attribute_values['enterprise_custom_field130']
|
729
|
+
end
|
730
|
+
|
731
|
+
# Retrieve the Enterprise Custom Field 131 value
|
732
|
+
#
|
733
|
+
# @return Enterprise Custom Field 131 value
|
734
|
+
def enterprise_custom_field131
|
735
|
+
attribute_values['enterprise_custom_field131']
|
736
|
+
end
|
737
|
+
|
738
|
+
# Retrieve the Enterprise Custom Field 132 value
|
739
|
+
#
|
740
|
+
# @return Enterprise Custom Field 132 value
|
741
|
+
def enterprise_custom_field132
|
742
|
+
attribute_values['enterprise_custom_field132']
|
743
|
+
end
|
744
|
+
|
745
|
+
# Retrieve the Enterprise Custom Field 133 value
|
746
|
+
#
|
747
|
+
# @return Enterprise Custom Field 133 value
|
748
|
+
def enterprise_custom_field133
|
749
|
+
attribute_values['enterprise_custom_field133']
|
750
|
+
end
|
751
|
+
|
752
|
+
# Retrieve the Enterprise Custom Field 134 value
|
753
|
+
#
|
754
|
+
# @return Enterprise Custom Field 134 value
|
755
|
+
def enterprise_custom_field134
|
756
|
+
attribute_values['enterprise_custom_field134']
|
757
|
+
end
|
758
|
+
|
759
|
+
# Retrieve the Enterprise Custom Field 135 value
|
760
|
+
#
|
761
|
+
# @return Enterprise Custom Field 135 value
|
762
|
+
def enterprise_custom_field135
|
763
|
+
attribute_values['enterprise_custom_field135']
|
764
|
+
end
|
765
|
+
|
766
|
+
# Retrieve the Enterprise Custom Field 136 value
|
767
|
+
#
|
768
|
+
# @return Enterprise Custom Field 136 value
|
769
|
+
def enterprise_custom_field136
|
770
|
+
attribute_values['enterprise_custom_field136']
|
771
|
+
end
|
772
|
+
|
773
|
+
# Retrieve the Enterprise Custom Field 137 value
|
774
|
+
#
|
775
|
+
# @return Enterprise Custom Field 137 value
|
776
|
+
def enterprise_custom_field137
|
777
|
+
attribute_values['enterprise_custom_field137']
|
778
|
+
end
|
779
|
+
|
780
|
+
# Retrieve the Enterprise Custom Field 138 value
|
781
|
+
#
|
782
|
+
# @return Enterprise Custom Field 138 value
|
783
|
+
def enterprise_custom_field138
|
784
|
+
attribute_values['enterprise_custom_field138']
|
785
|
+
end
|
786
|
+
|
787
|
+
# Retrieve the Enterprise Custom Field 139 value
|
788
|
+
#
|
789
|
+
# @return Enterprise Custom Field 139 value
|
790
|
+
def enterprise_custom_field139
|
791
|
+
attribute_values['enterprise_custom_field139']
|
792
|
+
end
|
793
|
+
|
794
|
+
# Retrieve the Enterprise Custom Field 14 value
|
795
|
+
#
|
796
|
+
# @return Enterprise Custom Field 14 value
|
797
|
+
def enterprise_custom_field14
|
798
|
+
attribute_values['enterprise_custom_field14']
|
799
|
+
end
|
800
|
+
|
801
|
+
# Retrieve the Enterprise Custom Field 140 value
|
802
|
+
#
|
803
|
+
# @return Enterprise Custom Field 140 value
|
804
|
+
def enterprise_custom_field140
|
805
|
+
attribute_values['enterprise_custom_field140']
|
806
|
+
end
|
807
|
+
|
808
|
+
# Retrieve the Enterprise Custom Field 141 value
|
809
|
+
#
|
810
|
+
# @return Enterprise Custom Field 141 value
|
811
|
+
def enterprise_custom_field141
|
812
|
+
attribute_values['enterprise_custom_field141']
|
813
|
+
end
|
814
|
+
|
815
|
+
# Retrieve the Enterprise Custom Field 142 value
|
816
|
+
#
|
817
|
+
# @return Enterprise Custom Field 142 value
|
818
|
+
def enterprise_custom_field142
|
819
|
+
attribute_values['enterprise_custom_field142']
|
820
|
+
end
|
821
|
+
|
822
|
+
# Retrieve the Enterprise Custom Field 143 value
|
823
|
+
#
|
824
|
+
# @return Enterprise Custom Field 143 value
|
825
|
+
def enterprise_custom_field143
|
826
|
+
attribute_values['enterprise_custom_field143']
|
827
|
+
end
|
828
|
+
|
829
|
+
# Retrieve the Enterprise Custom Field 144 value
|
830
|
+
#
|
831
|
+
# @return Enterprise Custom Field 144 value
|
832
|
+
def enterprise_custom_field144
|
833
|
+
attribute_values['enterprise_custom_field144']
|
834
|
+
end
|
835
|
+
|
836
|
+
# Retrieve the Enterprise Custom Field 145 value
|
837
|
+
#
|
838
|
+
# @return Enterprise Custom Field 145 value
|
839
|
+
def enterprise_custom_field145
|
840
|
+
attribute_values['enterprise_custom_field145']
|
841
|
+
end
|
842
|
+
|
843
|
+
# Retrieve the Enterprise Custom Field 146 value
|
844
|
+
#
|
845
|
+
# @return Enterprise Custom Field 146 value
|
846
|
+
def enterprise_custom_field146
|
847
|
+
attribute_values['enterprise_custom_field146']
|
848
|
+
end
|
849
|
+
|
850
|
+
# Retrieve the Enterprise Custom Field 147 value
|
851
|
+
#
|
852
|
+
# @return Enterprise Custom Field 147 value
|
853
|
+
def enterprise_custom_field147
|
854
|
+
attribute_values['enterprise_custom_field147']
|
855
|
+
end
|
856
|
+
|
857
|
+
# Retrieve the Enterprise Custom Field 148 value
|
858
|
+
#
|
859
|
+
# @return Enterprise Custom Field 148 value
|
860
|
+
def enterprise_custom_field148
|
861
|
+
attribute_values['enterprise_custom_field148']
|
862
|
+
end
|
863
|
+
|
864
|
+
# Retrieve the Enterprise Custom Field 149 value
|
865
|
+
#
|
866
|
+
# @return Enterprise Custom Field 149 value
|
867
|
+
def enterprise_custom_field149
|
868
|
+
attribute_values['enterprise_custom_field149']
|
869
|
+
end
|
870
|
+
|
871
|
+
# Retrieve the Enterprise Custom Field 15 value
|
872
|
+
#
|
873
|
+
# @return Enterprise Custom Field 15 value
|
874
|
+
def enterprise_custom_field15
|
875
|
+
attribute_values['enterprise_custom_field15']
|
876
|
+
end
|
877
|
+
|
878
|
+
# Retrieve the Enterprise Custom Field 150 value
|
879
|
+
#
|
880
|
+
# @return Enterprise Custom Field 150 value
|
881
|
+
def enterprise_custom_field150
|
882
|
+
attribute_values['enterprise_custom_field150']
|
883
|
+
end
|
884
|
+
|
885
|
+
# Retrieve the Enterprise Custom Field 151 value
|
886
|
+
#
|
887
|
+
# @return Enterprise Custom Field 151 value
|
888
|
+
def enterprise_custom_field151
|
889
|
+
attribute_values['enterprise_custom_field151']
|
890
|
+
end
|
891
|
+
|
892
|
+
# Retrieve the Enterprise Custom Field 152 value
|
893
|
+
#
|
894
|
+
# @return Enterprise Custom Field 152 value
|
895
|
+
def enterprise_custom_field152
|
896
|
+
attribute_values['enterprise_custom_field152']
|
897
|
+
end
|
898
|
+
|
899
|
+
# Retrieve the Enterprise Custom Field 153 value
|
900
|
+
#
|
901
|
+
# @return Enterprise Custom Field 153 value
|
902
|
+
def enterprise_custom_field153
|
903
|
+
attribute_values['enterprise_custom_field153']
|
904
|
+
end
|
905
|
+
|
906
|
+
# Retrieve the Enterprise Custom Field 154 value
|
907
|
+
#
|
908
|
+
# @return Enterprise Custom Field 154 value
|
909
|
+
def enterprise_custom_field154
|
910
|
+
attribute_values['enterprise_custom_field154']
|
911
|
+
end
|
912
|
+
|
913
|
+
# Retrieve the Enterprise Custom Field 155 value
|
914
|
+
#
|
915
|
+
# @return Enterprise Custom Field 155 value
|
916
|
+
def enterprise_custom_field155
|
917
|
+
attribute_values['enterprise_custom_field155']
|
918
|
+
end
|
919
|
+
|
920
|
+
# Retrieve the Enterprise Custom Field 156 value
|
921
|
+
#
|
922
|
+
# @return Enterprise Custom Field 156 value
|
923
|
+
def enterprise_custom_field156
|
924
|
+
attribute_values['enterprise_custom_field156']
|
925
|
+
end
|
926
|
+
|
927
|
+
# Retrieve the Enterprise Custom Field 157 value
|
928
|
+
#
|
929
|
+
# @return Enterprise Custom Field 157 value
|
930
|
+
def enterprise_custom_field157
|
931
|
+
attribute_values['enterprise_custom_field157']
|
932
|
+
end
|
933
|
+
|
934
|
+
# Retrieve the Enterprise Custom Field 158 value
|
935
|
+
#
|
936
|
+
# @return Enterprise Custom Field 158 value
|
937
|
+
def enterprise_custom_field158
|
938
|
+
attribute_values['enterprise_custom_field158']
|
939
|
+
end
|
940
|
+
|
941
|
+
# Retrieve the Enterprise Custom Field 159 value
|
942
|
+
#
|
943
|
+
# @return Enterprise Custom Field 159 value
|
944
|
+
def enterprise_custom_field159
|
945
|
+
attribute_values['enterprise_custom_field159']
|
946
|
+
end
|
947
|
+
|
948
|
+
# Retrieve the Enterprise Custom Field 16 value
|
949
|
+
#
|
950
|
+
# @return Enterprise Custom Field 16 value
|
951
|
+
def enterprise_custom_field16
|
952
|
+
attribute_values['enterprise_custom_field16']
|
953
|
+
end
|
954
|
+
|
955
|
+
# Retrieve the Enterprise Custom Field 160 value
|
956
|
+
#
|
957
|
+
# @return Enterprise Custom Field 160 value
|
958
|
+
def enterprise_custom_field160
|
959
|
+
attribute_values['enterprise_custom_field160']
|
960
|
+
end
|
961
|
+
|
962
|
+
# Retrieve the Enterprise Custom Field 161 value
|
963
|
+
#
|
964
|
+
# @return Enterprise Custom Field 161 value
|
965
|
+
def enterprise_custom_field161
|
966
|
+
attribute_values['enterprise_custom_field161']
|
967
|
+
end
|
968
|
+
|
969
|
+
# Retrieve the Enterprise Custom Field 162 value
|
970
|
+
#
|
971
|
+
# @return Enterprise Custom Field 162 value
|
972
|
+
def enterprise_custom_field162
|
973
|
+
attribute_values['enterprise_custom_field162']
|
974
|
+
end
|
975
|
+
|
976
|
+
# Retrieve the Enterprise Custom Field 163 value
|
977
|
+
#
|
978
|
+
# @return Enterprise Custom Field 163 value
|
979
|
+
def enterprise_custom_field163
|
980
|
+
attribute_values['enterprise_custom_field163']
|
981
|
+
end
|
982
|
+
|
983
|
+
# Retrieve the Enterprise Custom Field 164 value
|
984
|
+
#
|
985
|
+
# @return Enterprise Custom Field 164 value
|
986
|
+
def enterprise_custom_field164
|
987
|
+
attribute_values['enterprise_custom_field164']
|
988
|
+
end
|
989
|
+
|
990
|
+
# Retrieve the Enterprise Custom Field 165 value
|
991
|
+
#
|
992
|
+
# @return Enterprise Custom Field 165 value
|
993
|
+
def enterprise_custom_field165
|
994
|
+
attribute_values['enterprise_custom_field165']
|
995
|
+
end
|
996
|
+
|
997
|
+
# Retrieve the Enterprise Custom Field 166 value
|
998
|
+
#
|
999
|
+
# @return Enterprise Custom Field 166 value
|
1000
|
+
def enterprise_custom_field166
|
1001
|
+
attribute_values['enterprise_custom_field166']
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
# Retrieve the Enterprise Custom Field 167 value
|
1005
|
+
#
|
1006
|
+
# @return Enterprise Custom Field 167 value
|
1007
|
+
def enterprise_custom_field167
|
1008
|
+
attribute_values['enterprise_custom_field167']
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
# Retrieve the Enterprise Custom Field 168 value
|
1012
|
+
#
|
1013
|
+
# @return Enterprise Custom Field 168 value
|
1014
|
+
def enterprise_custom_field168
|
1015
|
+
attribute_values['enterprise_custom_field168']
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
# Retrieve the Enterprise Custom Field 169 value
|
1019
|
+
#
|
1020
|
+
# @return Enterprise Custom Field 169 value
|
1021
|
+
def enterprise_custom_field169
|
1022
|
+
attribute_values['enterprise_custom_field169']
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
# Retrieve the Enterprise Custom Field 17 value
|
1026
|
+
#
|
1027
|
+
# @return Enterprise Custom Field 17 value
|
1028
|
+
def enterprise_custom_field17
|
1029
|
+
attribute_values['enterprise_custom_field17']
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
# Retrieve the Enterprise Custom Field 170 value
|
1033
|
+
#
|
1034
|
+
# @return Enterprise Custom Field 170 value
|
1035
|
+
def enterprise_custom_field170
|
1036
|
+
attribute_values['enterprise_custom_field170']
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
# Retrieve the Enterprise Custom Field 171 value
|
1040
|
+
#
|
1041
|
+
# @return Enterprise Custom Field 171 value
|
1042
|
+
def enterprise_custom_field171
|
1043
|
+
attribute_values['enterprise_custom_field171']
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
# Retrieve the Enterprise Custom Field 172 value
|
1047
|
+
#
|
1048
|
+
# @return Enterprise Custom Field 172 value
|
1049
|
+
def enterprise_custom_field172
|
1050
|
+
attribute_values['enterprise_custom_field172']
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
# Retrieve the Enterprise Custom Field 173 value
|
1054
|
+
#
|
1055
|
+
# @return Enterprise Custom Field 173 value
|
1056
|
+
def enterprise_custom_field173
|
1057
|
+
attribute_values['enterprise_custom_field173']
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
# Retrieve the Enterprise Custom Field 174 value
|
1061
|
+
#
|
1062
|
+
# @return Enterprise Custom Field 174 value
|
1063
|
+
def enterprise_custom_field174
|
1064
|
+
attribute_values['enterprise_custom_field174']
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
# Retrieve the Enterprise Custom Field 175 value
|
1068
|
+
#
|
1069
|
+
# @return Enterprise Custom Field 175 value
|
1070
|
+
def enterprise_custom_field175
|
1071
|
+
attribute_values['enterprise_custom_field175']
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
# Retrieve the Enterprise Custom Field 176 value
|
1075
|
+
#
|
1076
|
+
# @return Enterprise Custom Field 176 value
|
1077
|
+
def enterprise_custom_field176
|
1078
|
+
attribute_values['enterprise_custom_field176']
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
# Retrieve the Enterprise Custom Field 177 value
|
1082
|
+
#
|
1083
|
+
# @return Enterprise Custom Field 177 value
|
1084
|
+
def enterprise_custom_field177
|
1085
|
+
attribute_values['enterprise_custom_field177']
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
# Retrieve the Enterprise Custom Field 178 value
|
1089
|
+
#
|
1090
|
+
# @return Enterprise Custom Field 178 value
|
1091
|
+
def enterprise_custom_field178
|
1092
|
+
attribute_values['enterprise_custom_field178']
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
# Retrieve the Enterprise Custom Field 179 value
|
1096
|
+
#
|
1097
|
+
# @return Enterprise Custom Field 179 value
|
1098
|
+
def enterprise_custom_field179
|
1099
|
+
attribute_values['enterprise_custom_field179']
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
# Retrieve the Enterprise Custom Field 18 value
|
1103
|
+
#
|
1104
|
+
# @return Enterprise Custom Field 18 value
|
1105
|
+
def enterprise_custom_field18
|
1106
|
+
attribute_values['enterprise_custom_field18']
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
# Retrieve the Enterprise Custom Field 180 value
|
1110
|
+
#
|
1111
|
+
# @return Enterprise Custom Field 180 value
|
1112
|
+
def enterprise_custom_field180
|
1113
|
+
attribute_values['enterprise_custom_field180']
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
# Retrieve the Enterprise Custom Field 181 value
|
1117
|
+
#
|
1118
|
+
# @return Enterprise Custom Field 181 value
|
1119
|
+
def enterprise_custom_field181
|
1120
|
+
attribute_values['enterprise_custom_field181']
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
# Retrieve the Enterprise Custom Field 182 value
|
1124
|
+
#
|
1125
|
+
# @return Enterprise Custom Field 182 value
|
1126
|
+
def enterprise_custom_field182
|
1127
|
+
attribute_values['enterprise_custom_field182']
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
# Retrieve the Enterprise Custom Field 183 value
|
1131
|
+
#
|
1132
|
+
# @return Enterprise Custom Field 183 value
|
1133
|
+
def enterprise_custom_field183
|
1134
|
+
attribute_values['enterprise_custom_field183']
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
# Retrieve the Enterprise Custom Field 184 value
|
1138
|
+
#
|
1139
|
+
# @return Enterprise Custom Field 184 value
|
1140
|
+
def enterprise_custom_field184
|
1141
|
+
attribute_values['enterprise_custom_field184']
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
# Retrieve the Enterprise Custom Field 185 value
|
1145
|
+
#
|
1146
|
+
# @return Enterprise Custom Field 185 value
|
1147
|
+
def enterprise_custom_field185
|
1148
|
+
attribute_values['enterprise_custom_field185']
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
# Retrieve the Enterprise Custom Field 186 value
|
1152
|
+
#
|
1153
|
+
# @return Enterprise Custom Field 186 value
|
1154
|
+
def enterprise_custom_field186
|
1155
|
+
attribute_values['enterprise_custom_field186']
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
# Retrieve the Enterprise Custom Field 187 value
|
1159
|
+
#
|
1160
|
+
# @return Enterprise Custom Field 187 value
|
1161
|
+
def enterprise_custom_field187
|
1162
|
+
attribute_values['enterprise_custom_field187']
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
# Retrieve the Enterprise Custom Field 188 value
|
1166
|
+
#
|
1167
|
+
# @return Enterprise Custom Field 188 value
|
1168
|
+
def enterprise_custom_field188
|
1169
|
+
attribute_values['enterprise_custom_field188']
|
1170
|
+
end
|
1171
|
+
|
1172
|
+
# Retrieve the Enterprise Custom Field 189 value
|
1173
|
+
#
|
1174
|
+
# @return Enterprise Custom Field 189 value
|
1175
|
+
def enterprise_custom_field189
|
1176
|
+
attribute_values['enterprise_custom_field189']
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
# Retrieve the Enterprise Custom Field 19 value
|
1180
|
+
#
|
1181
|
+
# @return Enterprise Custom Field 19 value
|
1182
|
+
def enterprise_custom_field19
|
1183
|
+
attribute_values['enterprise_custom_field19']
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
# Retrieve the Enterprise Custom Field 190 value
|
1187
|
+
#
|
1188
|
+
# @return Enterprise Custom Field 190 value
|
1189
|
+
def enterprise_custom_field190
|
1190
|
+
attribute_values['enterprise_custom_field190']
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
# Retrieve the Enterprise Custom Field 191 value
|
1194
|
+
#
|
1195
|
+
# @return Enterprise Custom Field 191 value
|
1196
|
+
def enterprise_custom_field191
|
1197
|
+
attribute_values['enterprise_custom_field191']
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
# Retrieve the Enterprise Custom Field 192 value
|
1201
|
+
#
|
1202
|
+
# @return Enterprise Custom Field 192 value
|
1203
|
+
def enterprise_custom_field192
|
1204
|
+
attribute_values['enterprise_custom_field192']
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
# Retrieve the Enterprise Custom Field 193 value
|
1208
|
+
#
|
1209
|
+
# @return Enterprise Custom Field 193 value
|
1210
|
+
def enterprise_custom_field193
|
1211
|
+
attribute_values['enterprise_custom_field193']
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
# Retrieve the Enterprise Custom Field 194 value
|
1215
|
+
#
|
1216
|
+
# @return Enterprise Custom Field 194 value
|
1217
|
+
def enterprise_custom_field194
|
1218
|
+
attribute_values['enterprise_custom_field194']
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
# Retrieve the Enterprise Custom Field 195 value
|
1222
|
+
#
|
1223
|
+
# @return Enterprise Custom Field 195 value
|
1224
|
+
def enterprise_custom_field195
|
1225
|
+
attribute_values['enterprise_custom_field195']
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
# Retrieve the Enterprise Custom Field 196 value
|
1229
|
+
#
|
1230
|
+
# @return Enterprise Custom Field 196 value
|
1231
|
+
def enterprise_custom_field196
|
1232
|
+
attribute_values['enterprise_custom_field196']
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
# Retrieve the Enterprise Custom Field 197 value
|
1236
|
+
#
|
1237
|
+
# @return Enterprise Custom Field 197 value
|
1238
|
+
def enterprise_custom_field197
|
1239
|
+
attribute_values['enterprise_custom_field197']
|
1240
|
+
end
|
1241
|
+
|
1242
|
+
# Retrieve the Enterprise Custom Field 198 value
|
1243
|
+
#
|
1244
|
+
# @return Enterprise Custom Field 198 value
|
1245
|
+
def enterprise_custom_field198
|
1246
|
+
attribute_values['enterprise_custom_field198']
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
# Retrieve the Enterprise Custom Field 199 value
|
1250
|
+
#
|
1251
|
+
# @return Enterprise Custom Field 199 value
|
1252
|
+
def enterprise_custom_field199
|
1253
|
+
attribute_values['enterprise_custom_field199']
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
# Retrieve the Enterprise Custom Field 2 value
|
1257
|
+
#
|
1258
|
+
# @return Enterprise Custom Field 2 value
|
1259
|
+
def enterprise_custom_field2
|
1260
|
+
attribute_values['enterprise_custom_field2']
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
# Retrieve the Enterprise Custom Field 20 value
|
1264
|
+
#
|
1265
|
+
# @return Enterprise Custom Field 20 value
|
1266
|
+
def enterprise_custom_field20
|
1267
|
+
attribute_values['enterprise_custom_field20']
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
# Retrieve the Enterprise Custom Field 200 value
|
1271
|
+
#
|
1272
|
+
# @return Enterprise Custom Field 200 value
|
1273
|
+
def enterprise_custom_field200
|
1274
|
+
attribute_values['enterprise_custom_field200']
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
# Retrieve the Enterprise Custom Field 21 value
|
1278
|
+
#
|
1279
|
+
# @return Enterprise Custom Field 21 value
|
1280
|
+
def enterprise_custom_field21
|
1281
|
+
attribute_values['enterprise_custom_field21']
|
1282
|
+
end
|
1283
|
+
|
1284
|
+
# Retrieve the Enterprise Custom Field 22 value
|
1285
|
+
#
|
1286
|
+
# @return Enterprise Custom Field 22 value
|
1287
|
+
def enterprise_custom_field22
|
1288
|
+
attribute_values['enterprise_custom_field22']
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
# Retrieve the Enterprise Custom Field 23 value
|
1292
|
+
#
|
1293
|
+
# @return Enterprise Custom Field 23 value
|
1294
|
+
def enterprise_custom_field23
|
1295
|
+
attribute_values['enterprise_custom_field23']
|
1296
|
+
end
|
1297
|
+
|
1298
|
+
# Retrieve the Enterprise Custom Field 24 value
|
1299
|
+
#
|
1300
|
+
# @return Enterprise Custom Field 24 value
|
1301
|
+
def enterprise_custom_field24
|
1302
|
+
attribute_values['enterprise_custom_field24']
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
# Retrieve the Enterprise Custom Field 25 value
|
1306
|
+
#
|
1307
|
+
# @return Enterprise Custom Field 25 value
|
1308
|
+
def enterprise_custom_field25
|
1309
|
+
attribute_values['enterprise_custom_field25']
|
1310
|
+
end
|
1311
|
+
|
1312
|
+
# Retrieve the Enterprise Custom Field 26 value
|
1313
|
+
#
|
1314
|
+
# @return Enterprise Custom Field 26 value
|
1315
|
+
def enterprise_custom_field26
|
1316
|
+
attribute_values['enterprise_custom_field26']
|
1317
|
+
end
|
1318
|
+
|
1319
|
+
# Retrieve the Enterprise Custom Field 27 value
|
1320
|
+
#
|
1321
|
+
# @return Enterprise Custom Field 27 value
|
1322
|
+
def enterprise_custom_field27
|
1323
|
+
attribute_values['enterprise_custom_field27']
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
# Retrieve the Enterprise Custom Field 28 value
|
1327
|
+
#
|
1328
|
+
# @return Enterprise Custom Field 28 value
|
1329
|
+
def enterprise_custom_field28
|
1330
|
+
attribute_values['enterprise_custom_field28']
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
# Retrieve the Enterprise Custom Field 29 value
|
1334
|
+
#
|
1335
|
+
# @return Enterprise Custom Field 29 value
|
1336
|
+
def enterprise_custom_field29
|
1337
|
+
attribute_values['enterprise_custom_field29']
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
# Retrieve the Enterprise Custom Field 3 value
|
1341
|
+
#
|
1342
|
+
# @return Enterprise Custom Field 3 value
|
1343
|
+
def enterprise_custom_field3
|
1344
|
+
attribute_values['enterprise_custom_field3']
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
# Retrieve the Enterprise Custom Field 30 value
|
1348
|
+
#
|
1349
|
+
# @return Enterprise Custom Field 30 value
|
1350
|
+
def enterprise_custom_field30
|
1351
|
+
attribute_values['enterprise_custom_field30']
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
# Retrieve the Enterprise Custom Field 31 value
|
1355
|
+
#
|
1356
|
+
# @return Enterprise Custom Field 31 value
|
1357
|
+
def enterprise_custom_field31
|
1358
|
+
attribute_values['enterprise_custom_field31']
|
1359
|
+
end
|
1360
|
+
|
1361
|
+
# Retrieve the Enterprise Custom Field 32 value
|
1362
|
+
#
|
1363
|
+
# @return Enterprise Custom Field 32 value
|
1364
|
+
def enterprise_custom_field32
|
1365
|
+
attribute_values['enterprise_custom_field32']
|
1366
|
+
end
|
1367
|
+
|
1368
|
+
# Retrieve the Enterprise Custom Field 33 value
|
1369
|
+
#
|
1370
|
+
# @return Enterprise Custom Field 33 value
|
1371
|
+
def enterprise_custom_field33
|
1372
|
+
attribute_values['enterprise_custom_field33']
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
# Retrieve the Enterprise Custom Field 34 value
|
1376
|
+
#
|
1377
|
+
# @return Enterprise Custom Field 34 value
|
1378
|
+
def enterprise_custom_field34
|
1379
|
+
attribute_values['enterprise_custom_field34']
|
1380
|
+
end
|
1381
|
+
|
1382
|
+
# Retrieve the Enterprise Custom Field 35 value
|
1383
|
+
#
|
1384
|
+
# @return Enterprise Custom Field 35 value
|
1385
|
+
def enterprise_custom_field35
|
1386
|
+
attribute_values['enterprise_custom_field35']
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
# Retrieve the Enterprise Custom Field 36 value
|
1390
|
+
#
|
1391
|
+
# @return Enterprise Custom Field 36 value
|
1392
|
+
def enterprise_custom_field36
|
1393
|
+
attribute_values['enterprise_custom_field36']
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
# Retrieve the Enterprise Custom Field 37 value
|
1397
|
+
#
|
1398
|
+
# @return Enterprise Custom Field 37 value
|
1399
|
+
def enterprise_custom_field37
|
1400
|
+
attribute_values['enterprise_custom_field37']
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
# Retrieve the Enterprise Custom Field 38 value
|
1404
|
+
#
|
1405
|
+
# @return Enterprise Custom Field 38 value
|
1406
|
+
def enterprise_custom_field38
|
1407
|
+
attribute_values['enterprise_custom_field38']
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
# Retrieve the Enterprise Custom Field 39 value
|
1411
|
+
#
|
1412
|
+
# @return Enterprise Custom Field 39 value
|
1413
|
+
def enterprise_custom_field39
|
1414
|
+
attribute_values['enterprise_custom_field39']
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
# Retrieve the Enterprise Custom Field 4 value
|
1418
|
+
#
|
1419
|
+
# @return Enterprise Custom Field 4 value
|
1420
|
+
def enterprise_custom_field4
|
1421
|
+
attribute_values['enterprise_custom_field4']
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
# Retrieve the Enterprise Custom Field 40 value
|
1425
|
+
#
|
1426
|
+
# @return Enterprise Custom Field 40 value
|
1427
|
+
def enterprise_custom_field40
|
1428
|
+
attribute_values['enterprise_custom_field40']
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# Retrieve the Enterprise Custom Field 41 value
|
1432
|
+
#
|
1433
|
+
# @return Enterprise Custom Field 41 value
|
1434
|
+
def enterprise_custom_field41
|
1435
|
+
attribute_values['enterprise_custom_field41']
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
# Retrieve the Enterprise Custom Field 42 value
|
1439
|
+
#
|
1440
|
+
# @return Enterprise Custom Field 42 value
|
1441
|
+
def enterprise_custom_field42
|
1442
|
+
attribute_values['enterprise_custom_field42']
|
1443
|
+
end
|
1444
|
+
|
1445
|
+
# Retrieve the Enterprise Custom Field 43 value
|
1446
|
+
#
|
1447
|
+
# @return Enterprise Custom Field 43 value
|
1448
|
+
def enterprise_custom_field43
|
1449
|
+
attribute_values['enterprise_custom_field43']
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
# Retrieve the Enterprise Custom Field 44 value
|
1453
|
+
#
|
1454
|
+
# @return Enterprise Custom Field 44 value
|
1455
|
+
def enterprise_custom_field44
|
1456
|
+
attribute_values['enterprise_custom_field44']
|
1457
|
+
end
|
1458
|
+
|
1459
|
+
# Retrieve the Enterprise Custom Field 45 value
|
1460
|
+
#
|
1461
|
+
# @return Enterprise Custom Field 45 value
|
1462
|
+
def enterprise_custom_field45
|
1463
|
+
attribute_values['enterprise_custom_field45']
|
1464
|
+
end
|
1465
|
+
|
1466
|
+
# Retrieve the Enterprise Custom Field 46 value
|
1467
|
+
#
|
1468
|
+
# @return Enterprise Custom Field 46 value
|
1469
|
+
def enterprise_custom_field46
|
1470
|
+
attribute_values['enterprise_custom_field46']
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
# Retrieve the Enterprise Custom Field 47 value
|
1474
|
+
#
|
1475
|
+
# @return Enterprise Custom Field 47 value
|
1476
|
+
def enterprise_custom_field47
|
1477
|
+
attribute_values['enterprise_custom_field47']
|
1478
|
+
end
|
1479
|
+
|
1480
|
+
# Retrieve the Enterprise Custom Field 48 value
|
1481
|
+
#
|
1482
|
+
# @return Enterprise Custom Field 48 value
|
1483
|
+
def enterprise_custom_field48
|
1484
|
+
attribute_values['enterprise_custom_field48']
|
1485
|
+
end
|
1486
|
+
|
1487
|
+
# Retrieve the Enterprise Custom Field 49 value
|
1488
|
+
#
|
1489
|
+
# @return Enterprise Custom Field 49 value
|
1490
|
+
def enterprise_custom_field49
|
1491
|
+
attribute_values['enterprise_custom_field49']
|
1492
|
+
end
|
1493
|
+
|
1494
|
+
# Retrieve the Enterprise Custom Field 5 value
|
1495
|
+
#
|
1496
|
+
# @return Enterprise Custom Field 5 value
|
1497
|
+
def enterprise_custom_field5
|
1498
|
+
attribute_values['enterprise_custom_field5']
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
# Retrieve the Enterprise Custom Field 50 value
|
1502
|
+
#
|
1503
|
+
# @return Enterprise Custom Field 50 value
|
1504
|
+
def enterprise_custom_field50
|
1505
|
+
attribute_values['enterprise_custom_field50']
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
# Retrieve the Enterprise Custom Field 51 value
|
1509
|
+
#
|
1510
|
+
# @return Enterprise Custom Field 51 value
|
1511
|
+
def enterprise_custom_field51
|
1512
|
+
attribute_values['enterprise_custom_field51']
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
# Retrieve the Enterprise Custom Field 52 value
|
1516
|
+
#
|
1517
|
+
# @return Enterprise Custom Field 52 value
|
1518
|
+
def enterprise_custom_field52
|
1519
|
+
attribute_values['enterprise_custom_field52']
|
1520
|
+
end
|
1521
|
+
|
1522
|
+
# Retrieve the Enterprise Custom Field 53 value
|
1523
|
+
#
|
1524
|
+
# @return Enterprise Custom Field 53 value
|
1525
|
+
def enterprise_custom_field53
|
1526
|
+
attribute_values['enterprise_custom_field53']
|
1527
|
+
end
|
1528
|
+
|
1529
|
+
# Retrieve the Enterprise Custom Field 54 value
|
1530
|
+
#
|
1531
|
+
# @return Enterprise Custom Field 54 value
|
1532
|
+
def enterprise_custom_field54
|
1533
|
+
attribute_values['enterprise_custom_field54']
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
# Retrieve the Enterprise Custom Field 55 value
|
1537
|
+
#
|
1538
|
+
# @return Enterprise Custom Field 55 value
|
1539
|
+
def enterprise_custom_field55
|
1540
|
+
attribute_values['enterprise_custom_field55']
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
# Retrieve the Enterprise Custom Field 56 value
|
1544
|
+
#
|
1545
|
+
# @return Enterprise Custom Field 56 value
|
1546
|
+
def enterprise_custom_field56
|
1547
|
+
attribute_values['enterprise_custom_field56']
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
# Retrieve the Enterprise Custom Field 57 value
|
1551
|
+
#
|
1552
|
+
# @return Enterprise Custom Field 57 value
|
1553
|
+
def enterprise_custom_field57
|
1554
|
+
attribute_values['enterprise_custom_field57']
|
1555
|
+
end
|
1556
|
+
|
1557
|
+
# Retrieve the Enterprise Custom Field 58 value
|
1558
|
+
#
|
1559
|
+
# @return Enterprise Custom Field 58 value
|
1560
|
+
def enterprise_custom_field58
|
1561
|
+
attribute_values['enterprise_custom_field58']
|
1562
|
+
end
|
1563
|
+
|
1564
|
+
# Retrieve the Enterprise Custom Field 59 value
|
1565
|
+
#
|
1566
|
+
# @return Enterprise Custom Field 59 value
|
1567
|
+
def enterprise_custom_field59
|
1568
|
+
attribute_values['enterprise_custom_field59']
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
# Retrieve the Enterprise Custom Field 6 value
|
1572
|
+
#
|
1573
|
+
# @return Enterprise Custom Field 6 value
|
1574
|
+
def enterprise_custom_field6
|
1575
|
+
attribute_values['enterprise_custom_field6']
|
1576
|
+
end
|
1577
|
+
|
1578
|
+
# Retrieve the Enterprise Custom Field 60 value
|
1579
|
+
#
|
1580
|
+
# @return Enterprise Custom Field 60 value
|
1581
|
+
def enterprise_custom_field60
|
1582
|
+
attribute_values['enterprise_custom_field60']
|
1583
|
+
end
|
1584
|
+
|
1585
|
+
# Retrieve the Enterprise Custom Field 61 value
|
1586
|
+
#
|
1587
|
+
# @return Enterprise Custom Field 61 value
|
1588
|
+
def enterprise_custom_field61
|
1589
|
+
attribute_values['enterprise_custom_field61']
|
1590
|
+
end
|
1591
|
+
|
1592
|
+
# Retrieve the Enterprise Custom Field 62 value
|
1593
|
+
#
|
1594
|
+
# @return Enterprise Custom Field 62 value
|
1595
|
+
def enterprise_custom_field62
|
1596
|
+
attribute_values['enterprise_custom_field62']
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
# Retrieve the Enterprise Custom Field 63 value
|
1600
|
+
#
|
1601
|
+
# @return Enterprise Custom Field 63 value
|
1602
|
+
def enterprise_custom_field63
|
1603
|
+
attribute_values['enterprise_custom_field63']
|
1604
|
+
end
|
1605
|
+
|
1606
|
+
# Retrieve the Enterprise Custom Field 64 value
|
1607
|
+
#
|
1608
|
+
# @return Enterprise Custom Field 64 value
|
1609
|
+
def enterprise_custom_field64
|
1610
|
+
attribute_values['enterprise_custom_field64']
|
1611
|
+
end
|
1612
|
+
|
1613
|
+
# Retrieve the Enterprise Custom Field 65 value
|
1614
|
+
#
|
1615
|
+
# @return Enterprise Custom Field 65 value
|
1616
|
+
def enterprise_custom_field65
|
1617
|
+
attribute_values['enterprise_custom_field65']
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
# Retrieve the Enterprise Custom Field 66 value
|
1621
|
+
#
|
1622
|
+
# @return Enterprise Custom Field 66 value
|
1623
|
+
def enterprise_custom_field66
|
1624
|
+
attribute_values['enterprise_custom_field66']
|
1625
|
+
end
|
1626
|
+
|
1627
|
+
# Retrieve the Enterprise Custom Field 67 value
|
1628
|
+
#
|
1629
|
+
# @return Enterprise Custom Field 67 value
|
1630
|
+
def enterprise_custom_field67
|
1631
|
+
attribute_values['enterprise_custom_field67']
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
# Retrieve the Enterprise Custom Field 68 value
|
1635
|
+
#
|
1636
|
+
# @return Enterprise Custom Field 68 value
|
1637
|
+
def enterprise_custom_field68
|
1638
|
+
attribute_values['enterprise_custom_field68']
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
# Retrieve the Enterprise Custom Field 69 value
|
1642
|
+
#
|
1643
|
+
# @return Enterprise Custom Field 69 value
|
1644
|
+
def enterprise_custom_field69
|
1645
|
+
attribute_values['enterprise_custom_field69']
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
# Retrieve the Enterprise Custom Field 7 value
|
1649
|
+
#
|
1650
|
+
# @return Enterprise Custom Field 7 value
|
1651
|
+
def enterprise_custom_field7
|
1652
|
+
attribute_values['enterprise_custom_field7']
|
1653
|
+
end
|
1654
|
+
|
1655
|
+
# Retrieve the Enterprise Custom Field 70 value
|
1656
|
+
#
|
1657
|
+
# @return Enterprise Custom Field 70 value
|
1658
|
+
def enterprise_custom_field70
|
1659
|
+
attribute_values['enterprise_custom_field70']
|
1660
|
+
end
|
1661
|
+
|
1662
|
+
# Retrieve the Enterprise Custom Field 71 value
|
1663
|
+
#
|
1664
|
+
# @return Enterprise Custom Field 71 value
|
1665
|
+
def enterprise_custom_field71
|
1666
|
+
attribute_values['enterprise_custom_field71']
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
# Retrieve the Enterprise Custom Field 72 value
|
1670
|
+
#
|
1671
|
+
# @return Enterprise Custom Field 72 value
|
1672
|
+
def enterprise_custom_field72
|
1673
|
+
attribute_values['enterprise_custom_field72']
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
# Retrieve the Enterprise Custom Field 73 value
|
1677
|
+
#
|
1678
|
+
# @return Enterprise Custom Field 73 value
|
1679
|
+
def enterprise_custom_field73
|
1680
|
+
attribute_values['enterprise_custom_field73']
|
1681
|
+
end
|
1682
|
+
|
1683
|
+
# Retrieve the Enterprise Custom Field 74 value
|
1684
|
+
#
|
1685
|
+
# @return Enterprise Custom Field 74 value
|
1686
|
+
def enterprise_custom_field74
|
1687
|
+
attribute_values['enterprise_custom_field74']
|
1688
|
+
end
|
1689
|
+
|
1690
|
+
# Retrieve the Enterprise Custom Field 75 value
|
1691
|
+
#
|
1692
|
+
# @return Enterprise Custom Field 75 value
|
1693
|
+
def enterprise_custom_field75
|
1694
|
+
attribute_values['enterprise_custom_field75']
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
# Retrieve the Enterprise Custom Field 76 value
|
1698
|
+
#
|
1699
|
+
# @return Enterprise Custom Field 76 value
|
1700
|
+
def enterprise_custom_field76
|
1701
|
+
attribute_values['enterprise_custom_field76']
|
1702
|
+
end
|
1703
|
+
|
1704
|
+
# Retrieve the Enterprise Custom Field 77 value
|
1705
|
+
#
|
1706
|
+
# @return Enterprise Custom Field 77 value
|
1707
|
+
def enterprise_custom_field77
|
1708
|
+
attribute_values['enterprise_custom_field77']
|
1709
|
+
end
|
1710
|
+
|
1711
|
+
# Retrieve the Enterprise Custom Field 78 value
|
1712
|
+
#
|
1713
|
+
# @return Enterprise Custom Field 78 value
|
1714
|
+
def enterprise_custom_field78
|
1715
|
+
attribute_values['enterprise_custom_field78']
|
1716
|
+
end
|
1717
|
+
|
1718
|
+
# Retrieve the Enterprise Custom Field 79 value
|
1719
|
+
#
|
1720
|
+
# @return Enterprise Custom Field 79 value
|
1721
|
+
def enterprise_custom_field79
|
1722
|
+
attribute_values['enterprise_custom_field79']
|
1723
|
+
end
|
1724
|
+
|
1725
|
+
# Retrieve the Enterprise Custom Field 8 value
|
1726
|
+
#
|
1727
|
+
# @return Enterprise Custom Field 8 value
|
1728
|
+
def enterprise_custom_field8
|
1729
|
+
attribute_values['enterprise_custom_field8']
|
1730
|
+
end
|
1731
|
+
|
1732
|
+
# Retrieve the Enterprise Custom Field 80 value
|
1733
|
+
#
|
1734
|
+
# @return Enterprise Custom Field 80 value
|
1735
|
+
def enterprise_custom_field80
|
1736
|
+
attribute_values['enterprise_custom_field80']
|
1737
|
+
end
|
1738
|
+
|
1739
|
+
# Retrieve the Enterprise Custom Field 81 value
|
1740
|
+
#
|
1741
|
+
# @return Enterprise Custom Field 81 value
|
1742
|
+
def enterprise_custom_field81
|
1743
|
+
attribute_values['enterprise_custom_field81']
|
1744
|
+
end
|
1745
|
+
|
1746
|
+
# Retrieve the Enterprise Custom Field 82 value
|
1747
|
+
#
|
1748
|
+
# @return Enterprise Custom Field 82 value
|
1749
|
+
def enterprise_custom_field82
|
1750
|
+
attribute_values['enterprise_custom_field82']
|
1751
|
+
end
|
1752
|
+
|
1753
|
+
# Retrieve the Enterprise Custom Field 83 value
|
1754
|
+
#
|
1755
|
+
# @return Enterprise Custom Field 83 value
|
1756
|
+
def enterprise_custom_field83
|
1757
|
+
attribute_values['enterprise_custom_field83']
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
# Retrieve the Enterprise Custom Field 84 value
|
1761
|
+
#
|
1762
|
+
# @return Enterprise Custom Field 84 value
|
1763
|
+
def enterprise_custom_field84
|
1764
|
+
attribute_values['enterprise_custom_field84']
|
1765
|
+
end
|
1766
|
+
|
1767
|
+
# Retrieve the Enterprise Custom Field 85 value
|
1768
|
+
#
|
1769
|
+
# @return Enterprise Custom Field 85 value
|
1770
|
+
def enterprise_custom_field85
|
1771
|
+
attribute_values['enterprise_custom_field85']
|
1772
|
+
end
|
1773
|
+
|
1774
|
+
# Retrieve the Enterprise Custom Field 86 value
|
1775
|
+
#
|
1776
|
+
# @return Enterprise Custom Field 86 value
|
1777
|
+
def enterprise_custom_field86
|
1778
|
+
attribute_values['enterprise_custom_field86']
|
1779
|
+
end
|
1780
|
+
|
1781
|
+
# Retrieve the Enterprise Custom Field 87 value
|
1782
|
+
#
|
1783
|
+
# @return Enterprise Custom Field 87 value
|
1784
|
+
def enterprise_custom_field87
|
1785
|
+
attribute_values['enterprise_custom_field87']
|
1786
|
+
end
|
1787
|
+
|
1788
|
+
# Retrieve the Enterprise Custom Field 88 value
|
1789
|
+
#
|
1790
|
+
# @return Enterprise Custom Field 88 value
|
1791
|
+
def enterprise_custom_field88
|
1792
|
+
attribute_values['enterprise_custom_field88']
|
1793
|
+
end
|
1794
|
+
|
1795
|
+
# Retrieve the Enterprise Custom Field 89 value
|
1796
|
+
#
|
1797
|
+
# @return Enterprise Custom Field 89 value
|
1798
|
+
def enterprise_custom_field89
|
1799
|
+
attribute_values['enterprise_custom_field89']
|
1800
|
+
end
|
1801
|
+
|
1802
|
+
# Retrieve the Enterprise Custom Field 9 value
|
1803
|
+
#
|
1804
|
+
# @return Enterprise Custom Field 9 value
|
1805
|
+
def enterprise_custom_field9
|
1806
|
+
attribute_values['enterprise_custom_field9']
|
1807
|
+
end
|
1808
|
+
|
1809
|
+
# Retrieve the Enterprise Custom Field 90 value
|
1810
|
+
#
|
1811
|
+
# @return Enterprise Custom Field 90 value
|
1812
|
+
def enterprise_custom_field90
|
1813
|
+
attribute_values['enterprise_custom_field90']
|
1814
|
+
end
|
1815
|
+
|
1816
|
+
# Retrieve the Enterprise Custom Field 91 value
|
1817
|
+
#
|
1818
|
+
# @return Enterprise Custom Field 91 value
|
1819
|
+
def enterprise_custom_field91
|
1820
|
+
attribute_values['enterprise_custom_field91']
|
1821
|
+
end
|
1822
|
+
|
1823
|
+
# Retrieve the Enterprise Custom Field 92 value
|
1824
|
+
#
|
1825
|
+
# @return Enterprise Custom Field 92 value
|
1826
|
+
def enterprise_custom_field92
|
1827
|
+
attribute_values['enterprise_custom_field92']
|
1828
|
+
end
|
1829
|
+
|
1830
|
+
# Retrieve the Enterprise Custom Field 93 value
|
1831
|
+
#
|
1832
|
+
# @return Enterprise Custom Field 93 value
|
1833
|
+
def enterprise_custom_field93
|
1834
|
+
attribute_values['enterprise_custom_field93']
|
1835
|
+
end
|
1836
|
+
|
1837
|
+
# Retrieve the Enterprise Custom Field 94 value
|
1838
|
+
#
|
1839
|
+
# @return Enterprise Custom Field 94 value
|
1840
|
+
def enterprise_custom_field94
|
1841
|
+
attribute_values['enterprise_custom_field94']
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
# Retrieve the Enterprise Custom Field 95 value
|
1845
|
+
#
|
1846
|
+
# @return Enterprise Custom Field 95 value
|
1847
|
+
def enterprise_custom_field95
|
1848
|
+
attribute_values['enterprise_custom_field95']
|
1849
|
+
end
|
1850
|
+
|
1851
|
+
# Retrieve the Enterprise Custom Field 96 value
|
1852
|
+
#
|
1853
|
+
# @return Enterprise Custom Field 96 value
|
1854
|
+
def enterprise_custom_field96
|
1855
|
+
attribute_values['enterprise_custom_field96']
|
1856
|
+
end
|
1857
|
+
|
1858
|
+
# Retrieve the Enterprise Custom Field 97 value
|
1859
|
+
#
|
1860
|
+
# @return Enterprise Custom Field 97 value
|
1861
|
+
def enterprise_custom_field97
|
1862
|
+
attribute_values['enterprise_custom_field97']
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
# Retrieve the Enterprise Custom Field 98 value
|
1866
|
+
#
|
1867
|
+
# @return Enterprise Custom Field 98 value
|
1868
|
+
def enterprise_custom_field98
|
1869
|
+
attribute_values['enterprise_custom_field98']
|
1870
|
+
end
|
1871
|
+
|
1872
|
+
# Retrieve the Enterprise Custom Field 99 value
|
1873
|
+
#
|
1874
|
+
# @return Enterprise Custom Field 99 value
|
1875
|
+
def enterprise_custom_field99
|
1876
|
+
attribute_values['enterprise_custom_field99']
|
1877
|
+
end
|
1878
|
+
|
1879
|
+
# Retrieve the Export Flag value
|
1880
|
+
#
|
1881
|
+
# @return Export Flag value
|
1882
|
+
def export_flag
|
1883
|
+
get_boolean_value(attribute_values['export_flag'])
|
1884
|
+
end
|
1885
|
+
|
1886
|
+
# Retrieve the Extended Creation Date value
|
1887
|
+
#
|
1888
|
+
# @return Extended Creation Date value
|
1889
|
+
def extended_creation_date
|
1890
|
+
get_date_value(attribute_values['extended_creation_date'])
|
1891
|
+
end
|
1892
|
+
|
1893
|
+
# Retrieve the File Application value
|
1894
|
+
#
|
1895
|
+
# @return File Application value
|
1896
|
+
def file_application
|
1897
|
+
attribute_values['file_application']
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
# Retrieve the File Type value
|
1901
|
+
#
|
1902
|
+
# @return File Type value
|
1903
|
+
def file_type
|
1904
|
+
attribute_values['file_type']
|
1905
|
+
end
|
1906
|
+
|
1907
|
+
# Retrieve the Finish Date value
|
1908
|
+
#
|
1909
|
+
# @return Finish Date value
|
1910
|
+
def finish_date
|
1911
|
+
get_date_value(attribute_values['finish_date'])
|
1912
|
+
end
|
1913
|
+
|
1914
|
+
# Retrieve the Finish Variance value
|
1915
|
+
#
|
1916
|
+
# @return Finish Variance value
|
1917
|
+
def finish_variance
|
1918
|
+
get_duration_value(attribute_values['finish_variance'])
|
1919
|
+
end
|
1920
|
+
|
1921
|
+
# Retrieve the Fiscal Year Start value
|
1922
|
+
#
|
1923
|
+
# @return Fiscal Year Start value
|
1924
|
+
def fiscal_year_start
|
1925
|
+
get_boolean_value(attribute_values['fiscal_year_start'])
|
1926
|
+
end
|
1927
|
+
|
1928
|
+
# Retrieve the Fiscal Year Start Month value
|
1929
|
+
#
|
1930
|
+
# @return Fiscal Year Start Month value
|
1931
|
+
def fiscal_year_start_month
|
1932
|
+
get_integer_value(attribute_values['fiscal_year_start_month'])
|
1933
|
+
end
|
1934
|
+
|
1935
|
+
# Retrieve the Full Application Name value
|
1936
|
+
#
|
1937
|
+
# @return Full Application Name value
|
1938
|
+
def full_application_name
|
1939
|
+
attribute_values['full_application_name']
|
1940
|
+
end
|
1941
|
+
|
1942
|
+
# Retrieve the GUID value
|
1943
|
+
#
|
1944
|
+
# @return GUID value
|
1945
|
+
def guid
|
1946
|
+
attribute_values['guid']
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
# Retrieve the Honor Constraints value
|
1950
|
+
#
|
1951
|
+
# @return Honor Constraints value
|
1952
|
+
def honor_constraints
|
1953
|
+
get_boolean_value(attribute_values['honor_constraints'])
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
# Retrieve the Hyperlink Base value
|
1957
|
+
#
|
1958
|
+
# @return Hyperlink Base value
|
1959
|
+
def hyperlink_base
|
1960
|
+
attribute_values['hyperlink_base']
|
1961
|
+
end
|
1962
|
+
|
1963
|
+
# Retrieve the Inserted Projects Like Summary value
|
1964
|
+
#
|
1965
|
+
# @return Inserted Projects Like Summary value
|
1966
|
+
def inserted_projects_like_summary
|
1967
|
+
get_boolean_value(attribute_values['inserted_projects_like_summary'])
|
1968
|
+
end
|
1969
|
+
|
1970
|
+
# Retrieve the Keywords value
|
1971
|
+
#
|
1972
|
+
# @return Keywords value
|
1973
|
+
def keywords
|
1974
|
+
attribute_values['keywords']
|
1975
|
+
end
|
1976
|
+
|
1977
|
+
# Retrieve the Language value
|
1978
|
+
#
|
1979
|
+
# @return Language value
|
1980
|
+
def language
|
1981
|
+
attribute_values['language']
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
# Retrieve the Last Printed value
|
1985
|
+
#
|
1986
|
+
# @return Last Printed value
|
1987
|
+
def lastprinted
|
1988
|
+
get_date_value(attribute_values['lastprinted'])
|
1989
|
+
end
|
1990
|
+
|
1991
|
+
# Retrieve the Last Author value
|
1992
|
+
#
|
1993
|
+
# @return Last Author value
|
1994
|
+
def last_author
|
1995
|
+
attribute_values['last_author']
|
1996
|
+
end
|
1997
|
+
|
1998
|
+
# Retrieve the Last Saved value
|
1999
|
+
#
|
2000
|
+
# @return Last Saved value
|
2001
|
+
def last_saved
|
2002
|
+
get_date_value(attribute_values['last_saved'])
|
2003
|
+
end
|
2004
|
+
|
2005
|
+
# Retrieve the Manager value
|
2006
|
+
#
|
2007
|
+
# @return Manager value
|
2008
|
+
def manager
|
2009
|
+
attribute_values['manager']
|
2010
|
+
end
|
2011
|
+
|
2012
|
+
# Retrieve the Microsoft Project Server URL value
|
2013
|
+
#
|
2014
|
+
# @return Microsoft Project Server URL value
|
2015
|
+
def microsoft_project_server_url
|
2016
|
+
get_boolean_value(attribute_values['microsoft_project_server_url'])
|
2017
|
+
end
|
2018
|
+
|
2019
|
+
# Retrieve the Minutes per Day value
|
2020
|
+
#
|
2021
|
+
# @return Minutes per Day value
|
2022
|
+
def minutes_per_day
|
2023
|
+
get_integer_value(attribute_values['minutes_per_day'])
|
2024
|
+
end
|
2025
|
+
|
2026
|
+
# Retrieve the Minutes per Week value
|
2027
|
+
#
|
2028
|
+
# @return Minutes per Week value
|
2029
|
+
def minutes_per_week
|
2030
|
+
get_integer_value(attribute_values['minutes_per_week'])
|
2031
|
+
end
|
2032
|
+
|
2033
|
+
# Retrieve the Move Completed Ends Back value
|
2034
|
+
#
|
2035
|
+
# @return Move Completed Ends Back value
|
2036
|
+
def move_completed_ends_back
|
2037
|
+
get_boolean_value(attribute_values['move_completed_ends_back'])
|
2038
|
+
end
|
2039
|
+
|
2040
|
+
# Retrieve the Move Completed Ends Forward value
|
2041
|
+
#
|
2042
|
+
# @return Move Completed Ends Forward value
|
2043
|
+
def move_completed_ends_forward
|
2044
|
+
get_boolean_value(attribute_values['move_completed_ends_forward'])
|
2045
|
+
end
|
2046
|
+
|
2047
|
+
# Retrieve the Move Remaining Starts Back value
|
2048
|
+
#
|
2049
|
+
# @return Move Remaining Starts Back value
|
2050
|
+
def move_remaining_starts_back
|
2051
|
+
get_boolean_value(attribute_values['move_remaining_starts_back'])
|
2052
|
+
end
|
2053
|
+
|
2054
|
+
# Retrieve the Move Remaining Starts Forward value
|
2055
|
+
#
|
2056
|
+
# @return Move Remaining Starts Forward value
|
2057
|
+
def move_remaining_starts_forward
|
2058
|
+
get_boolean_value(attribute_values['move_remaining_starts_forward'])
|
2059
|
+
end
|
2060
|
+
|
2061
|
+
# Retrieve the MPP File Type value
|
2062
|
+
#
|
2063
|
+
# @return MPP File Type value
|
2064
|
+
def mpp_file_type
|
2065
|
+
get_integer_value(attribute_values['mpp_file_type'])
|
2066
|
+
end
|
2067
|
+
|
2068
|
+
# Retrieve the MPX Code Page value
|
2069
|
+
#
|
2070
|
+
# @return MPX Code Page value
|
2071
|
+
def mpx_code_page
|
2072
|
+
attribute_values['mpx_code_page']
|
2073
|
+
end
|
2074
|
+
|
2075
|
+
# Retrieve the MPX Delimiter value
|
2076
|
+
#
|
2077
|
+
# @return MPX Delimiter value
|
2078
|
+
def mpx_delimiter
|
2079
|
+
attribute_values['mpx_delimiter']
|
2080
|
+
end
|
2081
|
+
|
2082
|
+
# Retrieve the MPX File Version value
|
2083
|
+
#
|
2084
|
+
# @return MPX File Version value
|
2085
|
+
def mpx_file_version
|
2086
|
+
attribute_values['mpx_file_version']
|
2087
|
+
end
|
2088
|
+
|
2089
|
+
# Retrieve the MPX Program Name value
|
2090
|
+
#
|
2091
|
+
# @return MPX Program Name value
|
2092
|
+
def mpx_program_name
|
2093
|
+
attribute_values['mpx_program_name']
|
2094
|
+
end
|
2095
|
+
|
2096
|
+
# Retrieve the Multiple Critical Paths value
|
2097
|
+
#
|
2098
|
+
# @return Multiple Critical Paths value
|
2099
|
+
def multiple_critical_paths
|
2100
|
+
get_boolean_value(attribute_values['multiple_critical_paths'])
|
2101
|
+
end
|
2102
|
+
|
2103
|
+
# Retrieve the Name value
|
2104
|
+
#
|
2105
|
+
# @return Name value
|
2106
|
+
def name
|
2107
|
+
attribute_values['name']
|
2108
|
+
end
|
2109
|
+
|
2110
|
+
# Retrieve the New Tasks Are Manual value
|
2111
|
+
#
|
2112
|
+
# @return New Tasks Are Manual value
|
2113
|
+
def new_tasks_are_manual
|
2114
|
+
get_boolean_value(attribute_values['new_tasks_are_manual'])
|
2115
|
+
end
|
2116
|
+
|
2117
|
+
# Retrieve the New Tasks Are Effort Driven value
|
2118
|
+
#
|
2119
|
+
# @return New Tasks Are Effort Driven value
|
2120
|
+
def new_tasks_effort_driven
|
2121
|
+
get_boolean_value(attribute_values['new_tasks_effort_driven'])
|
2122
|
+
end
|
2123
|
+
|
2124
|
+
# Retrieve the New Tasks Estimated value
|
2125
|
+
#
|
2126
|
+
# @return New Tasks Estimated value
|
2127
|
+
def new_tasks_estimated
|
2128
|
+
get_boolean_value(attribute_values['new_tasks_estimated'])
|
2129
|
+
end
|
2130
|
+
|
2131
|
+
# Retrieve the New Tasj Start Is Project Start value
|
2132
|
+
#
|
2133
|
+
# @return New Tasj Start Is Project Start value
|
2134
|
+
def new_task_start_is_project_start
|
2135
|
+
get_boolean_value(attribute_values['new_task_start_is_project_start'])
|
2136
|
+
end
|
2137
|
+
|
2138
|
+
# Retrieve the Percentage Complete value
|
2139
|
+
#
|
2140
|
+
# @return Percentage Complete value
|
2141
|
+
def percentage_complete
|
2142
|
+
get_float_value(attribute_values['percentage_complete'])
|
2143
|
+
end
|
2144
|
+
|
2145
|
+
# Retrieve the PM Text value
|
2146
|
+
#
|
2147
|
+
# @return PM Text value
|
2148
|
+
def pm_text
|
2149
|
+
attribute_values['pm_text']
|
2150
|
+
end
|
2151
|
+
|
2152
|
+
# Retrieve the Presentation Format value
|
2153
|
+
#
|
2154
|
+
# @return Presentation Format value
|
2155
|
+
def presentation_format
|
2156
|
+
attribute_values['presentation_format']
|
2157
|
+
end
|
2158
|
+
|
2159
|
+
# Retrieve the Project Externally Edited value
|
2160
|
+
#
|
2161
|
+
# @return Project Externally Edited value
|
2162
|
+
def project_externally_edited
|
2163
|
+
get_boolean_value(attribute_values['project_externally_edited'])
|
2164
|
+
end
|
2165
|
+
|
2166
|
+
# Retrieve the Project File Path value
|
2167
|
+
#
|
2168
|
+
# @return Project File Path value
|
2169
|
+
def project_file_path
|
2170
|
+
attribute_values['project_file_path']
|
2171
|
+
end
|
2172
|
+
|
2173
|
+
# Retrieve the Project ID value
|
2174
|
+
#
|
2175
|
+
# @return Project ID value
|
2176
|
+
def project_id
|
2177
|
+
attribute_values['project_id']
|
2178
|
+
end
|
2179
|
+
|
2180
|
+
# Retrieve the Project Title value
|
2181
|
+
#
|
2182
|
+
# @return Project Title value
|
2183
|
+
def project_title
|
2184
|
+
attribute_values['project_title']
|
2185
|
+
end
|
2186
|
+
|
2187
|
+
# Retrieve the Remove File Properties value
|
2188
|
+
#
|
2189
|
+
# @return Remove File Properties value
|
2190
|
+
def remove_file_properties
|
2191
|
+
get_boolean_value(attribute_values['remove_file_properties'])
|
2192
|
+
end
|
2193
|
+
|
2194
|
+
# Retrieve the Revision value
|
2195
|
+
#
|
2196
|
+
# @return Revision value
|
2197
|
+
def revision
|
2198
|
+
get_integer_value(attribute_values['revision'])
|
2199
|
+
end
|
2200
|
+
|
2201
|
+
# Retrieve the Schedule From value
|
2202
|
+
#
|
2203
|
+
# @return Schedule From value
|
2204
|
+
def schedule_from
|
2205
|
+
attribute_values['schedule_from']
|
2206
|
+
end
|
2207
|
+
|
2208
|
+
# Retrieve the Short Application Name value
|
2209
|
+
#
|
2210
|
+
# @return Short Application Name value
|
2211
|
+
def short_application_name
|
2212
|
+
attribute_values['short_application_name']
|
2213
|
+
end
|
2214
|
+
|
2215
|
+
# Retrieve the Show Project Summary Task value
|
2216
|
+
#
|
2217
|
+
# @return Show Project Summary Task value
|
2218
|
+
def show_project_summary_task
|
2219
|
+
get_boolean_value(attribute_values['show_project_summary_task'])
|
2220
|
+
end
|
2221
|
+
|
2222
|
+
# Retrieve the Split In Progress Tasks value
|
2223
|
+
#
|
2224
|
+
# @return Split In Progress Tasks value
|
2225
|
+
def split_in_progress_tasks
|
2226
|
+
get_boolean_value(attribute_values['split_in_progress_tasks'])
|
2227
|
+
end
|
2228
|
+
|
2229
|
+
# Retrieve the Spread Actual Cost value
|
2230
|
+
#
|
2231
|
+
# @return Spread Actual Cost value
|
2232
|
+
def spread_actual_cost
|
2233
|
+
get_boolean_value(attribute_values['spread_actual_cost'])
|
2234
|
+
end
|
2235
|
+
|
2236
|
+
# Retrieve the Spread Percent Complete value
|
2237
|
+
#
|
2238
|
+
# @return Spread Percent Complete value
|
2239
|
+
def spread_percent_complete
|
2240
|
+
get_boolean_value(attribute_values['spread_percent_complete'])
|
2241
|
+
end
|
2242
|
+
|
2243
|
+
# Retrieve the Start Date value
|
2244
|
+
#
|
2245
|
+
# @return Start Date value
|
2246
|
+
def start_date
|
2247
|
+
get_date_value(attribute_values['start_date'])
|
2248
|
+
end
|
2249
|
+
|
2250
|
+
# Retrieve the Start Variance value
|
2251
|
+
#
|
2252
|
+
# @return Start Variance value
|
2253
|
+
def start_variance
|
2254
|
+
get_duration_value(attribute_values['start_variance'])
|
2255
|
+
end
|
2256
|
+
|
2257
|
+
# Retrieve the Status Date value
|
2258
|
+
#
|
2259
|
+
# @return Status Date value
|
2260
|
+
def status_date
|
2261
|
+
get_date_value(attribute_values['status_date'])
|
2262
|
+
end
|
2263
|
+
|
2264
|
+
# Retrieve the Subject value
|
2265
|
+
#
|
2266
|
+
# @return Subject value
|
2267
|
+
def subject
|
2268
|
+
attribute_values['subject']
|
2269
|
+
end
|
2270
|
+
|
2271
|
+
# Retrieve the Template value
|
2272
|
+
#
|
2273
|
+
# @return Template value
|
2274
|
+
def template
|
2275
|
+
attribute_values['template']
|
2276
|
+
end
|
2277
|
+
|
2278
|
+
# Retrieve the Thousands Separator value
|
2279
|
+
#
|
2280
|
+
# @return Thousands Separator value
|
2281
|
+
def thousands_separator
|
2282
|
+
attribute_values['thousands_separator']
|
2283
|
+
end
|
2284
|
+
|
2285
|
+
# Retrieve the Time Format value
|
2286
|
+
#
|
2287
|
+
# @return Time Format value
|
2288
|
+
def time_format
|
2289
|
+
attribute_values['time_format']
|
2290
|
+
end
|
2291
|
+
|
2292
|
+
# Retrieve the Time Separator value
|
2293
|
+
#
|
2294
|
+
# @return Time Separator value
|
2295
|
+
def time_separator
|
2296
|
+
attribute_values['time_separator']
|
2297
|
+
end
|
2298
|
+
|
2299
|
+
# Retrieve the Unique ID value
|
2300
|
+
#
|
2301
|
+
# @return Unique ID value
|
2302
|
+
def unique_id
|
2303
|
+
get_integer_value(attribute_values['unique_id'])
|
2304
|
+
end
|
2305
|
+
|
2306
|
+
# Retrieve the Updating Task Status Updates Resource Status value
|
2307
|
+
#
|
2308
|
+
# @return Updating Task Status Updates Resource Status value
|
2309
|
+
def updating_task_status_updates_resource_status
|
2310
|
+
get_boolean_value(attribute_values['updating_task_status_updates_resource_status'])
|
2311
|
+
end
|
2312
|
+
|
2313
|
+
# Retrieve the Week Start Day value
|
2314
|
+
#
|
2315
|
+
# @return Week Start Day value
|
2316
|
+
def week_start_day
|
2317
|
+
attribute_values['week_start_day']
|
2318
|
+
end
|
2319
|
+
|
2320
|
+
# Retrieve the Work value
|
2321
|
+
#
|
2322
|
+
# @return Work value
|
2323
|
+
def work
|
2324
|
+
get_duration_value(attribute_values['work'])
|
2325
|
+
end
|
2326
|
+
|
2327
|
+
# Retrieve the Work 2 value
|
2328
|
+
#
|
2329
|
+
# @return Work 2 value
|
2330
|
+
def work2
|
2331
|
+
get_float_value(attribute_values['work2'])
|
2332
|
+
end
|
2333
|
+
end
|
2334
|
+
end
|