So I'm writing this program for class and I believe I have it right. But I can't test it because I can't do anything with one of my fields from an input record. I need to add it to different positions in an array but since it is using the wrong field I get an "invalid character in numeric field" error. I have the input record PIC clauses correct too. The input file is coded:
FD SALES-AMT-FILE-IN.
01 SA-SALESMAN-NUM-IN PIC 99.
01 PIC X VALUE SPACE.
01 MONTH-NUM-IN PIC 9.
01 PIC X VALUE SPACE.
01 SALES-AMT-IN PIC 9(5).
SALES-AMT-FILE-IN is laid out exactly like that I've checked it multiple times and checked each record. The section of code I'm getting the error in is:
440-READ-SALES-AMT-FILE.
MOVE 'YES' TO ARE-THERE-MORE-RECORDS
PERFORM UNTIL ARE-THERE-MORE-RECORDS = 'NO'
READ SALESAMT-FILE-IN
AT END
MOVE 'NO' TO ARE-THERE-MORE-RECORDS
NOT AT END
DISPLAY SALES-AMT-IN *I coded this in to check what was in SALES-AMT-IN
ADD SALES-AMT-IN TO A-AMT (MONTH-NUM-IN, SA-SALESMAN-NUM-IN)
END-READ
END-PERFORM.
The first record of the input file is like this:
30 1 17960
The display statement is giving me:
30 1
I can't figure out why the wrong data is going in there when I have the PIC correctly defined. Can anyone see what I'm doing wrong. I'll post the entire code if needed.
WORKING-STORAGE SECTION.
01 ARE-THERE-MORE-RECORDS PIC X(3) VALUE 'YES'.
01 PAGE-CTR PIC 99 VALUE ZERO.
01 NUMBER-OF-LINES PIC 99 VALUE ZERO.
01 QTR-NUM PIC 9.
01 NAME-SUB PIC 9(3) VALUE 1.
01 NUM-SUB PIC 9(3) VALUE 1.
01 SALESMAN-NUM PIC 999.
01 SALESMAN-TOTAL PIC 9(6).
01 WS-DATE.
05 RUN-YEAR PIC XX.
05 RUN-MONTH PIC XX.
05 RUN-DAY PIC XX.
01 HEADING-LINE-1.
05 PIC X(17) VALUE SPACES.
05 PIC X(35)
VALUE 'SALES AMOUNTS BY SALESMAN AND MONTH'.
05 PIC X(6) VALUE SPACES.
05 HL-DATE.
10 MONTH-HL PIC XX.
10 PIC X VALUE '/'.
10 DAY-HL PIC XX.
10 PIC X VALUE '/'.
10 YEAR-HL PIC XX.
05 PIC X(3) VALUE SPACES.
05 PIC X(5) VALUE 'PAGE'.
05 PAGE-NUMBER-HL PIC Z9.
01 HEADING-LINE-2.
05 PIC X(29)
VALUE 'NUM NAME'.
05 THREE-MONTH-NAMES.
10 MONTH-1-HL PIC X(11).
10 MONTH-2-HL PIC X(11).
10 MONTH-3-HL PIC X(11).
05 PIC X(5) VALUE 'TOTAL'.
01 DETAIL-LINE.
05 SALESMAN-NUMBER-DL PIC ZZZ.
05 PIC XX VALUE SPACES.
05 SALESMAN-NAME-DL PIC X(20).
05 MONTH-1-AMT-DL PIC ZZZ,ZZZ.
05 PIC X(4) VALUE SPACES.
05 MONTH-2-AMT-DL PIC ZZZ,ZZZ.
05 PIC X(4) VALUE SPACES.
05 MONTH-3-AMT-DL PIC ZZZ,ZZZ.
05 PIC XX VALUE SPACES.
05 AMOUNT-TOTAL-DL PIC Z,ZZZ,ZZZ.
01 SALESMAN-TABLE VALUE ZEROS.
05 ENTRIES OCCURS 99 TIMES INDEXED BY X1.
10 T-SALESMAN-NUM PIC 99.
10 T-SALESMAN-NAME PIC X(20).
01 SALES-ARRAY.
05 A-SALESMAN-NUM OCCURS 99.
10 A-MONTH OCCURS 3.
15 A-AMT PIC 9(6) VALUE ZEROS.
