M204.1065: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
m (remove 0 from token0)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Template:M204.1065 skeleton}}
{{Template:M204.1065 skeleton}}
<P>
<P>
An ALLOCATE, USE <var class="term">name</var>, USE PRINTER, USE PUNCH, or DEFINE (except for DEFINE FIELD) command failed due to one of the following reasons: </P>
An <var>ALLOCATE</var>, <var>USE</var> <var class="term">name</var>, <var>USE PRINTER</var>, <var>USE PUNCH</var>, or <var>DEFINE</var> (except for <var>DEFINE FIELD</var>) command failed due to one of the following reasons: </P>
<ul>
<ul>
<li>You issued <code>ALLOCATE <i>name</i></code> with no other parameters, but <var class="term">name</var> has not been previously defined using a <var>DEFINE DATASET</var> command. </li>
<li>You issued <code>ALLOCATE <i>token</i></code> with no other parameters, but <var class="term">token</var> was not previously defined using a <var>DEFINE DATASET</var> command. </li>


<li>You issued <code>ALLOCATE <i>name</i> LIKE <i>name2</i></code>, but <var class="term">name2</var> was not previously defined using a <var>DEFINE DATASET</var> or <var>ALLOCATE</var> command. In this case, <var class="term">name2</var> is displayed in the message. </li>
<li>You issued <code>ALLOCATE <i>name</i> LIKE <i>token</i></code>, but <var class="term">token</var> was not previously defined using a <var>DEFINE DATASET</var> or <var>ALLOCATE</var> command. <var class="term">token</var> is displayed in the message. </li>


<li>You issued a <code>DEFINE DATASET/PRINTER/PROCESS/PUNCH/STREAM <i>name</i> LIKE <i>name2</i></code> command, but <var class="term">name2</var> was not previously defined with the <var>DEFINE</var> command. In this case, <var class="term">name2</var> is substituted in the message. </li>
<li>You issued a <code>DEFINE DATASET/PRINTER/PROCESS/PUNCH/STREAM <i>name</i> LIKE <i>token</i></code> command, but <var class="term">token</var> was not previously defined with the <var>DEFINE</var> command. <var class="term">token</var> is substituted in the message. </li>


<li>You issued <code>USE <i>name</i>, USE PRINTER <i>name</i></code>, or <code>USE PUNCH <i>name</i></code>, but <var class="term">name</var> does not exist. </li>
<li>You issued <code>USE <i>token</i>, USE PRINTER <i>token</i></code>, or <code>USE PUNCH <i>token</i></code>, but <var class="term">token</var> does not exist. </li>
</ul>
</ul>
<p>
<p>
<b>Response:</b> Verify that <var class="term">name</var> or <var class="term">name2</var> are correctly defined, and retry the command.  
<b>Response:</b> Verify that <var class="term">name</var> or <var class="term">token</var> are correctly defined, and retry the command.  
</p>
</p>
{{Template:M204.1065 footer}}
{{Template:M204.1065 footer}}
<!-- skeleton as it was in pdf/%C WAS NOT PREVIOUSLY DEFINED /-->
<!-- skeleton as it was in pdf/%C WAS NOT PREVIOUSLY DEFINED /-->

Latest revision as of 17:22, 26 March 2018

M204.1065  token was not previously defined

An ALLOCATE, USE name, USE PRINTER, USE PUNCH, or DEFINE (except for DEFINE FIELD) command failed due to one of the following reasons:

  • You issued ALLOCATE token with no other parameters, but token was not previously defined using a DEFINE DATASET command.
  • You issued ALLOCATE name LIKE token, but token was not previously defined using a DEFINE DATASET or ALLOCATE command. token is displayed in the message.
  • You issued a DEFINE DATASET/PRINTER/PROCESS/PUNCH/STREAM name LIKE token command, but token was not previously defined with the DEFINE command. token is substituted in the message.
  • You issued USE token, USE PRINTER token, or USE PUNCH token, but token does not exist.

Response: Verify that name or token are correctly defined, and retry the command.

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