M204.0712: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (add <var>'s)
m (remove 0 from token0)
 
Line 5: Line 5:
<LI><var class="term">token2</var> specifies the name of the field within the record.</LI>
<LI><var class="term">token2</var> specifies the name of the field within the record.</LI>


<LI><var class="term">token0</var> specifies the Model&nbsp;204 record number that incurred the error.</LI>
<LI><var class="term">token</var> specifies the Model&nbsp;204 record number that incurred the error.</LI>
</ul>
</ul>
<P>
<P>

Latest revision as of 16:46, 26 March 2018

M204.0712  Value too long in recnum​=​token​,​ field​=​token2

Where:

  • token2 specifies the name of the field within the record.
  • token specifies the Model 204 record number that incurred the error.

A File Load program has encountered an attempt to update field token2, a field in the preallocated section, with a value that exceeds the defined length for token2. The update to token2 did not occur, but the File Load program continues.

File manager response: You can do one of the following:

  • Correct the FLOD program or input file.
  • Increase the size of the preallocated field which is specified in the LENGTH attribute of the field description.
  • Leave this field out of the preallocated section by not specifying the OCCURS attribute.

Note: Changes to the preallocated section requires reorganizing 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

Back to list of messages