74 lines
3.9 KiB
HTML
74 lines
3.9 KiB
HTML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!DOCTYPE html
|
||
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
<html lang="en-us" xml:lang="en-us">
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<meta name="security" content="public" />
|
||
|
<meta name="Robots" content="index,follow" />
|
||
|
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
|
||
|
<meta name="DC.Type" content="task" />
|
||
|
<meta name="DC.Title" content="Example: Create a command" />
|
||
|
<meta name="abstract" content="This example shows how to create a command to allow the system operator to call a program to start the system." />
|
||
|
<meta name="description" content="This example shows how to create a command to allow the system operator to call a program to start the system." />
|
||
|
<meta name="DC.subject" content="example, creating, command" />
|
||
|
<meta name="keywords" content="example, creating, command" />
|
||
|
<meta name="DC.Relation" scheme="URI" content="ovhdc.htm" />
|
||
|
<meta name="DC.Relation" scheme="URI" content="../cl/crtbndcl.htm" />
|
||
|
<meta name="copyright" content="(C) Copyright IBM Corporation 1998, 2006" />
|
||
|
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 1998, 2006" />
|
||
|
<meta name="DC.Format" content="XHTML" />
|
||
|
<meta name="DC.Identifier" content="crtcmdex" />
|
||
|
<meta name="DC.Language" content="en-us" />
|
||
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
||
|
<!-- US Government Users Restricted Rights -->
|
||
|
<!-- Use, duplication or disclosure restricted by -->
|
||
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
||
|
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
|
||
|
<link rel="stylesheet" type="text/css" href="./ic.css" />
|
||
|
<title>Example: Create a command</title>
|
||
|
</head>
|
||
|
<body id="crtcmdex"><a name="crtcmdex"><!-- --></a>
|
||
|
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
|
||
|
<h1 class="topictitle1">Example: Create a command</h1>
|
||
|
<div><p>This example shows how to create a command to allow the system
|
||
|
operator to call a program to start the system.</p>
|
||
|
<div class="section"> <p>This example assumes you are using IBM-supplied source files.
|
||
|
Do the following. </p>
|
||
|
<ol><li>Enter the command definition source statement into the source file QCMDSRC
|
||
|
using the member name of STARTUP. <pre>CMD PROMPT('S Command for STARTUP')</pre>
|
||
|
</li>
|
||
|
<li>Create the command by entering the following command. <pre>CRTCMD CMD(S) PGM(STARTUP) SRCMBR(STARTUP)</pre>
|
||
|
</li>
|
||
|
<li>Enter the source statements for the STARTUP program (the command processing
|
||
|
program). <pre>PGM
|
||
|
STRSBS QINTER
|
||
|
STRSBS QBATCH
|
||
|
STRSBS QSPL
|
||
|
STRPRTWTR DEV(QSYSPRT) OUTQ(QPRINT) WTR(WTR)
|
||
|
STRPRTWTR DEV(WSPR2) OUTQ(WSPRINT) WTR(WTR2)
|
||
|
SNDPGMMSG MSG('STARTUP procedure completed') MSGTYPE(*COMP)
|
||
|
ENDPGM</pre>
|
||
|
</li>
|
||
|
<li>Create the program using the Create Bound CL Program (CRTBNDCL) command.
|
||
|
<pre>CRTBNDCL STARTUP</pre>
|
||
|
</li>
|
||
|
</ol>
|
||
|
<p>In the previous example, S is the name of the new command
|
||
|
(specified by the CMD parameter). STARTUP is the name of the command processing
|
||
|
program (specified by the PGM parameter) and also the name of the source member
|
||
|
that contains the command definition statement (specified by the SRCMBR parameter).
|
||
|
Now the system operator can either enter <samp class="codeph">S</samp> to call the command
|
||
|
or <samp class="codeph">CALL STARTUP</samp> to call the command processing program.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div>
|
||
|
<div class="familylinks">
|
||
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="ovhdc.htm" title="This shows how a command is created.">Command definition process</a></div>
|
||
|
</div>
|
||
|
<div class="relinfo"><strong>Related information</strong><br />
|
||
|
<div><a href="../cl/crtbndcl.htm">Create Bound CL Program (CRTBNDCL) command</a></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|