This word is ignored by the ACUCOBOL compiler, but in Enterprise Developer you should correct the syntax. In the following example, the reserved word 'all' has caused the error:
01 dash-line pic x(80) value "-" all.
Either remove the reserved word altogether or move it to the correct location, as shown below:
01 dash-line pic x(80) value all "-".