COBCH1970 Only permissible value for a CONSTANT managed array is NULL

A non-NULL value has been assigned to a managed array defined as CONSTANT.

You cannot specify a value (other than null) for a constant managed array. In the following example, you need to change the value clause to specify 'null':

       class-id Const.
       01 MyArray constant binary-long occurs 5 value 1 2 3 4 5.
       end class.