COBCH1701 CONSTANT 項目は集団項目になることはできない

集団項目に CONSTANT キーワードが指定されました。

CONSTANT キーワードで指定できるのは、基本項目のみです。

...
01 group1 CONSTANT.                      *> this is incorrect
   03 group-field1 pic x(10).
01 field1 string CONSTANT VALUE "hello". *> this is correct
...