RESET command: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
 
Line 32: Line 32:
OUTLPP 50  OUTPUT LINES PER PAGE
OUTLPP 50  OUTPUT LINES PER PAGE
PGSEP  3    LINES BETWEEN PAGES
PGSEP  3    LINES BETWEEN PAGES
</p>
==Summary==
<dl>
<dt>Privileges
<dd>Dependent upon parameters to be reset
<dt>Function
<dd>Modifies the settings of one or more <var class="product">Model&nbsp;204</var> parameters
</dl>
==Syntax==
<b>R</b>ESET <i>parameter=value</i> [,<i>parameter=value</i>]...
<b>Where:</b>
<table>
<tr>
<th>parameter</th>
<td> is a <var class="product">Model&nbsp;204</var> parameter.</td>
</tr>
<tr>
<th>value</th>
<td> is the new value of the parameter; this can be specified in various formats, as discussed in [["??"]] Part 1.
<p>
For a numeric parameter, starting with version 7.5 of <var class="product">Model 204</var>, you can specify <var class="term">value</var> [[Relative values for Model 204 numeric parameters|relative]] to the current value of the parameter.</p></td>
</tr>
</table>
===Syntax notes===
The equal sign and the comma are optional.
==Example==
<p class="code"><b>RESET ERMX=50 SUB=4</b>
ERMX  50        Maximum number of errors
SUB    X'04'    Substitution control
</p>
</p>
==Usage notes==
==Usage notes==
<p>The RESET command changes the settings of any number of <var class="product">Model&nbsp;204</var> parameters. The type of parameters that can be set (for example, system parameters, file parameters) depends upon the privileges of the user who issues the command. The value of a parameter can be specified in different formats. Parameters are discussed in detail in Part 1. </p>
<p>The RESET command changes the settings of any number of <var class="product">Model&nbsp;204</var> parameters. The type of parameters that can be set (for example, system parameters, file parameters) depends upon the privileges of the user who issues the command.</p>
<p>RESET is often used in conjunction with the VIEW command. You can VIEW parameter settings and then decide to change them. For example: </p>
<p>RESET is often used in conjunction with the VIEW command. You can VIEW parameter settings and then decide to change them. For example: </p>
<p class="code"><b>VIEW ERMX,ERASE</b>
<p class="code"><b>VIEW ERMX,ERASE</b>
ERMX 50       MAXIMUM NUMBER OF ERRORS
ERMX   50       Maximum number of errors
ERASE @  X'7C' ERASE-CHARACTER SYMBOL
ERASE @  X'7C' Erase-character symbol
<b>RESET ERMX=40, ERASE=96</b>  
<b>RESET ERMX=40, ERASE=96</b>
ERMX 40 MAXIMUM NUMBER OF ERRORS
ERMX   40       Maximum number of errors
ERASE -  X'60' ERASE-CHARACTER SYMBOL
ERASE -  X'60' Erase-character symbol
</p>
</p>
<p>If no parameters are specified in the RESET command, <var class="product">Model&nbsp;204</var> prompts for them, as shown above.</p>
<p>If no parameters are specified in the RESET command, <var class="product">Model&nbsp;204</var> prompts for them, as shown in the following example:</p>
<p class="code"><nowiki>RESET
***  M204.1119: READING PARAMETERS
OUTLPP=50, PGSEP=3
OUTLPP 50        Output lines per page
PGSEP  3        Lines between pages
</nowiki></p>
<p>If you specify a nonexistent parameter or attempt to reset a parameter that is not resettable, <var class="product">Model&nbsp;204</var> responds with the message: </p>
<p>If you specify a nonexistent parameter or attempt to reset a parameter that is not resettable, <var class="product">Model&nbsp;204</var> responds with the message: </p>
<p class="code">*** M204.1123: PARAMETER NOT RESET = parameter
<p class="code">*** M204.1123: PARAMETER NOT RESET = parameter
</p>
</p>
<p>You cannot use RESET to set bits that are currently undefined by Rocket Software (see the parameter descriptions of [[FISTAT parameter|"FISTAT: Current file status"]], [[FOPT parameter|"FOPT: File options"]], and [[OPENCTL parameter|"OPENCTL: Password option during file open"]]).</p>
<p>You cannot use RESET to set bits that are currently undefined by Rocket Software (see the parameter descriptions of [[FISTAT parameter|"FISTAT: Current file status"]], [[FOPT parameter|"FOPT: File options"]], and [[OPENCTL parameter|"OPENCTL: Password option during file open"]]).</p>
<p>For example, in an Online where the Date Time Stamp feature is not installed if a System Manager issues a RESET DTS command, the following message is displayed: </p>
<p>For example, in an Online where the Date Time Stamp feature is not installed, if a system manager issues a <code>RESET DTS</code> command, the following message is displayed: </p>
<p class="code">RESET DTS 0
<p class="code">RESET DTS 0
<b></b>***  M204.2740: INVALID PARAMETER DTS: DATE TIME STAMP SUPPORT NOT LINKED IN
<b></b>***  M204.2740: INVALID PARAMETER DTS: DATE TIME STAMP SUPPORT NOT LINKED IN
DTS       1           DATE TIME STAMP UPDATES (1=AUTOMATIC, 0=BYPASSED)
DTS   1         Date time stamp updates (1=automatic, 0=bypassed)
</p>
</p>
<p>When it processes RESET, <var class="product">Model&nbsp;204</var> ends any current User Language update unit and begins a non-backoutable update unit. If a <var class="product">Model&nbsp;204</var> command non-backoutable update unit is in progress, RESET is included in that update unit. For more information about <var class="product">Model&nbsp;204</var> update units, see the <var>Model&nbsp;204 File Manager's Guide.</var></p>
<p>When it processes RESET, <var class="product">Model&nbsp;204</var> ends any current User Language update unit and begins a non-backoutable update unit. If a <var class="product">Model&nbsp;204</var> command non-backoutable update unit is in progress, RESET is included in that update unit. For more information about <var class="product">Model&nbsp;204</var> update units, see the <var>Model&nbsp;204 File Manager's Guide.</var></p>
[[Category:Commands]]
[[Category:Commands]]

