M204.1065

From m204wiki
Revision as of 20:00, 2 March 2018 by JAL (talk | contribs) (add <var>'s)
Jump to navigation Jump to search

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 token0 with no other parameters, but token0 was not previously defined using a DEFINE DATASET command.
  • You issued ALLOCATE name LIKE token0, but token0 was not previously defined using a DEFINE DATASET or ALLOCATE command. token0 is displayed in the message.
  • You issued a DEFINE DATASET/PRINTER/PROCESS/PUNCH/STREAM name LIKE token0 command, but token0 was not previously defined with the DEFINE command. token0 is substituted in the message.
  • You issued USE token0, USE PRINTER token0, or USE PUNCH token0, but token0 does not exist.

Response: Verify that name or token0 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