M204.0232

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

M204.0232  File or group isn't open - name

This message can be generated for any of these reasons:

  • A CLOSE command for a file or group not currently open was issued.
  • An IN filename clause or IN groupname clause was issued as part of a SOUL statement. The specified file or group was not currently open. The compilation continues, but the request is not evaluated.
  • The OUTPUT file context specified for the COPY PROC command was a file or group not currently open.

Response: In the first case, no response is required. In the second case, make sure that all files accessed in the IN clause are open, or eliminate from the IN clause those files that are not open, and retry. For the third case, open the file.

Message attributes:

RETCODEO=0Sets online return code
RETCODEB=4Sets batch (single user) return code
CLASS=EError class; the message can be suppressed with the X'04' bit setting of the MSGCTL parameter
AUDITERWrites the message with line type ER to the audit trail
COUNTIncrements the error count (ERCNT) parameter
ECHODisplays the line that caused the error

Back to list of messages