Simple question that I cannot find an answer to through web-searching.
Is it valid to have a field in a COBOL copybook without a name? i.e. is the following valid?
05 SUMMARY.
07 DETAILS OCCURS 3 TIMES
PIC X(10).
07 PIC X(100).
Is this the same as say using FILLER instead of the name? If not, what is the difference between a blank name and using FILLER?