M204.2575: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (add <var>'s)
No edit summary
 
Line 5: Line 5:
<li>"<var class="term">filename</var> must be STOPPED"
<li>"<var class="term">filename</var> must be STOPPED"
<p>
<p>
Access to the named file must be temporarily disabled by the system manager prior to the <var>RENAME</var> command. Users who already have the file open will not be affected by the stop, but no new opens will be allowed.</P>
Access to the named file must be temporarily disabled by the system manager prior to the <var>[[RENAME FILE command|RENAME]]</var> command. Users who already have the file open will not be affected by the stop, but no new opens will be allowed.</P>
<p>
<p>
<b>Response:</b> Contact your system manager.</p></li>
<b>Response:</b> Contact your system manager.</p></li>
Line 11: Line 11:
<li>"<var class="term">filename</var> is member of group <var class="term">groupname</var>"
<li>"<var class="term">filename</var> is member of group <var class="term">groupname</var>"
<P>
<P>
The renamed file must not be a member of any open group"</P>
The renamed file must not be a member of any open group.</P>
<p><b>Response:</b> Close all appropriate open groups, and redefine them.</p></li>
<p><b>Response:</b> Close all appropriate open groups, and redefine them.</p></li>


Line 18: Line 18:
The renamed file must not be specified with <code>FRCVOPT=256</code>. A file rename creates a discontinuity, and <var>FRCVOPT</var> disallows them.</P>
The renamed file must not be specified with <code>FRCVOPT=256</code>. A file rename creates a discontinuity, and <var>FRCVOPT</var> disallows them.</P>
<p>
<p>
<b>Response:</b> Reset <var>FRCVOPT</var> to remove the disallowed discontinuity option.</p></li>
<b>Response:</b> Reset <var>[[FRCVOPT parameter|FRCVOPT]]</var> to remove the disallowed discontinuity option.</p></li>


<li>"active procedure inside renamed file <var class="term">filename</var>"
<li>"active procedure inside renamed file <var class="term">filename</var>"

Latest revision as of 00:30, 28 March 2018

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