Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
01 WS-RECORD.
05 MY-BYTE-FIELD.
10 MY-COMP-3-FIELD PIC S9(5) COMP-3.
05 etc
[\code]
MY-BYTE-FIELD is a 3-byte, DISPLAY field (because it is a group item) and can be moved to another 3-byte field directly.
Good luck!
Glenn
Brainbench MVP for COBOL II
if cp-activ-months not numeric
move zeros to cp-activ-months
end-if
if master-cp-months-activ not numeric
move zeros to master-cp-months-activ
end-if
if cp-activ-months not = master-cp-months-activ
move "fields do not equal" to report-line
write report-line
after advancing 1 line
end-if
[\code]
Good luck!
Glenn