M204.1389: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (add <var>'s)
m (add link)
 
Line 2: Line 2:
<P>
<P>
<var>[[$LstFld]]</var> code verifies that the loop control variable has not been changed since the last time <var>$LstFld</var> updated it. If it has been changed, for example, by the issuing procedure, this message is issued. The user image must exactly
<var>[[$LstFld]]</var> code verifies that the loop control variable has not been changed since the last time <var>$LstFld</var> updated it. If it has been changed, for example, by the issuing procedure, this message is issued. The user image must exactly
match the image documented, and it must be managed by the <var>$LstFld</var> function, not by the user. </P>
match the image documented, the [[ZFIELD image]], and it must be managed by the <var>$LstFld</var> function, not by the user. </P>
<p>
<p>
<b>Response:</b> Check your procedure to assure that the image matches the one documented and that it is handled cleanly. If <var>$LstFld</var> is compiled more than once in the procedure or called for multiple files, care must be
<b>Response:</b> Check your procedure to assure that the image matches the one documented and that it is handled cleanly. If <var>$LstFld</var> is compiled more than once in the procedure or called for multiple files, care must be

Latest revision as of 16:37, 3 July 2018

M204.1389  Mismatch between user image and internal image

$LstFld code verifies that the loop control variable has not been changed since the last time $LstFld updated it. If it has been changed, for example, by the issuing procedure, this message is issued. The user image must exactly match the image documented, the ZFIELD image, and it must be managed by the $LstFld function, not by the user.

Response: Check your procedure to assure that the image matches the one documented and that it is handled cleanly. If $LstFld is compiled more than once in the procedure or called for multiple files, care must be taken that one image is not used simultaneously for more than one purpose.

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