M204.1489

From m204wiki
Jump to navigation Jump to search

M204.1489  Not enough file space to continue procedure definition - file fileName

There is no room in the file to store the procedure being entered with the PROCEDURE command. (If the error occurs after the first line of procedure text has been stored, the partial procedure is kept.)

If…Then Model 204…
Error occurs after the first line of procedure text has been storedKeeps the partial procedure
You are entering the text at your terminalEnds procedure definition immediately
Procedure text is supplied by another procedureFlushes the remainder of the input
Procedure text is supplied in a batch input stream (CCAIN)Flushes the remainder of the procedure text and resumes processing after the END PROCEDURE command

Response: Create space in the file by deleting unwanted procedures or increasing Table D with the INCREASE command. Replace the partial procedure using the PROCEDURE command, or use the EDIT command to supply the missing text.

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
CANCELCancels the user's request
COUNTIncrements the error count (ERCNT) parameter

Back to list of messages