M204.1483

From m204wiki
Revision as of 22:34, 7 March 2018 by JAL (talk | contribs) (add <var>'s)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

M204.1483  Not enough Table D space to store procedure

Either the Editor or the COPY PROC command has attempted to save a procedure that will not fit into Table D. If you are in the editor you remain in the editing session. If you are executing a COPY PROC command, execution of the COPY PROC command is terminated.

Response: To end the editing session from the Full Screen Editor, do one of the following:

  • Save the procedure in another open file that has more free Table D space by using either the IN filename END procname or the IN filename GO procname command.
  • Save the edited version of the procedure as a temporary procedure, using the command SAVE n (where n is the number of the temporary procedure saved). Then enter QUIT to end the editing session.
  • Enter QUIT, losing all edits made to the procedure in this session.

To end the editing session from the Line Editor, enter QUIT or, if you want to save the edited version of the procedure as a temporary procedure, issue the n END command (where n is the number of the temporary procedure saved).

If you were executing a COPY PROC command with the LIKE or ALL options, you should determine which procedures were successfully copied and reissue the COPY command for the remainder, after the file manager has expanded the file.

Notify your file manager that the file may need more Table D space.

File manager response: You can use the INCREASE command to allocate more pages to Table D, or you can reorganize the file with more Table D space.

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

Back to list of messages