line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Business::EDI::CodeList::SectionIdentification; |
2
|
|
|
|
|
|
|
|
3
|
6
|
|
|
6
|
|
38
|
use base 'Business::EDI::CodeList'; |
|
6
|
|
|
|
|
14
|
|
|
6
|
|
|
|
|
1129
|
|
4
|
|
|
|
|
|
|
my $VERSION = 0.02; |
5
|
16
|
|
|
16
|
0
|
115
|
sub list_number {return "0081";} |
6
|
|
|
|
|
|
|
my $usage = 'B'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
# 0081 Section identification |
9
|
|
|
|
|
|
|
# Desc: Identification of the separation of sections of a message. |
10
|
|
|
|
|
|
|
# Repr: a1 |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
my %code_hash = ( |
13
|
|
|
|
|
|
|
'D' => [ 'Header/detail section separation', |
14
|
|
|
|
|
|
|
'To qualify the segment UNS, when separating the header from the detail section of a message.' ], |
15
|
|
|
|
|
|
|
'S' => [ 'Detail/summary section separation', |
16
|
|
|
|
|
|
|
'To qualify the segment UNS, when separating the detail from the summary section of a message.' ], |
17
|
|
|
|
|
|
|
); |
18
|
16
|
|
|
16
|
0
|
54
|
sub get_codes { return \%code_hash; } |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
1; |