Does it make sense to have 88 level under FILLER declaration, like in this code:
10 FILLER PIC X(02).
88 SOME-NAME VALUE 'XX'.
Can this field SOME-NAME be used in the program?
Yes, that makes totally sense. You may use this for:
SET SOME-NAME TO TRUE
and IF SOME-NAME
; as Scott Nelson pointed out this is a good way to prevent use of "magic values"01
above your 10
.