M204.2575

From m204wiki
Revision as of 00:30, 28 March 2018 by ELowell (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

M204.2575  RENAME rejected​,​ token token2 token3

These optional message endings explain why the command was rejected; the portion of the message after the word rejected will be one of the following:

  • "filename must be STOPPED"

    Access to the named file must be temporarily disabled by the system manager prior to the RENAME command. Users who already have the file open will not be affected by the stop, but no new opens will be allowed.

    Response: Contact your system manager.

  • "filename is member of group groupname"

    The renamed file must not be a member of any open group.

    Response: Close all appropriate open groups, and redefine them.

  • "filename created with FRCVOPT=256"

    The renamed file must not be specified with FRCVOPT=256. A file rename creates a discontinuity, and FRCVOPT disallows them.

    Response: Reset FRCVOPT to remove the disallowed discontinuity option.

  • "active procedure inside renamed file filename"

    The RENAME command must not be issued from an active procedure that is included in the file being renamed.

    Response: Remove the procedure from the file being renamed, and execute again.

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