301 lines
11 KiB
HTML
301 lines
11 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta name="Copyright" content="Copyright (c) 2004 by IBM Corporation" />
|
|
<!-- 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. -->
|
|
<title>CL command finder</title>
|
|
<link rel="stylesheet" type="text/css" href="finder.css" />
|
|
<link rel="stylesheet" type="text/css" href="ic.css" />
|
|
|
|
<script language="Javascript" type="text/javascript">
|
|
var alert_string_1 = "Select a CL command category and press Go.";
|
|
var alert_string_2 = "Enter a search term and press Go.";
|
|
//START NON-TRANSLATABLE
|
|
|
|
var lang;
|
|
var param_array = window.location.search.split("lang=")[1];
|
|
if (param_array.length > 1)
|
|
{
|
|
var p_array = param_array.split("&");
|
|
lang = p_array[0];
|
|
// alert("lang="+lang);
|
|
}
|
|
else
|
|
lang = "en";
|
|
|
|
function openCatLink(url)
|
|
{
|
|
var url_low = url.toLowerCase();
|
|
var topic_string = "/help/topic/rbam6/";
|
|
|
|
if (url_low.indexOf("http://") == 0 ||
|
|
url_low.indexOf("https://") == 0 ||
|
|
url_low.indexOf("file://") == 0 ||
|
|
url_low.indexOf("ftp://") == 0 )
|
|
{
|
|
window.open(url, 'pdf_window');
|
|
}
|
|
else if ( url_low.lastIndexOf('.pdf') == url.length-4)
|
|
{
|
|
window.open(topic_string+url, 'pdf_window');
|
|
}
|
|
else
|
|
{
|
|
window.location.replace(topic_string+url);
|
|
}
|
|
}
|
|
|
|
function openLink(url)
|
|
{
|
|
var url_low = url.toLowerCase();
|
|
var topic_string = "/help/topic/cl/";
|
|
|
|
if (url_low.indexOf("http://") == 0 ||
|
|
url_low.indexOf("https://") == 0 ||
|
|
url_low.indexOf("file://") == 0 ||
|
|
url_low.indexOf("ftp://") == 0 )
|
|
{
|
|
window.open(url, 'pdf_window');
|
|
}
|
|
else if ( url_low.lastIndexOf('.pdf') == url.length-4)
|
|
{
|
|
window.open(topic_string+url, 'pdf_window');
|
|
}
|
|
else
|
|
{
|
|
window.location.replace(topic_string+url);
|
|
}
|
|
}
|
|
|
|
function goCategory()
|
|
{
|
|
// alert("goCategory() called");
|
|
var catpage = "back1.htm";
|
|
catpage = document.category.catfind.value;
|
|
openCatLink(catpage);
|
|
}
|
|
|
|
function goSearch()
|
|
{
|
|
//alert("goSearch() called");
|
|
document.form_1.query.value = document.form_1.queryEntry.value;
|
|
document.form_1.lang.value = lang;
|
|
document.form_1.table_name.value = "table";
|
|
document.form_1.sort_column.value = "description";
|
|
document.form_1.sort_type.value = "ascending";
|
|
document.form_1.field.value = "_all";
|
|
|
|
if (document.form_1.search_type_1[0].checked)
|
|
document.form_1.search_type.value = "and";
|
|
else
|
|
document.form_1.search_type.value = "or";
|
|
if (document.form_1.queryEntry.value == null || document.form_1.queryEntry.value == "") {
|
|
alert(alert_string_2);
|
|
return false;
|
|
} else {
|
|
|
|
//Default query is for all fields. Construct query filter to thin results to clname and description fields
|
|
//Split up search string by spaces
|
|
document.form_1.query_filter.value = ""; //reset field to empty
|
|
var inputString = "";
|
|
inputString = document.form_1.queryEntry.value.split(" ");
|
|
for (var a=0; a < inputString.length; a++) {
|
|
if (document.form_1.search_type_1[0].checked) { //and search
|
|
document.form_1.query_filter.value += " AND ";
|
|
document.form_1.query_filter.value += "(clname:z*" + inputString[a] + "* OR description:z*" + inputString[a] + "*)";
|
|
} else { //or search
|
|
if (a != 0) //not first value
|
|
document.form_1.query_filter.value += " ";
|
|
else
|
|
document.form_1.query_filter.value += " AND (";
|
|
document.form_1.query_filter.value += "clname:z*" + inputString[a] + "* description:z*" + inputString[a] + "*";
|
|
}
|
|
}
|
|
if (document.form_1.search_type_1[1].checked) { //or search
|
|
document.form_1.query_filter.value += ")";
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
function goAlpha()
|
|
{
|
|
if (document.form_2.showall[0].checked)
|
|
{
|
|
document.form_1.lang.value = lang;
|
|
document.form_1.query.value = "a";
|
|
document.form_1.table_name.value = "list_1";
|
|
document.form_1.query_filter.value = "";
|
|
document.form_1.search_type.value = "keyword";
|
|
document.form_1.sort_column.value = "description";
|
|
document.form_1.sort_type.value = "ascending";
|
|
document.form_1.field.value = "description";
|
|
document.form_1.submit();
|
|
}
|
|
else if (document.form_2.showall[1].checked)
|
|
{
|
|
document.form_1.lang.value = lang;
|
|
document.form_1.query.value = "a";
|
|
document.form_1.table_name.value = "list_2";
|
|
document.form_1.query_filter.value = "";
|
|
document.form_1.search_type.value = "keyword";
|
|
document.form_1.sort_column.value = "clname";
|
|
document.form_1.sort_type.value = "ascending";
|
|
document.form_1.field.value = "clname";
|
|
document.form_1.submit();
|
|
}
|
|
else if (document.form_2.showall[2].checked)
|
|
{
|
|
document.form_1.lang.value = lang;
|
|
document.form_1.query.value = "new";
|
|
document.form_1.table_name.value = "table";
|
|
document.form_1.query_filter.value = "";
|
|
document.form_1.search_type.value = "and";
|
|
document.form_1.sort_column.value = "description";
|
|
document.form_1.sort_type.value = "ascending";
|
|
document.form_1.field.value = "changestatus";
|
|
document.form_1.submit();
|
|
}
|
|
else if (document.form_2.showall[3].checked)
|
|
{
|
|
document.form_1.lang.value = lang;
|
|
document.form_1.query.value = "updated";
|
|
document.form_1.table_name.value = "table";
|
|
document.form_1.query_filter.value = "";
|
|
document.form_1.search_type.value = "and";
|
|
document.form_1.sort_column.value = "description";
|
|
document.form_1.sort_type.value = "ascending";
|
|
document.form_1.field.value = "changestatus";
|
|
document.form_1.submit();
|
|
}
|
|
}
|
|
|
|
//END NON-TRANSLATABLE
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h2>CL command finder</h2>
|
|
|
|
<noscript><p><strong>Important:</strong> This finder uses JavaScript<sup>(TM)</sup>, but JavaScript is either not available or enabled in your browser.
|
|
If you do not have access to a browser that supports JavaScript,
|
|
you can still view CL information through the <a href="../clfinder/name_finder.htm">alphabetic listing</a>.
|
|
</p>
|
|
</noscript>
|
|
|
|
<p>Use the CL command finder to find information about control language commands.
|
|
(See <a href="#note">note</a>.)
|
|
You can find commands by product or by name.</p>
|
|
|
|
<form name="category">
|
|
<table cellspacing="0" cellpadding="4" border="0" WIDTH="85%" ALIGN="CENTER">
|
|
<tr>
|
|
<td colspan="2" class="finderbar"><font size="+1"><strong>Find by category</strong></font></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><label for="catfind">Select a category of CL commands.</label></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="15%"><br /><br /></td>
|
|
<td>
|
|
<select name="catfind" SIZE="1" id="catfind">
|
|
<option VALUE="blank"></option>
|
|
<option value="JS1.htm">Advanced Job Scheduler for iSeries<sup>(TM)</sup></option>
|
|
<option value="AF1.htm">AFP<sup>(TM)</sup> Utilities for iSeries</option>
|
|
<option value="BR1.htm">Backup Recovery and Media Services for iSeries</option>
|
|
<option value="DS1.htm">Business Graphics Utility for AS/400<sup>(R)</sup></option>
|
|
<option value="DFH.htm">CICS<sup>(R)</sup> Transaction Server for iSeries</option>
|
|
<option value="CM1.htm">Communications Utilities for iSeries</option>
|
|
<option value="RD1.htm">Content Manager OnDemand for iSeries</option>
|
|
<option value="CR1.htm">Cryptographic Support for AS/400</option>
|
|
<option value="DP4.htm">DB2<sup>(R)</sup> DataPropagator for iSeries, V8.1</option>
|
|
<option value="ST1.htm">DB2 Query Manager and SQL Development Kit for iSeries</option>
|
|
<option value="JV1.htm">Developer Kit for Java<sup>(TM)</sup></option>
|
|
<option value="DG1.htm">HTTP Server for iSeries</option>
|
|
<option value="IP1.htm">Infoprint<sup>(R)</sup> Server for iSeries</option>
|
|
<option value="XH2.htm">iSeries Access for Web</option>
|
|
<option value="MG1.htm">Managed System Services for iSeries</option>
|
|
<option value="SS1.htm">i5/OS<sup>(R)</sup></option>
|
|
<option value="PT1.htm">Performance Tools for iSeries</option>
|
|
<option value="QU1.htm">Query for iSeries</option>
|
|
<option value="SM1.htm">System Manager for iSeries</option>
|
|
<option value="TC1.htm">TCP/IP Connectivity Utilities for iSeries</option>
|
|
<option value="WDS.htm">WebSphere<sup>(R)</sup> Development Studio</option>
|
|
</select>
|
|
<input type="button" name="Go" value="Go" onclick="goCategory()" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
<br />
|
|
<form name="form_1" method="GET" action="InteractiveTableManager" onSubmit=" return goSearch()">
|
|
<table cellspacing="0" cellpadding="4" border="0" WIDTH="85%" align="CENTER">
|
|
<tr>
|
|
<td colspan="2" class="finderbar"><font size="+1"><strong>Find by name</strong></font></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><label for="searchwords">Find by CL descriptive name, by CL name, or by part of the name.</label></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="15%"><br /><br /></td>
|
|
<td><font size="-1">Example: Enter <em>convert date</em>, <em>CVTDAT</em>, or just <em>DAT</em>.</font><br />
|
|
<input type=text name="queryEntry" />
|
|
<input type=hidden name="query" />
|
|
<input type=hidden name="lang" value="" />
|
|
<input type=hidden name="table_name" value="table" />
|
|
<input type=hidden name="function" value="search" />
|
|
<input type=hidden name="query_filter" value="" />
|
|
<input type=hidden name="search_type" value="" />
|
|
<input type=hidden name="sort_type" value="ascending" />
|
|
<input type=hidden name="sort_column" value="description" />
|
|
<input type=hidden name="field" value="_all" />
|
|
<br /><br /><font size="-1">Show results containing:
|
|
<input type="radio" name="search_type_1" value="and" checked id="and" /><label for="allwords1">All words</label>
|
|
<input type="radio" name="search_type_1" value="or" id="or" /><label for="anywords1">Any words</label>
|
|
<input type="submit" name="Go" value="Go" /></font>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<br />
|
|
|
|
<form name="form_2">
|
|
<table cellspacing="0" cellpadding="4" border="0" width="85%" align="CENTER">
|
|
<tr>
|
|
<td colspan="2" class="finderbar"><font size="+1"><strong>Find by group</strong></font></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="15%"><br /><br /></td>
|
|
<td>
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<input type="radio" name="showall" value="desc" checked id="rad1" /><label for="rad1">All commands by descriptive name</label><br />
|
|
<input type="radio" name="showall" value="name" id="rad2" /><label for="rad2">All comands by command name</label><br />
|
|
<input type="radio" name="showall" value="new" id="rad3" /><label for="rad3">All new commands</label><br />
|
|
<input type="radio" name="showall" value="changed" id="rad4" /><label for="rad4">All changed commands</label><br />
|
|
</td>
|
|
<td valign="center"> <input type="button" value="Go" onclick="goAlpha()" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</form>
|
|
|
|
|
|
<br />
|
|
<p><a name="note"><strong>Note:</strong></a>
|
|
Not all CL commands that can be used on iSeries servers are available using this finder.
|
|
<br /><br /></p>
|
|
</body>
|
|
</html>
|
|
|