M204.1489: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
m (add <var>'s)
 
Line 1: Line 1:
{{Template:M204.1489 skeleton}}
{{Template:M204.1489 skeleton}}
<P>
<P>
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.) </p>
There is no room in the file to store the procedure being entered with the <var>PROCEDURE</var> command. (If the error occurs after the first line of procedure text has been stored, the partial procedure is kept.) </p>
<table>
<table>
<tr class="head"><th>If&#x2026;</th><th>Then Model 204&#x2026;</th></tr>
<tr class="head"><th>If&#x2026;</th><th>Then Model 204&#x2026;</th></tr>
Line 11: Line 11:
<tr><td>Procedure text is supplied by another procedure</td><td>Flushes the remainder of the input</td></tr>
<tr><td>Procedure text is supplied by another procedure</td><td>Flushes the remainder of the input</td></tr>


<tr><td>Procedure text is supplied in a batch input stream (CCAIN)</td><td>Flushes the remainder of the procedure text and resumes processing after the END PROCEDURE command</td></tr>
<tr><td>Procedure text is supplied in a batch input stream (CCAIN)</td><td>Flushes the remainder of the procedure text and resumes processing after the <var>END PROCEDURE</var> command</td></tr>
</table>
</table>
<p>
<p>
<b>Response:</b> 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.
<b>Response:</b> Create space in the file by deleting unwanted procedures or increasing Table D with the <var>INCREASE</var> command. Replace the partial procedure using the <var>PROCEDURE</var> command, or use the <var>EDIT</var> command to supply the missing text.
</p>
</p>
{{Template:M204.1489 footer}}
{{Template:M204.1489 footer}}
<!-- skeleton as it was in pdf/NOT ENOUGH FILE SPACE TO CONTINUE PROCEDURE DEFINITION /-->
<!-- skeleton as it was in pdf/NOT ENOUGH FILE SPACE TO CONTINUE PROCEDURE DEFINITION /-->

Latest revision as of 22:36, 7 March 2018

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