1package Business::EDI::CodeList::ResultValueTypeCodeQualifier;
2
3use base 'Business::EDI::CodeList';
4my $VERSION     = 0.02;
5sub list_number {6087;}
6my $usage       = 'B';
7
8# 6087  Result value type code qualifier                        [B]
9# Desc: Code qualifying the type of a result value.
10# Repr: an..3
11
12my %code_hash = (
13'1' => [ 'Measurement result',
14    'Measurement result.' ],
15'2' => [ 'Bank accounts history assessment',
16    'The conclusion resulting from an assessment of bank accounts over time.' ],
17'3' => [ 'Credit level',
18    'The resultant assignment of a credit level based on an assessment of credit worthiness.' ],
19'4' => [ 'Credit rating assessment',
20    'The resultant assignment of a credit rating based on an assessment of credit worthiness.' ],
21'5' => [ 'Credit worthiness assessment',
22    'The resulting assessment of credit worthiness.' ],
23'6' => [ 'Liquidity assessment',
24    'The resulting assessment of liquidity.' ],
25'7' => [ 'Loan payment history',
26    'The resulting assessment of loan payment history.' ],
27'8' => [ 'Overall evaluation',
28    'The summarization of the overall assessment.' ],
29'9' => [ 'Financial conditions',
30    'The resulting assessment of financial conditions.' ],
31'10' => [ 'Trade payments',
32    'The resulting assessment of trade payments.' ],
33'11' => [ 'Failure risk score ranking',
34    "The resulting ranking based on one entity's failure risk score as compared to other entities." ],
35'12' => [ 'Failure risk score',
36    'Score representing the risk of an entity failing.' ],
37'13' => [ 'Business financing resources assessment',
38    'The resulting assessment of resources used for financing a business.' ],
39'14' => [ 'Payment delinquency risk score',
40    'The resulting assessment of the risk of an entity having delinquent payments.' ],
41'15' => [ 'Payment delinquency performance score',
42    "The resulting assessment of the entity's actual delinquent payments." ],
43'16' => [ 'Payment delinquency score ranking',
44    "The resulting ranking of one entity's payment delinquency score as compared to other entities." ],
45'17' => [ 'Payment delinquency assessment',
46    'The resulting assessment of delinquencies as they relate to all entities.' ],
47'18' => [ 'Average trade payment for all entities',
48    'The assessment of average trade payments for all entities.' ],
49'19' => [ 'Revenue ranking',
50    'The resulting ranking based on revenue.' ],
51'20' => [ 'Sales growth ranking',
52    'The resulting ranking based on sales growth.' ],
53'21' => [ 'Asset ranking',
54    'The resulting ranking based on assets.' ],
55'22' => [ 'Profit margin ranking',
56    'The resulting ranking based on profit margin.' ],
57'23' => [ 'Post tax profit ranking',
58    'The resulting ranking based on after taxes profit.' ],
59'24' => [ 'Import and export ranking',
60    'The resulting ranking based on imports and exports.' ],
61'25' => [ 'Projected trade payments',
62    'The resulting assessment of projected trade payments.' ],
63'26' => [ 'Invoice collection',
64    'The resulting assessment based on the collection of invoices.' ],
65);
66sub get_codes { return \%code_hash; }
67
681;
69