M204.1068: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (add italics)
m (remove 0 from token0)
 
Line 3: Line 3:
You issued one of the following forms of the <var>ALLOCATE</var> command: </P>
You issued one of the following forms of the <var>ALLOCATE</var> command: </P>
<ul>
<ul>
<li><code>ALLOCATE <i>name</i> LIKE <i>name2</i> <i>parm</i></code>, in which <var class="term">parm</var> is not the word <code>WITH</code>. In this case, <var class="term">token0</var> is substituted with "<code>WITH</code> in the message you see. </li>
<li><code>ALLOCATE <i>name</i> LIKE <i>name2</i> <i>parm</i></code>, in which <var class="term">parm</var> is not the word <code>WITH</code>. In this case, <var class="term">token</var> is substituted with "<code>WITH</code> in the message you see. </li>


<li><code>ALLOCATE <i>name</i> <i>dsname</i> <i>parm</i></code>, in which <code>ALLOCATE <i>name</i> <i>dsname</i></code> is an obsolete form of the <var>ALLOCATE</var> command. The only arguments allowed are <var class="term">name</var> and <var class="term">dsname</var>. <var class="term">parm</var> is invalid. In this case, <var class="term">token0</var> is substituted with <code>WITH</code> or with <code>LIKE</code> in the message you see. </li>
<li><code>ALLOCATE <i>name</i> <i>dsname</i> <i>parm</i></code>, in which <code>ALLOCATE <i>name</i> <i>dsname</i></code> is an obsolete form of the <var>ALLOCATE</var> command. The only arguments allowed are <var class="term">name</var> and <var class="term">dsname</var>. <var class="term">parm</var> is invalid. In this case, <var class="term">token</var> is substituted with <code>WITH</code> or with <code>LIKE</code> in the message you see. </li>
</ul>
</ul>
<p>
<p>

Latest revision as of 17:24, 26 March 2018

M204.1068  token

You issued one of the following forms of the ALLOCATE command:

  • ALLOCATE name LIKE name2 parm, in which parm is not the word WITH. In this case, token is substituted with "WITH in the message you see.
  • ALLOCATE name dsname parm, in which ALLOCATE name dsname is an obsolete form of the ALLOCATE command. The only arguments allowed are name and dsname. parm is invalid. In this case, token is substituted with WITH or with LIKE in the message you see.

Response: Correct the command syntax, and retry.

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