Revision as of 21:12, 8 June 2013

Summary

Privileges
Dependent upon parameters to be reset
Function
Modifies the settings of one or more Model 204 parameters

Syntax

RESET parameter=value [,parameter=value]...

Where:

parameter is a Model 204 parameter.
value is the new value of the parameter.

Syntax notes

The equal sign and the comma are optional.

Example

RESET ERMX=50 ERMX 50 MAXIMUM NUMBER OF ERRORS RESET *** M204.1119: READING PARAMETERS OUTLPP=50, PGSEP=3 OUTLPP 50 OUTPUT LINES PER PAGE PGSEP 3 LINES BETWEEN PAGES

Summary

Privileges
Dependent upon parameters to be reset
Function
Modifies the settings of one or more Model 204 parameters

Syntax

RESET parameter=value [,parameter=value]...

Where:

parameter is a Model 204 parameter.
value is the new value of the parameter; this can be specified in various formats, as discussed in "??" Part 1.

For a numeric parameter, starting with version 7.5 of Model 204, you can specify value relative to the current value of the parameter.

Syntax notes

The equal sign and the comma are optional.

Example

RESET ERMX=50 SUB=4 ERMX 50 Maximum number of errors SUB X'04' Substitution control

Usage notes

The RESET command changes the settings of any number of Model 204 parameters. The type of parameters that can be set (for example, system parameters, file parameters) depends upon the privileges of the user who issues the command.

RESET is often used in conjunction with the VIEW command. You can VIEW parameter settings and then decide to change them. For example:

VIEW ERMX,ERASE ERMX 50 Maximum number of errors ERASE @ X'7C' Erase-character symbol RESET ERMX=40, ERASE=96 ERMX 40 Maximum number of errors ERASE - X'60' Erase-character symbol

If no parameters are specified in the RESET command, Model 204 prompts for them, as shown in the following example:

RESET *** M204.1119: READING PARAMETERS OUTLPP=50, PGSEP=3 OUTLPP 50 Output lines per page PGSEP 3 Lines between pages

If you specify a nonexistent parameter or attempt to reset a parameter that is not resettable, Model 204 responds with the message:

*** M204.1123: PARAMETER NOT RESET = parameter

You cannot use RESET to set bits that are currently undefined by Rocket Software (see the parameter descriptions of "FISTAT: Current file status", "FOPT: File options", and "OPENCTL: Password option during file open").

For example, in an Online where the Date Time Stamp feature is not installed, if a system manager issues a RESET DTS command, the following message is displayed:

RESET DTS 0 *** M204.2740: INVALID PARAMETER DTS: DATE TIME STAMP SUPPORT NOT LINKED IN DTS 1 Date time stamp updates (1=automatic, 0=bypassed)

When it processes RESET, Model 204 ends any current User Language update unit and begins a non-backoutable update unit. If a Model 204 command non-backoutable update unit is in progress, RESET is included in that update unit. For more information about Model 204 update units, see the Model 204 File Manager's Guide.