eddy 0.8.4 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -4
- data/CHANGELOG.md +18 -0
- data/Gemfile.lock +8 -8
- data/README.md +1 -1
- data/data/code-lists/333.tsv +8 -0
- data/data/segments/amt.segment.yml +7 -0
- data/data/segments/bia.segment.yml +10 -0
- data/data/segments/cur.segment.yml +8 -0
- data/data/segments/dtm.segment.yml +1 -0
- data/data/segments/fob.segment.yml +8 -0
- data/data/segments/itd.segment.yml +13 -0
- data/data/segments/mtx.segment.yml +7 -0
- data/data/segments/n9.segment.yml +7 -0
- data/data/segments/per.segment.yml +13 -0
- data/data/segments/po1.segment.yml +6 -0
- data/data/segments/po3.segment.yml +13 -0
- data/data/segments/qty.segment.yml +10 -0
- data/data/segments/ref.segment.yml +1 -0
- data/data/segments/sac.segment.yml +4 -0
- data/data/segments/sch.segment.yml +7 -0
- data/data/segments/sdq.segment.yml +8 -0
- data/data/segments/txi.segment.yml +9 -0
- data/data/transaction_sets/810.edi.yml +93 -0
- data/data/transaction_sets/846.edi.yml +57 -0
- data/data/transaction_sets/850.edi.yml +73 -0
- data/data/transaction_sets/855.edi.yml +74 -0
- data/data/transaction_sets/856.edi.yml +54 -0
- data/eddy.gemspec +1 -1
- data/exe/eddy +1 -0
- data/lib/definitions/elements/generated/100.currency_code.rb +200 -0
- data/lib/definitions/elements/generated/146.shipment_method_of_payment.rb +65 -0
- data/lib/definitions/elements/generated/1551.message_text.rb +29 -0
- data/lib/definitions/elements/generated/280.exchange_rate.rb +29 -0
- data/lib/definitions/elements/generated/309.location_qualifier.rb +209 -0
- data/lib/definitions/elements/generated/310.location_identifier.rb +29 -0
- data/lib/definitions/elements/generated/311.shipment_type_code.rb +42 -0
- data/lib/definitions/elements/generated/322.load_empty_status_code.rb +40 -0
- data/lib/definitions/elements/generated/325.tax_identification_number.rb +29 -0
- data/lib/definitions/elements/generated/333.terms_basis_date_code.rb +44 -0
- data/lib/definitions/elements/generated/336.terms_type_code.rb +102 -0
- data/lib/definitions/elements/generated/338.terms_discount_percent.rb +29 -0
- data/lib/definitions/elements/generated/351.terms_discount_days_due.rb +30 -0
- data/lib/definitions/elements/generated/363.note_reference_code.rb +278 -0
- data/lib/definitions/elements/generated/364.communication_number.rb +29 -0
- data/lib/definitions/elements/generated/365.communication_number_qualifier.rb +77 -0
- data/lib/definitions/elements/generated/366.contact_function_code.rb +267 -0
- data/lib/definitions/elements/generated/369.free_form_description.rb +29 -0
- data/lib/definitions/elements/generated/370.terms_discount_due_date.rb +29 -0
- data/lib/definitions/elements/generated/371.change_reason_code.rb +67 -0
- data/lib/definitions/elements/generated/378.allowance_charge_percent_qualifier.rb +48 -0
- data/lib/definitions/elements/generated/386.terms_net_days.rb +30 -0
- data/lib/definitions/elements/generated/446.terms_net_due_date.rb +29 -0
- data/lib/definitions/elements/generated/522.amount_qualifier_code.rb +1510 -0
- data/lib/definitions/elements/generated/673.quantity_qualifier.rb +869 -0
- data/lib/definitions/elements/generated/755.report_type_code.rb +559 -0
- data/lib/definitions/elements/generated/954.percent.rb +29 -0
- data/lib/definitions/elements/generated/963.tax_type_code.rb +111 -0
- data/lib/definitions/segments/generated/amt.rb +56 -0
- data/lib/definitions/segments/generated/bia.rb +107 -0
- data/lib/definitions/segments/generated/cur.rb +73 -0
- data/lib/definitions/segments/generated/dtm.rb +17 -0
- data/lib/definitions/segments/generated/fob.rb +73 -0
- data/lib/definitions/segments/generated/hl.rb +90 -0
- data/lib/definitions/segments/generated/itd.rb +158 -0
- data/lib/definitions/segments/generated/mtx.rb +56 -0
- data/lib/definitions/segments/generated/n2.rb +56 -0
- data/lib/definitions/segments/generated/n9.rb +56 -0
- data/lib/definitions/segments/generated/per.rb +158 -0
- data/lib/definitions/segments/generated/po1.rb +102 -0
- data/lib/definitions/segments/generated/po3.rb +158 -0
- data/lib/definitions/segments/generated/qty.rb +73 -0
- data/lib/definitions/segments/generated/ref.rb +17 -0
- data/lib/definitions/segments/generated/sac.rb +68 -0
- data/lib/definitions/segments/generated/sch.rb +56 -0
- data/lib/definitions/segments/generated/sdq.rb +73 -0
- data/lib/definitions/segments/generated/txi.rb +90 -0
- data/lib/definitions/transaction_sets/manual/846/846.rb +122 -0
- data/lib/definitions/transaction_sets/manual/846/loops/lin.rb +155 -0
- data/lib/definitions/transaction_sets/manual/846/loops/n1.rb +107 -0
- data/lib/definitions/transaction_sets/manual/846/loops/qty.rb +75 -0
- data/lib/definitions/transaction_sets/manual/846/loops/sch.rb +59 -0
- data/lib/definitions/transaction_sets/manual/846/loops/sln.rb +59 -0
- data/lib/definitions/transaction_sets/manual/850/850.rb +108 -1
- data/lib/definitions/transaction_sets/manual/850/loops/ctp.rb +47 -0
- data/lib/definitions/transaction_sets/manual/850/loops/n1.rb +31 -10
- data/lib/definitions/transaction_sets/manual/850/loops/n9.rb +59 -0
- data/lib/definitions/transaction_sets/manual/850/loops/pid.rb +47 -0
- data/lib/definitions/transaction_sets/manual/850/loops/po1.rb +78 -10
- data/lib/definitions/transaction_sets/manual/850/loops/sac.rb +47 -0
- data/lib/eddy.rb +49 -3
- data/lib/eddy/build/transaction_set_builder.rb +1 -1
- data/lib/eddy/config.rb +0 -21
- data/lib/eddy/data.rb +0 -29
- data/lib/eddy/data/persistence/base.rb +7 -0
- data/lib/eddy/data/persistence/memory.rb +14 -4
- data/lib/eddy/errors.rb +13 -9
- data/lib/eddy/models/element/composite.rb +2 -0
- data/lib/eddy/models/element/id.rb +1 -1
- data/lib/eddy/models/element/r.rb +1 -0
- data/lib/eddy/parse.rb +4 -56
- data/lib/eddy/parse/interchange.rb +58 -0
- data/lib/eddy/summary/loop.rb +1 -1
- data/lib/eddy/summary/segment.rb +2 -1
- data/lib/eddy/version.rb +1 -1
- metadata +78 -5
@@ -0,0 +1,869 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 673
|
6
|
+
# - Name: Quantity Qualifier
|
7
|
+
# - Type: ID
|
8
|
+
# - Min/Max: 2/2
|
9
|
+
# - Description: Code specifying the type of quantity
|
10
|
+
class E673 < Eddy::Models::Element::ID
|
11
|
+
|
12
|
+
# @param val [String]
|
13
|
+
# @param req [String]
|
14
|
+
# @param ref [String]
|
15
|
+
# @return [void]
|
16
|
+
def initialize(val: nil, req: nil, ref: nil)
|
17
|
+
@id = "673"
|
18
|
+
@name = "Quantity Qualifier"
|
19
|
+
@description = "Code specifying the type of quantity"
|
20
|
+
super(
|
21
|
+
min: 2,
|
22
|
+
max: 2,
|
23
|
+
req: req,
|
24
|
+
ref: ref,
|
25
|
+
val: val,
|
26
|
+
)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @return [Array<String>]
|
30
|
+
def code_list()
|
31
|
+
return [
|
32
|
+
"01", # Discrete Quantity
|
33
|
+
"02", # Cumulative Quantity
|
34
|
+
"03", # Discreet Quantity - Rejected Material
|
35
|
+
"04", # Discrete Quantity - Rejected Material: Disposition Replacement
|
36
|
+
"05", # Discrete Quantity - Rejected Material: Disposition Credit
|
37
|
+
"06", # Discrete Quantity - Rejected Material: Disposition Pending
|
38
|
+
"07", # Cumulative Quantity - Rejected Material
|
39
|
+
"08", # Cumulative Quantity - Rejected Material: Disposition Replacement
|
40
|
+
"09", # Cumulative Quantity - Rejected Material: Disposition Credit
|
41
|
+
"10", # Cumulative Quantity - Rejected Material: Disposition Pending
|
42
|
+
"11", # Split Quantity
|
43
|
+
"12", # Ship Notice Quantity
|
44
|
+
"13", # Collateral Requirements
|
45
|
+
"14", # Quantity in Float
|
46
|
+
"15", # Quantity in Hold Out
|
47
|
+
"16", # Line Thread Quantity
|
48
|
+
"17", # Quantity on Hand
|
49
|
+
"18", # Previous Week Quantity
|
50
|
+
"19", # Unverified Receipts
|
51
|
+
"1A", # Original Duration (in calendar units)
|
52
|
+
"1B", # Current Duration (in calendar units)
|
53
|
+
"1C", # Remaining Duration (in calendar units)
|
54
|
+
"1D", # Total Float (in calendar units)
|
55
|
+
"1E", # Free Float (in calendar units)
|
56
|
+
"1F", # Lag (as in Lag Time - in calendar units)
|
57
|
+
"1G", # Lead Time (in calendar units)
|
58
|
+
"1H", # Started
|
59
|
+
"1I", # Completed
|
60
|
+
"1J", # Due
|
61
|
+
"1K", # Time Units
|
62
|
+
"1L", # Shifts
|
63
|
+
"1M", # Time units per shift
|
64
|
+
"1N", # Scrap allowed
|
65
|
+
"1O", # Calendar Units
|
66
|
+
"1P", # Resource (Quantity) available
|
67
|
+
"1Q", # Total Resource (Quantity)
|
68
|
+
"1R", # Level Resource (Quantity)
|
69
|
+
"1S", # Late
|
70
|
+
"1T", # Number of Delinquent Installments
|
71
|
+
"1U", # Number of Loans
|
72
|
+
"1V", # Total Number of Mortgagees
|
73
|
+
"1W", # Total Number of Loan Detail Records
|
74
|
+
"1X", # Prescription Effective Period
|
75
|
+
"1Y", # Rate Per Day (RPD)
|
76
|
+
"1Z", # End Of Month Inventory Prior To Ship
|
77
|
+
"20", # Unusable Quantity
|
78
|
+
"21", # Cumulative Quantity Shipped Short - Disposition Pending
|
79
|
+
"22", # Cumulative Quantity Shipped Short - Disposition Challenged
|
80
|
+
"23", # Cumulative Quantity Shipped Long - Disposition Pending
|
81
|
+
"24", # Cumulative Quantity Shipped Long - Disposition Challenged
|
82
|
+
"25", # OEM Inventory
|
83
|
+
"26", # Total Inventory
|
84
|
+
"27", # Committed Quantity
|
85
|
+
"28", # Quantity Available for Return
|
86
|
+
"29", # Projected Available Inventory
|
87
|
+
"2A", # Commitment Period
|
88
|
+
"2B", # Number of Borrowers
|
89
|
+
"2C", # Number of Adjustment Periods
|
90
|
+
"2D", # Age Nearest
|
91
|
+
"2E", # Total Other Properties Owned and Financed
|
92
|
+
"2F", # Age Next
|
93
|
+
"2G", # Reconsideration Period
|
94
|
+
"2H", # Flat Extra Premium
|
95
|
+
"2I", # CO2 Injection Volume
|
96
|
+
"2J", # Accounts Placed for Collection
|
97
|
+
"2K", # Changes
|
98
|
+
"2L", # Companies in Same Activity for a Period
|
99
|
+
"2M", # Comparison Period
|
100
|
+
"2N", # Departments
|
101
|
+
"2O", # Employees Shared
|
102
|
+
"2P", # Estimated Accounts
|
103
|
+
"2Q", # Installed Capacity
|
104
|
+
"2R", # Levels Occupied
|
105
|
+
"2S", # Registered Brands Distributed
|
106
|
+
"2T", # Electronic Signatures
|
107
|
+
"2U", # Bytes
|
108
|
+
"2V", # Employed at this Location
|
109
|
+
"2W", # Segments
|
110
|
+
"2X", # Registered Brands Manufactured
|
111
|
+
"2Y", # Functional Groups
|
112
|
+
"2Z", # Transaction Sets
|
113
|
+
"30", # Quote Quantity on Inventory
|
114
|
+
"31", # Additional Demand Quantity
|
115
|
+
"32", # Quantity Sold
|
116
|
+
"33", # Quantity Available for Sale (stock quantity)
|
117
|
+
"34", # Noncommitted Inventory on Shelf
|
118
|
+
"35", # Inventory on Shelf + Work in Progress
|
119
|
+
"36", # Distributor Inventory
|
120
|
+
"37", # Work In Process
|
121
|
+
"38", # Original Quantity
|
122
|
+
"39", # Shipped Quantity
|
123
|
+
"3A", # Total Credits Accepted
|
124
|
+
"3B", # Total Credits Rejected
|
125
|
+
"3C", # Total Debits Accepted
|
126
|
+
"3D", # Total Debits Rejected
|
127
|
+
"3E", # Total Payments Rejected
|
128
|
+
"3F", # Total Pre-advices Accepted
|
129
|
+
"3G", # Total Pre-advices Rejected
|
130
|
+
"3H", # Total Prenotes Accepted
|
131
|
+
"3I", # Total Prenotes Rejected
|
132
|
+
"3J", # Total Post-advices Accepted
|
133
|
+
"3K", # Total Post-advices Rejected
|
134
|
+
"3L", # Total Unidentified Transactions Rejected
|
135
|
+
"3M", # Total Credits Received
|
136
|
+
"3N", # Total Debits Received
|
137
|
+
"3P", # Total Pre-advices Received
|
138
|
+
"3Q", # Total Prenotes Received
|
139
|
+
"3R", # Total Post-advices Received
|
140
|
+
"3S", # Total Debits
|
141
|
+
"3T", # Total Credits
|
142
|
+
"3U", # Total Transactions
|
143
|
+
"3V", # Minimum Transfer
|
144
|
+
"3W", # Maximum Transfer
|
145
|
+
"3X", # Speed Capacity
|
146
|
+
"3Y", # Subcontractors
|
147
|
+
"40", # Remaining Quantity
|
148
|
+
"41", # Number of Batches
|
149
|
+
"42", # Number of Checks
|
150
|
+
"43", # Talk Paths
|
151
|
+
"45", # Cumulative quantity on order
|
152
|
+
"46", # Total transactions
|
153
|
+
"47", # Primary Net Quantity
|
154
|
+
"48", # Secondary Net Quantity
|
155
|
+
"49", # Number of Signed Bills of Lading
|
156
|
+
"4A", # Accounts
|
157
|
+
"4B", # Agents
|
158
|
+
"4C", # Authorized Shares
|
159
|
+
"4D", # Clerks
|
160
|
+
"4E", # Design Employees
|
161
|
+
"4F", # Foreign Related Entities
|
162
|
+
"4G", # Group Employees
|
163
|
+
"4H", # Issued Shares
|
164
|
+
"4I", # Laborers
|
165
|
+
"4J", # Other Employee Type
|
166
|
+
"4K", # Part Time Employees
|
167
|
+
"4L", # Related Entities
|
168
|
+
"4M", # Relatives Employed
|
169
|
+
"4N", # Salespersons
|
170
|
+
"4O", # Space Occupied
|
171
|
+
"4P", # Special Partners
|
172
|
+
"4Q", # Suppliers' Credit
|
173
|
+
"4R", # Technicians
|
174
|
+
"4S", # Trainees
|
175
|
+
"4T", # Warehouse Employees
|
176
|
+
"4U", # Shareholders
|
177
|
+
"50", # Number of Copies of Bill of Lading
|
178
|
+
"51", # Number of Unsigned Bills of Lading
|
179
|
+
"52", # Number of Originals
|
180
|
+
"53", # Original payment item count.
|
181
|
+
"54", # Bank reject item count.
|
182
|
+
"55", # Net to pay item count.
|
183
|
+
"56", # Minimum Contract Quantity
|
184
|
+
"57", # Minimum Order Quantity
|
185
|
+
"58", # Payment Cancellation Item Count
|
186
|
+
"5A", # Aggregate Benefit Period
|
187
|
+
"5B", # Anticipated Length of Service
|
188
|
+
"5C", # Approval/Offer Duration
|
189
|
+
"5D", # Benefit Amount
|
190
|
+
"5E", # Benefit Period
|
191
|
+
"5F", # Brothers Deceased
|
192
|
+
"5G", # Brothers Living
|
193
|
+
"5H", # Children
|
194
|
+
"5I", # Citations
|
195
|
+
"5J", # Claim Period
|
196
|
+
"5K", # Coverage
|
197
|
+
"5L", # Elimination Period
|
198
|
+
"5M", # Elimination Period - Accident
|
199
|
+
"5N", # Elimination Period - Sickness
|
200
|
+
"5O", # Employees - Nonowner
|
201
|
+
"5P", # Employees - Owner
|
202
|
+
"5Q", # Employees - Part Time
|
203
|
+
"5R", # Employees - Same Duties
|
204
|
+
"5S", # Employees - Same Occupation
|
205
|
+
"5T", # Expense
|
206
|
+
"5U", # Frequency
|
207
|
+
"5V", # General Elimination Period
|
208
|
+
"5W", # Guarantee Period
|
209
|
+
"5X", # Height
|
210
|
+
"5Y", # Hours Flown - Aircraft Type/Life
|
211
|
+
"5Z", # Hours Flown - Aircraft Type/Period
|
212
|
+
"60", # Total Authorized Quantity
|
213
|
+
"61", # Remaining Authorized Quantity
|
214
|
+
"62", # Number of Days Covered by Inventory
|
215
|
+
"63", # On Order Quantity
|
216
|
+
"64", # Past Due Quantity
|
217
|
+
"65", # Previous Month's Usage
|
218
|
+
"66", # Minimum Fabrication Quantity
|
219
|
+
"67", # Minimum Ship Quantity
|
220
|
+
"68", # Maximum Number of Shipments Allowed
|
221
|
+
"69", # Incremental Order Quantity
|
222
|
+
"6A", # Hours Flown - Aircraft/Type Flying
|
223
|
+
"6B", # Hours Flown - Lifetime
|
224
|
+
"6C", # Hours Flown - Type Flying
|
225
|
+
"6D", # Impairment Duration
|
226
|
+
"6E", # Impairment Frequency
|
227
|
+
"6F", # Installment Frequency
|
228
|
+
"6G", # Installments
|
229
|
+
"6H", # Intended Change Time Period
|
230
|
+
"6I", # Interim Term Period
|
231
|
+
"6J", # Involvement Period
|
232
|
+
"6K", # Loan Rate
|
233
|
+
"6L", # Maximum Age
|
234
|
+
"6M", # Maximum Benefit Period - Accident
|
235
|
+
"6N", # Maximum Benefit Period - Sickness
|
236
|
+
"6O", # Maximum Benefit Period
|
237
|
+
"6P", # Medication Duration
|
238
|
+
"6Q", # Minimum Age
|
239
|
+
"6R", # Own Occupation Qualification Period
|
240
|
+
"6S", # Owner's Equity
|
241
|
+
"6T", # Ownership Change Age
|
242
|
+
"6U", # Ownership Duration
|
243
|
+
"6V", # Ownership Percentage
|
244
|
+
"6W", # Payment Frequency
|
245
|
+
"6X", # Payments Number
|
246
|
+
"6Z", # Placement Period Expiration
|
247
|
+
"70", # Maximum Order Quantity
|
248
|
+
"72", # Minimum Stock Level
|
249
|
+
"73", # Maximum Stock Level
|
250
|
+
"74", # Damaged Goods
|
251
|
+
"75", # Receipts
|
252
|
+
"76", # Returns
|
253
|
+
"77", # Stock Transfers In
|
254
|
+
"78", # Stock Transfers Out
|
255
|
+
"79", # Billing Unit(s) Per Pricing Unit
|
256
|
+
"7A", # Previous Benefits
|
257
|
+
"7B", # Qualification Period
|
258
|
+
"7C", # Range Average
|
259
|
+
"7D", # Range Maximum
|
260
|
+
"7E", # Range Minimum
|
261
|
+
"7F", # Relationship Duration
|
262
|
+
"7G", # Replaced Amount
|
263
|
+
"7H", # Residence Duration
|
264
|
+
"7I", # Sisters Deceased
|
265
|
+
"7J", # Sisters Living
|
266
|
+
"7K", # Time Frame
|
267
|
+
"7L", # Time in Country
|
268
|
+
"7M", # Time Since Hospitalization
|
269
|
+
"7N", # Time Since Last Application
|
270
|
+
"7O", # Time Since Last Civilian Flight
|
271
|
+
"7P", # Time Since Last Insurance Medical
|
272
|
+
"7Q", # Time Since Last Military Flight
|
273
|
+
"7R", # Time Since Medical Consult
|
274
|
+
"7S", # Time Since Medication End
|
275
|
+
"7T", # Time Since Medication Start
|
276
|
+
"7U", # Time Since Onset
|
277
|
+
"7V", # Time Since Surgery
|
278
|
+
"7W", # Time Since Trip
|
279
|
+
"7X", # Travel Frequency
|
280
|
+
"7Y", # Travel Period
|
281
|
+
"7Z", # Trip Duration
|
282
|
+
"80", # Pricing Unit(s) Per Billing Unit
|
283
|
+
"81", # Prepaid Quantity Shipped
|
284
|
+
"82", # Prepaid Quantity Not Shipped
|
285
|
+
"83", # Submitted Quantity Sold
|
286
|
+
"84", # Submitted Quantity Returned
|
287
|
+
"85", # Lot Size
|
288
|
+
"86", # Nonconformance Quantity
|
289
|
+
"87", # Quantity Received
|
290
|
+
"88", # Beds
|
291
|
+
"89", # Operating Beds
|
292
|
+
"8A", # Visitation Frequency
|
293
|
+
"8B", # Weight
|
294
|
+
"8C", # Weight Change Period
|
295
|
+
"8D", # Work Period
|
296
|
+
"8E", # Existence Limit Period
|
297
|
+
"8F", # Shares
|
298
|
+
"8G", # Directors
|
299
|
+
"8H", # Minimum
|
300
|
+
"8I", # Voting Shares Held
|
301
|
+
"8J", # Outstanding Shares
|
302
|
+
"8K", # Shares Held as Treasury Stock
|
303
|
+
"8L", # Shares Subscribed but Not Issued
|
304
|
+
"8M", # Total Shares of Stock
|
305
|
+
"8N", # Shares Owned by In-State Residents
|
306
|
+
"8O", # Shares Owned by Out-of-State Residents
|
307
|
+
"8P", # Partners
|
308
|
+
"8Q", # Land Holding
|
309
|
+
"8R", # Non-Domestic Stockholders
|
310
|
+
"8S", # Shares Subscribed
|
311
|
+
"90", # Acknowledged Quantity
|
312
|
+
"91", # Additional Usage Quantity
|
313
|
+
"92", # Allotted Usage Quantity
|
314
|
+
"93", # Attendant-Handled Quantity
|
315
|
+
"94", # Billable Quantity
|
316
|
+
"95", # Data Storage Quantity
|
317
|
+
"96", # Non-Billable Quantity
|
318
|
+
"97", # Non-Urgent Delivery Quantity
|
319
|
+
"98", # Overflow Quantity
|
320
|
+
"99", # Quantity Used
|
321
|
+
"9A", # Time Expended
|
322
|
+
"9C", # Primary Meter Reading Value
|
323
|
+
"9D", # Engineered Standard
|
324
|
+
"9E", # Active Maintenance Time
|
325
|
+
"9F", # Actual Duration
|
326
|
+
"9H", # Estimated Duration
|
327
|
+
"9J", # Gross Estimate
|
328
|
+
"9K", # Finish Offset
|
329
|
+
"9L", # Start Offset
|
330
|
+
"9M", # Picture Count
|
331
|
+
"9N", # Component Meter Reading Count
|
332
|
+
"A1", # Acceptable Unserviceable Quantity
|
333
|
+
"A2", # Optimistic Duration
|
334
|
+
"A3", # Most Likely Duration
|
335
|
+
"A4", # Pessimistic Duration
|
336
|
+
"A5", # Adjusted Quantity
|
337
|
+
"A6", # Accidents
|
338
|
+
"A7", # Years in School
|
339
|
+
"A8", # Number of Dependents
|
340
|
+
"A9", # Years on Job
|
341
|
+
"AA", # Unacknowledged Quantity
|
342
|
+
"AB", # Urgent Delivery Quantity
|
343
|
+
"AC", # Voice Storage Quantity
|
344
|
+
"AD", # Maintenance Units
|
345
|
+
"AE", # Minimum Average Time Requirement (MATR) Units
|
346
|
+
"AF", # Wide Area Telephone Service (WATS)/800 Service Units
|
347
|
+
"AG", # Number of End Users
|
348
|
+
"AH", # Number of Message Recipients
|
349
|
+
"AI", # Number of Operator Credits
|
350
|
+
"AJ", # Daily Adjustments
|
351
|
+
"AK", # Years in this Line of Work/Profession
|
352
|
+
"AL", # Area per Units
|
353
|
+
"AN", # Age at Death
|
354
|
+
"AO", # Verified Receipts
|
355
|
+
"AP", # Order Quantity Multiple
|
356
|
+
"AQ", # Contribution Total
|
357
|
+
"AR", # Loan Repayment Total
|
358
|
+
"AS", # Participant Total
|
359
|
+
"AT", # Actual
|
360
|
+
"AU", # Cumulative Actual
|
361
|
+
"AV", # Budget
|
362
|
+
"AW", # Cumulative Budget
|
363
|
+
"AX", # Number of Insured Lives
|
364
|
+
"AY", # Forecast
|
365
|
+
"AZ", # Forecast at Complete
|
366
|
+
"B1", # Number of Mortgagors
|
367
|
+
"B2", # Mortgage Pool Count
|
368
|
+
"B3", # Requested Amount
|
369
|
+
"B4", # Approved Amount
|
370
|
+
"B5", # Additional Amount
|
371
|
+
"B6", # Pre-op Days
|
372
|
+
"B7", # Post-op Days
|
373
|
+
"B8", # Average
|
374
|
+
"BA", # Due-In
|
375
|
+
"BB", # Contractor Cumulative to Date
|
376
|
+
"BC", # Budget At Complete
|
377
|
+
"BD", # Contractor at Complete
|
378
|
+
"BE", # Subcontractor Cumulative to Date
|
379
|
+
"BF", # Age Modifying Units
|
380
|
+
"BG", # Subcontractor at Complete
|
381
|
+
"BH", # Book Order Quantity
|
382
|
+
"BI", # Book Inventory
|
383
|
+
"BJ", # Bedroom Count
|
384
|
+
"BK", # Bathroom Count
|
385
|
+
"BQ", # Backorder Quantity
|
386
|
+
"BR", # Blood Record
|
387
|
+
"BW", # Birth Weight
|
388
|
+
"C0", # Creditors
|
389
|
+
"CA", # Covered - Actual
|
390
|
+
"CB", # Closing Statement Balance
|
391
|
+
"CC", # Current Days on Market
|
392
|
+
"CD", # Co-insured - Actual
|
393
|
+
"CE", # Covered - Estimated
|
394
|
+
"CF", # Co-insured - Estimated
|
395
|
+
"CG", # Cumulative Gas Volume
|
396
|
+
"CH", # Cumulative Effect of Prior Period Adjustment
|
397
|
+
"CI", # Cumulative Gas Injection Volume
|
398
|
+
"CL", # Cumulative Liquid Injection Volume
|
399
|
+
"CN", # Continuance Duration
|
400
|
+
"CO", # Cumulative Oil/Condensate Volume
|
401
|
+
"CP", # Current Period Imbalance
|
402
|
+
"CR", # Certified Registered Nurse Anesthetist (CRNA) Number of Concurrent Procedures
|
403
|
+
"CS", # Current Service Life
|
404
|
+
"CW", # Cumulative Water Volume
|
405
|
+
"CY", # Convictions Sent
|
406
|
+
"CZ", # Total Number of Convictions
|
407
|
+
"D1", # Billed
|
408
|
+
"D3", # Number of Co-insurance Days
|
409
|
+
"DA", # Dependent's Age
|
410
|
+
"DB", # Deductible Blood Units
|
411
|
+
"DC", # Dependent Count
|
412
|
+
"DD", # Distributed
|
413
|
+
"DE", # Debited
|
414
|
+
"DF", # Deleted
|
415
|
+
"DG", # Gas Used for Drilling
|
416
|
+
"DI", # Disposed
|
417
|
+
"DN", # Default Notification Response Period
|
418
|
+
"DO", # Days Operated
|
419
|
+
"DP", # Days Produced
|
420
|
+
"DR", # Direct Workers
|
421
|
+
"DS", # Dose
|
422
|
+
"DT", # Dependent Total
|
423
|
+
"DY", # Days
|
424
|
+
"E1", # Course Segments
|
425
|
+
"E2", # Degree Segments
|
426
|
+
"E3", # Employed on this job
|
427
|
+
"E4", # Employed in this Profession
|
428
|
+
"E5", # Employed by this Company
|
429
|
+
"EA", # Exclusive Uses
|
430
|
+
"EB", # Nonexclusive Uses
|
431
|
+
"EC", # Use of Extracorporeal Circulation
|
432
|
+
"ED", # Domestic Uses
|
433
|
+
"EE", # Small Business Uses
|
434
|
+
"EM", # Emergency Modifying Units
|
435
|
+
"EP", # Product Exchange Amount
|
436
|
+
"EQ", # Equity Security Holder
|
437
|
+
"ER", # Estimated Remaining Economic Life
|
438
|
+
"ES", # Ending Stock
|
439
|
+
"ET", # Employee Total
|
440
|
+
"EW", # Evaporated Water
|
441
|
+
"F1", # Off Lease Fuel
|
442
|
+
"FA", # Full Baths
|
443
|
+
"FB", # Furnished Blood Units
|
444
|
+
"FC", # Fuel Consumed or Burned Amount
|
445
|
+
"FD", # Vehicular Radios
|
446
|
+
"FE", # Portable Radios
|
447
|
+
"FF", # Flare or Flash
|
448
|
+
"FG", # Marine Radios
|
449
|
+
"FH", # Pagers
|
450
|
+
"FI", # Conventional Mobiles
|
451
|
+
"FJ", # Trunked Channels
|
452
|
+
"FK", # Mobile Loading Allocation
|
453
|
+
"FL", # Units
|
454
|
+
"FM", # Aircraft Radios
|
455
|
+
"FR", # Units For Sale
|
456
|
+
"FS", # Gas Used for Fuel System
|
457
|
+
"FT", # Forecast to Complete
|
458
|
+
"GA", # Gross Building Area
|
459
|
+
"GB", # Gross Annual Income Multiplier
|
460
|
+
"GC", # Gross Living Area
|
461
|
+
"GE", # Original Term In Years
|
462
|
+
"GF", # Years Remaining
|
463
|
+
"GI", # Gas Injection Volume
|
464
|
+
"GL", # Gas Lift Volume
|
465
|
+
"GP", # Gross Production
|
466
|
+
"GQ", # Government Reporting Quantity
|
467
|
+
"GR", # Gas Receipt Volume
|
468
|
+
"GS", # Gas Sold
|
469
|
+
"GT", # Grade Transfer Amount
|
470
|
+
"GU", # Employee Total First Month of Quarter
|
471
|
+
"GV", # Gas Volume
|
472
|
+
"GW", # Employee Total Second Month of Quarter
|
473
|
+
"GX", # Employee Total Third Month of Quarter
|
474
|
+
"GZ", # Active Listings
|
475
|
+
"HA", # Market Price Change
|
476
|
+
"HB", # Unpaid
|
477
|
+
"HC", # Branches
|
478
|
+
"HD", # Subsidiaries
|
479
|
+
"HE", # Age of Financial Information
|
480
|
+
"HF", # Invoices
|
481
|
+
"HG", # Financial Coverage Period
|
482
|
+
"HH", # Maximum Number of Employees at Location
|
483
|
+
"HI", # Previous Number of Accounts
|
484
|
+
"HJ", # Collection Period
|
485
|
+
"HK", # Disbursement Period
|
486
|
+
"HL", # Seats
|
487
|
+
"HM", # Use of Hypothermia
|
488
|
+
"HN", # Previous Number of Employees
|
489
|
+
"HO", # Use of Hypotension
|
490
|
+
"HP", # Use of Hyperbaric Pressurization
|
491
|
+
"HR", # Use of Hypertension
|
492
|
+
"HS", # Hours
|
493
|
+
"II", # Number of Irregular Interest Payments
|
494
|
+
"IN", # Indirect Workers
|
495
|
+
"IP", # Number of Interest Payments
|
496
|
+
"IQ", # In-Transit Quantity
|
497
|
+
"IS", # Information Provider Standardized Motor Vehicle Penalty Points
|
498
|
+
"IT", # Intertank Transfer Amount
|
499
|
+
"JA", # Activity Codes
|
500
|
+
"JB", # Associates
|
501
|
+
"JC", # Average Employees
|
502
|
+
"JD", # Cooperative Shares
|
503
|
+
"JE", # Estimated Employees at Location
|
504
|
+
"JF", # Estimated Total Employees
|
505
|
+
"JG", # Financial Institutions
|
506
|
+
"JH", # Judgments
|
507
|
+
"JI", # Land Size
|
508
|
+
"JJ", # Liens
|
509
|
+
"JK", # Minimum Employees at Location
|
510
|
+
"JL", # Office Size
|
511
|
+
"JM", # Owner
|
512
|
+
"JN", # Plant Size
|
513
|
+
"JO", # Previous Number of Branches
|
514
|
+
"JP", # Protested Bills
|
515
|
+
"JQ", # Suits
|
516
|
+
"JR", # Uniform Commercial Code (UCC) Filings
|
517
|
+
"JS", # Judicial Stay Duration
|
518
|
+
"JT", # Warehouse Size
|
519
|
+
"K6", # Drafts
|
520
|
+
"KA", # Estimated
|
521
|
+
"KB", # Net Quantity Increase
|
522
|
+
"KC", # Net Quantity Decrease
|
523
|
+
"KD", # Expenditure Quantity
|
524
|
+
"KE", # Originals
|
525
|
+
"KF", # Duplicates
|
526
|
+
"KG", # Completed Line Items
|
527
|
+
"KH", # Completed Contracts
|
528
|
+
"KI", # Active Contracts Delinquent-Buying Party Caused
|
529
|
+
"KJ", # Active Contracts Delinquent
|
530
|
+
"KK", # Active Contracts Delinquent-Contractor Caused
|
531
|
+
"KL", # Active Contracts Delinquent-Unknown Causes
|
532
|
+
"KM", # Active Line Items Delinquent
|
533
|
+
"KN", # Active Line Items Delinquent-Buying Party Caused
|
534
|
+
"KO", # Active Line Items Delinquent-Contractor Caused
|
535
|
+
"KP", # Active Line Items Delinquent-Unknown Causes
|
536
|
+
"KQ", # Contracts Completed Delinquent-Buying Party Caused
|
537
|
+
"KR", # Contract Completed Delinquent-Contractor Caused
|
538
|
+
"KS", # Contracts Completed Delinquent-Unknown Causes
|
539
|
+
"KU", # Reported Deficiencies
|
540
|
+
"KV", # Line Items Completed Delinquent-Buying Party Caused
|
541
|
+
"KW", # Line Items Completed Delinquent-Contractor Caused
|
542
|
+
"KX", # Line Items Completed Delinquent-Unknown Causes
|
543
|
+
"KY", # Corrective Action Requests-Verbal
|
544
|
+
"KZ", # Corrective Action Requests-Written
|
545
|
+
"L2", # Guarantee Fee Buyup Maximum
|
546
|
+
"L3", # Contract Buyup
|
547
|
+
"L4", # Contract Buydown
|
548
|
+
"L5", # Guarantee Fee Rate after Alternate Payment Method
|
549
|
+
"L6", # Guarantee Fee Rate after Buyup or Buydown
|
550
|
+
"L7", # Buyup or Buydown Rate per Basis Point
|
551
|
+
"LA", # Life-time Reserve - Actual
|
552
|
+
"LB", # Loss Allowance
|
553
|
+
"LC", # Late Payment Period
|
554
|
+
"LE", # Life-time Reserve - Estimated
|
555
|
+
"LG", # Loss or Gain
|
556
|
+
"LH", # Lost Gas
|
557
|
+
"LI", # Liquid Injection Volume
|
558
|
+
"LK", # Corrective Action Requests-Method C
|
559
|
+
"LL", # Corrective Action Requests-Method D
|
560
|
+
"LM", # Corrective Action Requests-Method E
|
561
|
+
"LN", # Aged Active Line Items Delinquent-Contractor Caused
|
562
|
+
"LO", # Lost Oil
|
563
|
+
"LP", # Lease Periods
|
564
|
+
"LQ", # Aged Line Items Delinquent
|
565
|
+
"LR", # Aged Line Items Completed-Contractor Caused
|
566
|
+
"LS", # Oil Condensate Sold
|
567
|
+
"LT", # Tariff Loss Allowance
|
568
|
+
"LV", # Oil/Condensate Volume
|
569
|
+
"LW", # Lost Work Time Actual
|
570
|
+
"LX", # Lost Work Time Estimated
|
571
|
+
"LY", # Length of Residency
|
572
|
+
"M1", # Matching Equipment
|
573
|
+
"M2", # Maximum
|
574
|
+
"MA", # Miscellaneous Allowance
|
575
|
+
"MD", # Million Dollar Roundtable Credits
|
576
|
+
"ME", # Minimum Number of Employees
|
577
|
+
"MF", # Manufactured
|
578
|
+
"MI", # Miles
|
579
|
+
"MM", # Maximum Maturity Extension
|
580
|
+
"MN", # Month
|
581
|
+
"MO", # Minimum Order Package Level
|
582
|
+
"MQ", # Maximum Ship Quantity
|
583
|
+
"MX", # Maximum Number of Employees
|
584
|
+
"N1", # Number of Attacks or Occurrences
|
585
|
+
"N2", # Number of Dead
|
586
|
+
"N3", # Number of Living
|
587
|
+
"N4", # Number of Times
|
588
|
+
"N5", # Minimum Forecast Quantity
|
589
|
+
"N6", # Maximum Forecast Quantity
|
590
|
+
"NA", # Number of Non-covered Days
|
591
|
+
"NB", # Number of Units (Housing)
|
592
|
+
"NC", # Number of Claimants
|
593
|
+
"ND", # Number of Late Charges
|
594
|
+
"NE", # Non-Covered - Estimated
|
595
|
+
"NF", # Number of Full-Time Employees
|
596
|
+
"NG", # Number of Nonsufficient Fund Items
|
597
|
+
"NL", # Number of Levels
|
598
|
+
"NN", # Number of Hospitals
|
599
|
+
"NO", # Number of Physicians
|
600
|
+
"NP", # Number of Members
|
601
|
+
"NQ", # Number of Franchisees
|
602
|
+
"NR", # Not Replaced Blood Units
|
603
|
+
"NS", # Number of Stations
|
604
|
+
"NT", # Reports
|
605
|
+
"NU", # Since Last Travel
|
606
|
+
"NV", # Net
|
607
|
+
"NW", # Until Next Travel
|
608
|
+
"OC", # Order Count
|
609
|
+
"OD", # Other Miscellaneous Disposition
|
610
|
+
"OF", # Off Premise Sales Quantity
|
611
|
+
"OG", # Other Gas Disposition
|
612
|
+
"OH", # Other Injection Volume
|
613
|
+
"OI", # Opening Statement Balance
|
614
|
+
"OL", # Original Loan Term
|
615
|
+
"ON", # On Premise Sales Quantity
|
616
|
+
"OO", # Other Oil Condensate Disposition
|
617
|
+
"OR", # Original
|
618
|
+
"OT", # Number of Operating Periods at Failure
|
619
|
+
"OU", # Outlier Days
|
620
|
+
"OV", # Overage
|
621
|
+
"OW", # Other Water Disposition
|
622
|
+
"P1", # Project Phases
|
623
|
+
"P3", # Physical Status III
|
624
|
+
"P4", # Physical Status IV
|
625
|
+
"P5", # Physical Status V
|
626
|
+
"P6", # Number of Services or Procedures
|
627
|
+
"P7", # Prescription Dosage
|
628
|
+
"P8", # Prescription Frequency
|
629
|
+
"P9", # Number of People Living at Residence
|
630
|
+
"PA", # Pipeline Adjustment or Allowance
|
631
|
+
"PB", # Pressure Base
|
632
|
+
"PC", # Prior Cumulative Imbalance
|
633
|
+
"PD", # Payment Duration Weeks
|
634
|
+
"PE", # Period of Employment
|
635
|
+
"PF", # Gas Used for Plant Fuel
|
636
|
+
"PG", # Persistency
|
637
|
+
"PK", # Parking Spaces
|
638
|
+
"PL", # Partial Baths
|
639
|
+
"PO", # Percentage of Ordered Quantity
|
640
|
+
"PP", # Purchase of Product
|
641
|
+
"PQ", # Cumulative Quantity Required Prior to the First Scheduled Period
|
642
|
+
"PR", # Requirement Quantity that was Previously Released
|
643
|
+
"PS", # Prescription
|
644
|
+
"PT", # Patients
|
645
|
+
"PW", # Pitted Water
|
646
|
+
"PX", # Prior Units Accepted
|
647
|
+
"Q1", # Minimum quantity to which tax rate applies
|
648
|
+
"Q2", # Maximum quantity to which tax rate applies
|
649
|
+
"Q3", # Quantity Earned
|
650
|
+
"Q4", # Quantity Carried Forward
|
651
|
+
"QA", # Quantity Approved
|
652
|
+
"QB", # Quantity Dispensed
|
653
|
+
"QC", # Quantity Disapproved
|
654
|
+
"QD", # Quantity Delivered
|
655
|
+
"QE", # Quantity Deferred
|
656
|
+
"QF", # High Fabrication Authorization Quantity
|
657
|
+
"QH", # Quantity on Hold
|
658
|
+
"QI", # Community Service Duration
|
659
|
+
"QJ", # Number of Times Deported
|
660
|
+
"QL", # Jail Sentence Duration
|
661
|
+
"QM", # Probation Duration
|
662
|
+
"QN", # Restriction Duration
|
663
|
+
"QO", # Operating Quantity
|
664
|
+
"QP", # Quantity by Position
|
665
|
+
"QQ", # Suspended Duration
|
666
|
+
"QR", # High Raw Material Authorization Quantity
|
667
|
+
"QS", # Quantity Per Skid
|
668
|
+
"QU", # Quantity Serviced
|
669
|
+
"QV", # Quantity Cancelled
|
670
|
+
"QW", # Quantity Withdrawn
|
671
|
+
"QX", # Qualifying Weeks
|
672
|
+
"R3", # Estimated Remaining Physical Life
|
673
|
+
"R5", # Axles
|
674
|
+
"R6", # Platform Count
|
675
|
+
"R9", # Fuel
|
676
|
+
"RA", # Refills Authorized
|
677
|
+
"RB", # Replaced Blood Units
|
678
|
+
"RC", # Number of Items Authorized at Store
|
679
|
+
"RD", # Number of Items Authorized at Warehouse
|
680
|
+
"RE", # Gas Returned to Earth
|
681
|
+
"RF", # Number of Items in Stock
|
682
|
+
"RG", # Gas Used for Repressuring or Pressure Maintenance
|
683
|
+
"RH", # Number of Shelf Tags
|
684
|
+
"RJ", # Quantity Available on Shelf
|
685
|
+
"RL", # Gas Returned to Property for fuel
|
686
|
+
"RM", # Room Count
|
687
|
+
"RN", # Units Rented
|
688
|
+
"RQ", # Royalty
|
689
|
+
"RS", # Number of Shelf Facings
|
690
|
+
"RT", # Retail Sales Quantity
|
691
|
+
"RW", # Water Re-injected on Property
|
692
|
+
"RY", # Requirement Quantity
|
693
|
+
"S1", # Planned Unit Development (PUD) Units
|
694
|
+
"S2", # Rooms, Finished Area Above Grade
|
695
|
+
"S3", # Dwelling Area
|
696
|
+
"S4", # Garage or Carport Area
|
697
|
+
"S5", # Units for Sale
|
698
|
+
"S6", # Gross Rent Multiplier
|
699
|
+
"S7", # Age, High Value
|
700
|
+
"S8", # Age, Low Value
|
701
|
+
"S9", # Bedrooms, Finished Area Above Grade
|
702
|
+
"SA", # Shipments
|
703
|
+
"SB", # Solicited
|
704
|
+
"SC", # Bathrooms, Finished Area Above Grade
|
705
|
+
"SD", # Criminal Sentence Duration
|
706
|
+
"SE", # Gross Living, Finished Area Above Grade
|
707
|
+
"SF", # Site
|
708
|
+
"SG", # Swan-Ganz
|
709
|
+
"SH", # Shortage
|
710
|
+
"SI", # Rooms
|
711
|
+
"SJ", # Area of Level
|
712
|
+
"SK", # Gas Shrinkage
|
713
|
+
"SL", # Predominate Age
|
714
|
+
"SM", # Minimum Criminal Sentence Duration
|
715
|
+
"SN", # Age
|
716
|
+
"SO", # Oil Sedimentation
|
717
|
+
"SP", # Days Supply
|
718
|
+
"SQ", # Product Sales Amount
|
719
|
+
"SR", # Effective Age
|
720
|
+
"SS", # Shares of Preferred Stock
|
721
|
+
"ST", # Standard
|
722
|
+
"SU", # Forecasted Scanned Quantity
|
723
|
+
"SV", # Shares of Common Stock
|
724
|
+
"SW", # Sample Amount
|
725
|
+
"SX", # Maximum Criminal Sentence Duration
|
726
|
+
"SY", # State or Province Motor Vehicle Penalty Points
|
727
|
+
"T1", # Time Units Known
|
728
|
+
"T2", # Time Units Spent on Duty
|
729
|
+
"T3", # Total Days on Market
|
730
|
+
"T4", # Total Rooms
|
731
|
+
"T5", # Total Number of Units
|
732
|
+
"T6", # Total Number of Units for Sale
|
733
|
+
"T7", # Tires
|
734
|
+
"TA", # Tank Allowance
|
735
|
+
"TB", # Oil Theft
|
736
|
+
"TC", # Total at Complete
|
737
|
+
"TD", # Total to Date
|
738
|
+
"TE", # Number of Theatres
|
739
|
+
"TG", # Total Gas Injection Volume
|
740
|
+
"TH", # Theoretical Quantity
|
741
|
+
"TI", # Total Oil and/or Condensate Injection Volume
|
742
|
+
"TJ", # Duration in Current Job
|
743
|
+
"TK", # Total Oil and/or Condensate Disposition
|
744
|
+
"TM", # Total Water Disposition
|
745
|
+
"TN", # Total Beginning Inventory
|
746
|
+
"TO", # Total
|
747
|
+
"TP", # Time in Position
|
748
|
+
"TR", # Trips
|
749
|
+
"TS", # Total Number of Parking Spaces
|
750
|
+
"TT", # Total Production Volume
|
751
|
+
"TU", # Total Adjustments Volume
|
752
|
+
"TV", # Total Gas Disposition
|
753
|
+
"TW", # Total Water Injection Volume
|
754
|
+
"TX", # Total Ending Inventory
|
755
|
+
"TY", # Total Sales Volume
|
756
|
+
"UA", # Units Completed
|
757
|
+
"UG", # Gas Used on Property
|
758
|
+
"UL", # Approximate Number of Units for Sale Projected
|
759
|
+
"UO", # Oil Condensate Used on Property
|
760
|
+
"US", # In-Use
|
761
|
+
"UU", # Used
|
762
|
+
"V1", # Retention Quantity
|
763
|
+
"V2", # Available Quantity
|
764
|
+
"V3", # Transfer Quantity
|
765
|
+
"V4", # Surveys in Average Rating
|
766
|
+
"V5", # Vacancies
|
767
|
+
"VA", # Volume Shrinkage Adjustment or Allowance
|
768
|
+
"VB", # Blank Votes
|
769
|
+
"VC", # Cumulative Earned Value
|
770
|
+
"VD", # Scattered Votes
|
771
|
+
"VE", # Earned Value
|
772
|
+
"VF", # Federal Votes
|
773
|
+
"VG", # Gas Vented
|
774
|
+
"VH", # Schedule Variance
|
775
|
+
"VI", # Cumulative Schedule Variance
|
776
|
+
"VJ", # Cumulative Variance
|
777
|
+
"VK", # Estimate at Complete
|
778
|
+
"VL", # At Complete Variance
|
779
|
+
"VM", # Variance Adjustment
|
780
|
+
"VN", # No Votes
|
781
|
+
"VP", # Presidential Votes
|
782
|
+
"VR", # Variance
|
783
|
+
"VS", # Visits
|
784
|
+
"VT", # Votes
|
785
|
+
"VV", # Void Votes
|
786
|
+
"VY", # Yes Votes
|
787
|
+
"WA", # Total number of Workers' Compensation First Reports
|
788
|
+
"WB", # Total number of Workers' Compensation Subsequent Reports
|
789
|
+
"WC", # Total number of Workers' Compensation Combined Reports
|
790
|
+
"WD", # Units Worked per Day
|
791
|
+
"WE", # Limited Quantity
|
792
|
+
"WG", # Weight Gain
|
793
|
+
"WL", # Weight Loss
|
794
|
+
"WO", # Operator's Working Interest
|
795
|
+
"WP", # Number of Producing Wells Remaining on Property or Facility
|
796
|
+
"WR", # Number of Producing Wells Remaining on Royalty Account
|
797
|
+
"WT", # Total Working Interest
|
798
|
+
"WV", # Water Volume
|
799
|
+
"WW", # Weeks Worked
|
800
|
+
"WX", # License Withdrawal Duration
|
801
|
+
"WY", # License Withdrawals Sent
|
802
|
+
"X1", # Producing Wells
|
803
|
+
"XA", # Total of Issuable Assets
|
804
|
+
"XB", # Total System Backorder Quantity, High Priority
|
805
|
+
"XC", # Total Service Backorder Quantity, High Priority
|
806
|
+
"XD", # Total System Backorder Quantity, Low Priority
|
807
|
+
"XE", # Total Service Backorder Quantity, Low Priority
|
808
|
+
"XG", # On Hand and Due-In
|
809
|
+
"XI", # Installment Payments
|
810
|
+
"XJ", # Other War Reserve Material Requirements Protectable (OWRMRP) Quantity
|
811
|
+
"XL", # Approximate Number of Units Projected
|
812
|
+
"XN", # Approximate Number of Holders
|
813
|
+
"XO", # Circulating Oil
|
814
|
+
"XT", # Protected Quantity
|
815
|
+
"XU", # Reserved
|
816
|
+
"XV", # Requisitioning Objective
|
817
|
+
"XX", # Authorized Retention Level
|
818
|
+
"XY", # Safety Level
|
819
|
+
"XZ", # Backorder Lines
|
820
|
+
"YA", # Total Demand Quantity
|
821
|
+
"YB", # Total Demand Orders
|
822
|
+
"YC", # First Quarter Recurring Demand
|
823
|
+
"YD", # First Quarter Recurring Orders
|
824
|
+
"YE", # First Quarter Non-recurring Demand
|
825
|
+
"YF", # First Quarter Non-recurring Orders
|
826
|
+
"YG", # Second Quarter Recurring Demand
|
827
|
+
"YH", # Second Quarter Recurring Orders
|
828
|
+
"YJ", # Second Quarter Non-recurring Demand
|
829
|
+
"YK", # Second Quarter Non-recurring Orders
|
830
|
+
"YL", # Third Quarter Recurring Demand
|
831
|
+
"YM", # Third Quarter Recurring Orders
|
832
|
+
"YN", # Third Quarter Non-recurring Demand
|
833
|
+
"YP", # Third Quarter Non-recurring Orders
|
834
|
+
"YQ", # Fourth Quarter Recurring Demand
|
835
|
+
"YR", # Fourth Quarter Recurring Orders
|
836
|
+
"YS", # Fourth Quarter Non-recurring Demand
|
837
|
+
"YT", # Fourth Quarter Non-recurring Orders
|
838
|
+
"YW", # Reorder Point Quantity
|
839
|
+
"YX", # Contract Line Item Quantity
|
840
|
+
"YY", # Years
|
841
|
+
"Z1", # Units Worked Last Day
|
842
|
+
"Z2", # Units Worked per Week
|
843
|
+
"Z3", # Units Worked per Quarter
|
844
|
+
"Z4", # Number Weeks Paid
|
845
|
+
"Z6", # Unused Accumulated Sick Days
|
846
|
+
"ZA", # Federal Medicare or Medicaid Claim Mandate - Category 1
|
847
|
+
"ZB", # Federal Medicare or Medicaid Claim Mandate - Category 2
|
848
|
+
"ZC", # Federal Medicare or Medicaid Claim Mandate - Category 3
|
849
|
+
"ZD", # Federal Medicare or Medicaid Claim Mandate - Category 4
|
850
|
+
"ZE", # Federal Medicare or Medicaid Claim Mandate - Category 5
|
851
|
+
"ZF", # Federal Pension Mandate - Category 1
|
852
|
+
"ZG", # Federal Pension Mandate - Category 2
|
853
|
+
"ZH", # Federal Pension Mandate - Category 3
|
854
|
+
"ZI", # Holding Period
|
855
|
+
"ZJ", # Federal Pension Mandate - Category 5
|
856
|
+
"ZK", # Federal Medicare or Medicaid Payment Mandate - Category 1
|
857
|
+
"ZL", # Federal Medicare or Medicaid Payment Mandate - Category 2
|
858
|
+
"ZM", # Federal Medicare or Medicaid Payment Mandate - Category 3
|
859
|
+
"ZN", # Federal Medicare or Medicaid Payment Mandate - Category 4
|
860
|
+
"ZO", # Federal Medicare or Medicaid Payment Mandate - Category 5
|
861
|
+
"ZP", # Federal Pension Mandate - Category 4
|
862
|
+
"ZR", # Extended Term
|
863
|
+
"ZS", # Amortization Term
|
864
|
+
]
|
865
|
+
end
|
866
|
+
|
867
|
+
end
|
868
|
+
end
|
869
|
+
end
|