COBCH1948 ファイル節では使用できない

修飾子は、ファイル節のデータ エントリでは使用できません。

たとえば、単語 STATIC は、ファイル節のレコードの 01 レベルでは使用できませんが、FD では使用できます。

       class-id a.
       file-control.
       select f1 assign "MyFile1".
       select f2 assign "MyFile2".
       file section.
       fd f1.
         01 r1 pic x static.  *> This is NOT allowed
       fd f2 static.          *> This is OK
         01 r1 pic x.
       end class.