Guide to Using Templates. Platform Process Manager Version 7 January 2008
|
|
|
- Edward Goodwin
- 10 years ago
- Views:
Transcription
1 Guide to Using Templates Platform Process Manager Version 7 January 2008
2 Copyright Platform Computing Corporation All rights reserved. Although the information in this document has been carefully reviewed, Platform Computing Corporation ( Platform ) does not warrant it to be free of errors or omissions. Platform reserves the right to make corrections, updates, revisions or changes to the information in this document. UNLESS OTHERWISE EXPRESSLY STATED BY PLATFORM, THE PROGRAM DESCRIBED IN THIS DOCUMENT IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL PLATFORM COMPUTING BE LIABLE TO ANYONE FOR SPECIAL, COLLATERAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING WITHOUT LIMITATION ANY LOST PROFITS, DATA, OR SAVINGS, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS PROGRAM. We d like to hear from you You can help us make this document better by telling us what you think of the content, organization, and usefulness of the information. If you find an error, or just want to make a suggestion for improving this document, please address your comments to [email protected]. Your comments should pertain only to Platform documentation. For product support, contact [email protected]. Document redistribution and translation This document is protected by copyright and you may not redistribute or translate it into another language, in part or in whole. Internal redistribution You may only redistribute this document internally within your organization (for example, on an intranet) provided that you continue to check the Platform Web site for updates and update your version of the documentation. You may not make it available to your organization over the Internet. Trademarks LSF is a registered trademark of Platform Computing Corporation in the United States and in other jurisdictions. ACCELERATING INTELLIGENCE, PLATFORM COMPUTING, PLATFORM SYMPHONY, PLATFORM JOBSCHEDULER, PLATFORM ENTERPRISE GRID ORCHESTRATOR, PLATFORM EGO, and the PLATFORM and PLATFORM LSF logos are trademarks of Platform Computing Corporation in the United States and in other jurisdictions. UNIX is a registered trademark of The Open Group in the United States and in other jurisdictions. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries. Microsoft is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Windows is a registered trademark of Microsoft Corporation in the United States and other countries. Intel, Itanium, and Pentium are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries. Other products or services mentioned in this document are identified by the trademarks or service marks of their respective owners. Third-party license agreements Third-party copyright notices
3 Contents 1 Working with Templates... 5 Job Template DTD Template Components and Format... 7 JobTemplate element... 8 Execution element... 9 Submission element Param element Choice element Help element Using the z/os Template Define a z/os job from the Flow Editor Exit codes Create a template Execution Types Reserved parameter names LSF execution type z/os execution type Oracle execution type Execution Parameters CoreSizeLimit CPUTimeLimit DataSizeLimit ExclusiveExec FileSizeLimit FileTransfer Hold HostDependent HostSelect JobPriority LoginShell MailDestination MailWhenFinish MailWhenStart MinMaxCPU Guide to Using Templates 3
4 4 Guide to Using Templates PeakMemLimit PeakSwapLimit ProjectName QueueSelect Rerunable ResReqStr RunTimeLimit StackSizeLimit Stdin Stdout Stderr SubmissionCmd UserGroup UserName UserPreExecCmd... 59
5 C H A P T E R 1 Working with Templates LSF templates extend the functionality of LSF to allow you to: Use LSF to submit work to other applications outside of LSF without intensive programming Create a customized user interface for LSF users by pre-configuring the execution environment LSF templates are XML documents that define the properties of a job and the options required to configure and run the job. A properly coded LSF template produces a property editor, which is a simplistic user interface that allows the user to visually configure the job. The Flow Editor constructs the property editor from the Job Template Definition file at runtime. The Job Template Definition follows well-known XML schema. Each definition is registered with the Flow Editor, at which point it can be used as part of a flow. The user configures the job by setting properties and options accessed via the property editor. All information entered into the property editor by the user is kept as part of the flow definition, and is submitted to LSF for execution. Where templates are stored LSF templates must be stored in the templates directory before they can be recognized by Process Manager. When a template is added to the directory, it appears in the list of templates available to the user. Ensure that any completed templates are stored in JS_HOME/work/templates. Tip: Note: If the template directory is to be moved to a different location, the LSF configuration file (js.conf) needs to contain a new parameter, JS_TEMPLATE_DIR, and LSF needs to be reconfigured. Guide to Using Templates 5
6 Working with Templates Job Template DTD The following is the DTD (Document Type Definition) for the job template: <!ELEMENT JobTemplate (Execution Submission Help)*> <!ELEMENT Execution (Param)*> <!ELEMENT Submission (Param)*> <!ELEMENT Param (Choice Help)*> <!ELEMENT Choice EMPTY> <!ELEMENT Help EMPTY> <!ATTLIST JobTemplate Name CDATA #REQUIRED> <!ATTLIST JobTemplate Version CDATA #IMPLIED> <!ATTLIST JobTemplate Icon CDATA #IMPLIED> <!ATTLIST Execution Type (lsf oracle zos) lsf > <!ATTLIST Execution Action CDATA #REQUIRED> <!ATTLIST Param Name CDATA #REQUIRED> <!ATTLIST Param Expr CDATA #IMPLIED> <!ATTLIST Param Caption CDATA #IMPLIED> <!ATTLIST Param Type (STRING INTEGER FLOAT FILE FOLDER PASSWORD) STRING > <!ATTLIST Param Default CDATA #IMPLIED> <!ATTLIST Param Repeatable (True False) False > <!ATTLIST Param Required (True False) True > <!ATTLIST Param Readonly (True False) False > <!ATTLIST Param Hidden (True False) False > <!ATTLIST Param Lookup (True False) False > <!ATTLIST Choice Name CDATA #IMPLIED> <!ATTLIST Choice Value CDATA #REQUIRED> Note: While most values in the DTD are case-sensitive, you can specify True and False in uppercase, lowercase, or mixed case, as shown in this document. 6 Guide to Using Templates
7 C H A P T E R 2 Template Components and Format This section describes the elements that make up the properly constructed XML template document and the attributes and child elements for each element. Guide to Using Templates 7
8 Template Components and Format JobTemplate element The JobTemplate element defines this document as a job template. There can be only one of job template defined in the XML file. The template is defined in the contents between the <JobTemplate> and </JobTemplate> tags. Attributes The JobTemplate element has the following attributes: Name Version Icon Name="template_name Version="version" Icon="file_name" Child elements Specifies the name of the job template. This is the name that is displayed in the list of applications to choose from in the Flow Editor. Specify alphanumeric characters or underscore, and enclose the name in single or double quotes. Specifies the version of the job template. Use this attribute to help you track changes to the template. Specify alphanumeric characters, or period, comma or underscore, and enclose the version in single or double quotes. Specifies the file name of an image to be used as an icon to represent this type of job in the flow. This file must be located in JS_HOME/work/templates, or in the template directory as specified in the LSF configuration file, js.conf. Specify a non-transparent GIF file 32 x 32 pixels and 256 colors. The JobTemplate element has the following child elements: Execution Submission Help 8 Guide to Using Templates
9 Template Components and Format Execution element The Execution element defines a block of execution environment configuration parameters. The execution environment is defined in the contents between the <Execution> and </Execution> tags. Attributes The Execution element has the following attributes: Type Action Type="type" Action="action" Specifies the type of job execution. Currently, the valid values for Type are lsf, oracle, and zos. Specifies the executable or internal shell command that runs the job. For example: "c:\tmp\myexe.exe" or "ls" Child elements The Execution element has the following child element: Param Guide to Using Templates 9
10 Template Components and Format Submission element The Submission element defines one or more parameters that are passed directly to the executable or command specified in Execution.Action. The Submission element has no attributes. Child elements The Submission element has the following child element: Param 10 Guide to Using Templates
11 Template Components and Format Param element The Param element has the following attributes: Name Caption Type Expr Required Default Repeatable Hidden Lookup Readonly Name="parameter_name" Caption="caption" Specifies the name of the parameter. Specify alphanumeric characters or underscore, and ensure the name is unique within the template. Specifies the text that will appear in the user interface for this parameter. If you do not specify a value, the text specified for Name is used. Type="STRING INTEGER FILE FLOAT FOLDER PASSWORD" Specifies the validation rule to apply to user input for this parameter. The values are as follows: Value STRING INTEGER FILE FLOAT FOLDER PASSWORD Description The user must enter a text string. This is the default rule. The user must enter an integer. The range of allowed values will be enforced by the Java runtime The user must enter a file name. The user must enter a number, which may contain a decimal point. The range of allowed values will be enforced by the Java runtime. The user must enter a directory name. The user input is a password. The text is not displayed in the property editor when the user types it. Expr="expression" Specifies the expression that is used to format and encode the user input for this parameter. This expression can contain an internal variable. The variable is replaced with the text the user typed when the template is evaluated. For example, "-d #{VALUE}" Guide to Using Templates 11
12 Template Components and Format Default="default" Required="TRUE FALSE" Repeatable="TRUE FALSE" Readonly="TRUE FALSE" Lookup="TRUE FALSE" Hidden="TRUE FALSE" Child elements The default value is "#{VALUE}", the value as entered by the user. Specifies the default value for this parameter, if one exists. The text provided here is subject to parameter validation. Specifies if this parameter is required. The default is "TRUE". Specifies if this parameter can be specified more than once on the command line. The default is FALSE. Specifies if the user can change the value. Specify Readonly="TRUE" to prevent the user from changing the value. Specify Readonly="FALSE" to allow the user to change the value. The default is FALSE. Specifies if the user can also type directly in the field. Specify Lookup="TRUE" to force the user to select from the list. Specify Lookup="FALSE" to allow the user to select from the list or type directly in the input field. The default is FALSE. Specifies if this parameter is exposed to the user. The default is FALSE. The Param element has the following child element: Choice Help 12 Guide to Using Templates
13 Template Components and Format Choice element The Choice element presents a valid value for the parameter. A parameter may have multiple choices. Attributes The Choice element has the following attributes: Caption Value Caption="caption" Value="value" Specifies the text that will appear in the user interface for this choice. If no value is specified, the caption is derived from the value. Specifies the text that is used by the parameter expression if the user selects this choice. Guide to Using Templates 13
14 Template Components and Format Help element The Help element defines a help string within the context of another element. The Help element is contained between the <Help> and </Help> tags. The Help element has no attributes. 14 Guide to Using Templates
15 C H A P T E R 3 Using the z/os Template The z/os template allows Process Manager users to schedule mainframe jobs from within their Process Manager flows. The z/os template is ready for use; simply ensure that zos_template.xml is located in the JS_HOME/work/ templates directory. About the z/os jobs Process Manager uses the job you define to submit an LSF job (referred to here as a proxy job), which in turn file transfers JCL to the mainframe to run. The job output is captured and file transferred to an output file location you specify. Use the z/os template Ensure zos_template.xml is installed in the user s templates directory JS_HOME/work/templates. You can define a z/os job from the Flow Editor or from the command line. Guide to Using Templates 15
16 Using the z/os Template Define a z/os job from the Flow Editor 1. Click the application icon to put the Flow Editor into application placement mode and select z/os job. The application icon appears in the workspace. 2. Double-click on the application icon to define the job. The Application Definition- Edit Application display appears. 3. On the General tab, fill out the following fields: 1. In the Name field, specify a unique, meaningful name for the job in the flow. 2. Optional: In the Description field, add any descriptive text that may be used for managing this job within the flow. 3. In the z/os host name field, specify the name of the mainframe host to run the job on. 4. In the Login user ID and Password fields respectively, specify a valid user ID and password under which to log into the mainframe host to run the job. 5. In the JCL file field, specify the full path to the JCL to run. This file will be sent to the mainframe host. 6. In the Output file field, specify the full path to the output file to receive the z/os job output. 7. Optional: In the Estimated run time (in minutes) field, you may specify the approximate number of minutes the job is expected to take to run. The default is 1 minute. 8. Optional: In the Check interval (in minutes) field, you may specify the number of minutes to wait in between checking for the job output. The default is 1 minute. 9. Optional: In the Time out (in minutes) field, you may specify the number of minutes to wait before assuming the job failed. The default is 0, or no timeout period. 4. Optional: On the Execution Environment tab, you may fill out one or more of the following fields: 1. If you want to submit your job to a particular queue, in the Submit to queue/partition field, specify the queue name. Ensure that the JCL is accessible from any host in the queue you specify. 2. If you want to run the proxy LSF job on a specific host, in the Run on host field, specify the name of the host. Ensure that the JCL is accessible from the host you specify. 5. When you have completed filling in the fields, click OK. Draw any dependencies as required. The job output is in the following format: The first column displays the job name. The second column displays the job ID The third column displays the status of the job, where valid status is OUTPUT. Additionally, the status displays the number of files spooled for output. If no output is returned from the job, the job is presumed to have failed. Required fields When defining a z/os job, the user is required to enter the following fields: z/os host name the name of the mainframe host to log into login user ID the user ID under which to log into the mainframe host Password the password used to validate the login user ID on the mainframe host The full path to the JCL to submit The full path to the output file to receive the z/os job output (a single spool file any existing file will be overwritten) 16 Guide to Using Templates
17 Using the z/os Template The JCL and output file names must be accessible to the LSF execution host Guide to Using Templates 17
18 Using the z/os Template Exit codes If the proxy LSF job fails, you can determine the location of the failure by the exit code specified in the job details, as follows: The following exit codes may occur if there is a problem between your LSF proxy job and the mainframe job: Exit Code Failure Reason 230 Failed to connect to mainframe via FTP. 231 Failed to log in to mainframe. 232 Command site filetype=jes or site filetype=seq failed. 233 Failed to retrieve job ID. put or get command failed. 234 Failed to retrieve job output. 235 Failed to match Dir Header. Dir command failed. 236 Failed to get job status. Dir command failed. 237 Timeout checking mainframe job status. 238 Failed to delete a mainframe job. 239 Encryption error. 240 Environment variable not found. 241 Script error. 242 LSF configuration file not found. 243 FTP configuration file not found. 244 Incomplete system output file: IEF142I and IEF472I not found. 245 System output file not found. 246 bpost command failed. 247 bread command failed. 248 Failed to get mainframe job ID from bread output. 249 Failed to transfer JCL file from z/os host to LSF host. 250 Failed to modify job name in JCL file. 255 Mainframe job has an ABEND status. A template file should contain all of the information needed by the end user to define a job for use in a specific application. The template you create should use simple, recognizable terms, and can contain help for some or all fields. You can use the template to highlight only those fields where user input is critical, and allow all others to use the default values. This can be useful for simplifying complex submission options. 18 Guide to Using Templates
19 Using the z/os Template This procedure demonstrates how to take a job submission command for an application and translate it into a template using the following command, which submits a blast job that searches a database for matches: blastall.exe -p blastp -d "human" -e o "c:\tmp\zzz.txt" -F T -S 2 -T F -1 -U F In the above example, blastall.exe is the executable, and the remaining values are parameters that describe how to run the executable: -p blastp specifies the BLAST search to run, -d human specifies the database to search, and so on. Guide to Using Templates 19
20 Using the z/os Template Create a template 1. Using an XML or text editor, start a job template with a meaningful name. Specify the Version and Icon attributes, if applicable. For example: <JobTemplate Nameplates search Version= 1 Icon= ncbi.gif > </JobTemplate> 2. Specify the Execution element with LSF as the execution environment (Type=lsf), and specify the name of the executable to use. For example: <JobTemplate Name= BLAST search Version= 1 Icon= ncbi.gif > <Execution Type= lsf Action= blastall.exe /> </JobTemplate> The template type of lsf submits an LSF job using the LSF bsub command. If you are creating a template that submits an LSF job, specify the name of the command to run for Action. For example: <Execution Type= lsf Action= sleep 5"/> 3. Specify an empty Submission element, which will contain all of the parameters required by the executable. For example: <JobTemplate Name= BLAST search Version= 1 Icon= ncbi.gif > <Execution Type= lsf Action= blastall.exe /> <Submission> </Submission> </JobTemplate> 4. For each parameter in the command, create a corresponding Param element. For each Param element, specify a Name and Validation attribute. Specify an Expr attribute, if applicable. If the parameter is not required, specify the Required attribute and set it to false. Insert the parameters into the Submission element. For example: <JobTemplate Name= BLAST search Version= 1 Icon= ncbi.gif > <Execution Type= lsf Action= blastall.exe /> <Submission> <Param Name= Program name Validation= CHOICE Expr= -p #{VALUE}> <Choice Name= blastp search Value= blastp /> <Choice Name= blastn search Value= blastn /> <Choice Name= blastx search Value= blastx /> </Param> <Param Name= Database Validation= FILE Expr= -d #{VALUE}> </Param> </Submission> </JobTemplate> 5. Refer to LSF execution type, and create any execution parameters required as applicable. You can allow many of the execution parameters to default, or you can set a value for a parameter and mark it as hidden or read only. Add these parameters as Param child elements to the Execution element. For example: <JobTemplate Name= BLAST search Version= 1 Icon= ncbi.gif > <Execution Type= lsf Action= blastall.exe > <Param Name= Stdin Caption= Standard in: Default= inputfile.txt Readonly= True /> <Param Name= Stdout Caption= Standard out: Default= outfile.txt Readonly="TRUE /> <Param Name= JobPriority Default= standard Hidden= True /> </Execution> <Submission> <Param Name= Program name Validation= CHOICE Expr= -p #{VALUE}> <Choice Name= blastp search Value= blastp /> <Choice Name= blastn search Value= blastn /> <Choice Name= blastx search Value= blastx /> </Param> <Param Name= Database Validation= FILE Expr= -d #{VALUE}/> </Submission> </JobTemplate> 6. Save the file with a meaningful name with a file type of.xml in the following location: JS_HOME/work/templates or in the template directory specified in the LSF configuration file, js.conf. 20 Guide to Using Templates
21 Using the z/os Template Example Templates The Process Manager package includes sample templates you can use, either as is or modified to fit your environment. The package contains the following examples: Example_Oracle_Template.xml runs an Oracle procedure zos _Template.xml runs a z/os job and retrieves the job output You can find these examples in JS_HOME/7/examples. Guide to Using Templates 21
22 Using the z/os Template 22 Guide to Using Templates
23 C H A P T E R 4 Execution Types Execution type determines the kind of work that is run and defines the execution environment. The following are the valid execution types supported by LSF: lsf zos oracle Each execution type has a predefined list of execution parameters it supports. Select the execution parameters that apply. Be sure to enter the exact parameter name as shown in the list that follows. Guide to Using Templates 23
24 Execution Types Reserved parameter names Execution parameters are predefined. When you specify a parameter with the same name as any of the predefined parameters, your template uses the predefined functionality. Therefore you cannot create a parameter with the same name as any of the execution parameters to perform another function. 24 Guide to Using Templates
25 Execution Types LSF execution type The LSF execution type is used to run LSF jobs. Valid execution parameters: All execution parameters listed are valid in an LSF template. Guide to Using Templates 25
26 Execution Types z/os execution type The zos execution type is used to run mainframe jobs running on z/os. Valid execution parameters: The zos execution type supports only the following execution parameters: FileTransfer HostSelect QueueSelect UserName 26 Guide to Using Templates
27 Execution Types Oracle execution type The Oracle execution type is used to run Oracle procedures. Valid execution parameters: All execution parameters listed are valid in an Oracle template. Guide to Using Templates 27
28 Execution Types 28 Guide to Using Templates
29 C H A P T E R 5 Execution Parameters Execution parameters define the execution environment for an application. These are the parameters that are used by LSF directly. The following are predefined parameters you can use in your templates. The execution parameters that are valid for a given template type are predetermined be sure you refer to Execution Types to see which parameters are valid for the execution type you are using. Guide to Using Templates 29
30 CoreSizeLimit Specifies the maximum core file size limit (in KB) for any process that belongs to this batch job. Default format <Param Name= CoreSizeLimit Type= FLOAT Expr= #{VALUE} Required= TRUE Repeatable= FALSE Hidden= FALSE /> Example <Param Name= CoreSizeLimit Caption= Max. core size (KB): /> 30 Guide to Using Templates
31 CPUTimeLimit Specifies the maximum amount of CPU time the job can use. The limit is specified as hours:minutes or just minutes. Default format <Param Name="CPUTimeLimit Type= STRING Expr= #{VALUE} Required= TRUE Repeatable= FALSE Hidden= FALSE /> Example <Param Name= CPUTimeLimit Caption= Max. CPU time (minutes): /> Guide to Using Templates 31
32 DataSizeLimit Specifies the maximum data segment size (in KB) for any process that belongs to this job. Default format <Param Name= DataSizeLimit Type= FLOAT Expr= #{VALUE} Required= TRUE Repeatable= FALSE Hidden= FALSE /> Example <Param Name= DataSizeLimit Caption= Max. data size (KB): /> 32 Guide to Using Templates
33 ExclusiveExec Specifies that this job requires exclusive use of the host while it is running. The user specifies Yes or No. Default format <Param Name= ExclusiveExec Type= STRING Expr= #{VALUE} Required= TRUE" Repeatable= FALSE Hidden= FALSE Default= No Lookup= TRUE > <Choice Name= True Value= Yes /> <Choice Name= False Value= No /> <Param/> Example <Param Name= ExclusiveExec Caption= Exclusive use of host: Default= No > <Choice Name= True Value= Yes /> <Choice Name= False Value= No /> <Param/> Guide to Using Templates 33
34 FileSizeLimit Specifies the maximum file size limit (in KB) for any process that belongs to this job. Default format <Param Name= FileSizeLimit Type= FLOAT Expr= #{VALUE} Required= TRUE Repeatable= FALSE Hidden= FALSE /> Example <Param Name= FileSizeLimit Caption= Max. file size (KB): /> 34 Guide to Using Templates
35 FileTransfer Specifies one or more file transfer operations required to run this job. This option can be used to transfer local files to the remote host for processing, to return output files from the remote host after running the job, or to append output files to a local location after running the job. Default format <Param Name= FileTransfer Type= STRING Expr= #{VALUE} Required= TRUE Repeatable= FALSE Hidden= FALSE /> Example <Param Name= FileTransfer Caption= Transfer files: /> Guide to Using Templates 35
36 Hold Specifies to submit the job on hold. The job cannot run until it is explicitly released. The user specifies Yes or No. Default format <Param Name= Hold Type= STRING Expr= #{VALUE} Required= FALSE Repeatable= FALSE Hidden= FALSE Default= No Lookup= TRUE > <Choice Name= True Value= Yes /> <Choice Name= False Value= No /> <Param/> Example <Param Name= Hold Caption= Submit on hold: Default= No > <Choice Name= True Value= Yes /> <Choice Name= False Value= No /> <Param/> 36 Guide to Using Templates
37 HostDependent Specifies that this job must run on the same host as a previous job in the flow. The user input is the name of the job. The previous job must have at least started to run when this job is submitted, so the correct host can be determined. Default format <Param Name= HostDependent Type= STRING Expr= #{VALUE} Required= TRUE Repeatable= FALSE Hidden= FALSE /> Example <Param Name= HostDependent Caption= Run on same host as: /> Guide to Using Templates 37
38 HostSelect Specifies that this job must run on one of the specified host or series of hosts. The user input is the name of the host. Default format <Param Name= HostSelect Type= STRING Expr= #{VALUE} Required= TRUE Repeatable= FALSE Hidden= FALSE /> Example <Param Name= HostSelect Caption= Run on hosts: /> 38 Guide to Using Templates
39 JobPriority Specifies a priority to assign this job. This allows users to order their jobs in the queue. Jobs are still subject to all scheduling policies regardless of job priority. Jobs with the same priority are ordered first come first served. The user input is an integer between 1 and the maximum configured user priority. Default format <Param Name= JobPriority Type= INTEGER Expr= #{VALUE} Required= TRUE Repeatable= FALSE Hidden= FALSE /> Example <Param Name= JobPriority Caption= Priority Type= INTEGER: /> Guide to Using Templates 39
40 LoginShell Specifies the login shell to use to initialize the execution environment. This is not necessarily the shell under which the job runs. The user input is the absolute path to the login shell. Default format <Param Name= LoginShell Type= FILE Expr= #{VALUE} Required= FALSE Repeatable= TRUE Hidden= FALSE Default= korn /> Example <Param Name= LoginShell Caption= Login shell: /> 40 Guide to Using Templates
41 MailDestination Specifies the address to notify regarding the state of the job. The user input is the address. Default format <Param Name= MailDestination Type= STRING Expr= #{VALUE} Required= TRUE Repeatable= FALSE Hidden= FALSE /> Example <Param Name= MailDestination Caption= address: /> Guide to Using Templates 41
42 MailWhenFinish Specifies to send an notification when the job finishes. The user specifies Yes or No. Default format <Param Name="MailWhenFinish" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE" Default="No" Lookup="TRUE"> <Choice Name="True" Value="Yes"/> <Choice Name="False" Value="No"/> <Param/> Example <Param Name="MailWhenFinish" Caption="Notify when finishes:" Default="No"> <Choice Name="True" Value="Yes"/> <Choice Name="False" Value="No"/> <Param/> 42 Guide to Using Templates
43 MailWhenStart Specifies to send an notification when the job starts. The user specifies Yes or No. Default format <Param Name="MailWhenStart" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE" Default="No" Lookup="TRUE"> <Choice Name="True" Value="Yes"/> <Choice Name="False" Value="No"/> <Param/> Example <Param Name="MailWhenStart" Caption="Notify when starts:" Default="No"> <Choice Name="True" Value="Yes"/> <Choice Name="False" Value="No"/> <Param/> Guide to Using Templates 43
44 MinMaxCPU Specifies the minimum and maximum number of processors this parallel job can use. The maximum number is optional if the user specifies only a minimum number, that is the actual number used. The user input is string minimum,maximum or just minimum. Default format <Param Name="MinMaxCPU" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="MinMaxCPU" Caption="# Processors:"/> 44 Guide to Using Templates
45 PeakMemLimit Specifies the maximum amount of memory this job can use, in kilobytes. The user input is an integer. Default format <Param Name="PeakMemLimit" Type="FLOAT" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="PeakMemLimit" Caption="Max. memory (KB):" Type="INTEGER"/> Guide to Using Templates 45
46 PeakSwapLimit Specifies the maximum amount of swap space this job can use, in kilobytes. The user input is the number of kilobytes. Default format <Param Name="PeakSwapLimit" Type="FLOAT" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="TRUE"/> Example <Param Name="PeakSwapLimit" Caption="Max. swap (KB):" Type="INTEGER"/> 46 Guide to Using Templates
47 ProjectName Specifies the project code for collecting accounting information. The user input is the project name. Default format <Param Name="ProjectName" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="ProjectName" Caption="Project:"/> Guide to Using Templates 47
48 QueueSelect Specifies the queue to which this job should be submitted. All jobs submitted to a queue share the same scheduling and control policies. The user input is the name of the queue, or you can provide a list of defined queues for your site. Default format <Param Name="QueueSelect" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="QueueSelect" Caption="Queue:" Default="general" Lookup="FALSE"> <Choice Name="Priority" Value="priority"/> <Choice Name="General" Value="general"/></Param> 48 Guide to Using Templates
49 Rerunable Specifies that this job is rerunnable if the host becomes unavailable, the job can be restarted on another host. The user specifies Yes or No. Default format <Param Name="Rerunable" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE" Default="No" Lookup="TRUE"> <Choice Name="True" Value="Yes"/> <Choice Name="False" Value="No"/> <Param/> Example <Param Name="Rerunable" Caption="Rerunnable:" Default="Yes"> <Choice Name="True" Value="Yes"/> <Choice Name="False" Value="No"/> <Param/> Guide to Using Templates 49
50 ResReqStr Specifies the resources required to run this job. The user input is a string. Default format <Param Name="ResReqStr" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="ResReqStr" Caption="Resources required:"/> 50 Guide to Using Templates
51 RunTimeLimit Specifies the maximum run time of the job in minutes. The user input is the number of minutes. Default format <Param Name="RunTimeLimit" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="RunTimeLimit" Caption="Max. run time (minutes):"/> Guide to Using Templates 51
52 StackSizeLimit Specifies the maximum stack segment size in kilobytes per process for each process that belongs to this job. The user input is the number of kilobytes. Default format <Param Name="StackSizeLimit" Type="FLOAT" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="StackSizeLimit" Caption="Max. stack size (KB):"/> 52 Guide to Using Templates
53 Stdin Specifies the fully-qualified path and name of the standard input file. The user input is a string. Default format <Param Name="Stdin" Type="FILE" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/ > Example <Param Name="Stdin" Caption="Standard in:" Type="FILE"/> Guide to Using Templates 53
54 Stdout Specifies the fully-qualified path and name of the standard output file. The user input is a string. Default format <Param Name="Stdout" Type="FILE" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="Stdout" Caption="Standard out:"/> 54 Guide to Using Templates
55 Stderr Specifies the fully-qualified path and name of the standard error file. The user input is a string. Default format <Param Name="Stderr" Type="FILE" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="Stderr" Caption="Standard error:"/> Guide to Using Templates 55
56 SubmissionCmd Specifies the command that the job is to run. The user input is a string. Default format <Param Name="SubmissionCmd" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="TRUE"/> Example <Param Name="SubmissionCmd" Caption="Command to run:"/> 56 Guide to Using Templates
57 UserGroup Specifies the name of the fairshare group to associate this job with. The submitter must be a member of the specified group. The user input is a group name. Default format <Param Name="UserGroup" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="UserGroup" Caption="User group:"/> Guide to Using Templates 57
58 UserName Specifies the name of the user ID under which the job should run. The submitter must have administrative authority to set this value. The user input is a string. Default format <Param Name="UserName" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE" Default="current_user"/> Example <Param Name="UserName" Caption="Run as user:"/> 58 Guide to Using Templates
59 UserPreExecCmd Specifies a command to run on the execution host prior to running the job. This is typically used to set up the execution environment. The user input is a string. Default format <Param Name="UserPreExecCmd" Type="STRING" Expr="#{VALUE}" Required="TRUE" Repeatable="FALSE" Hidden="FALSE"/> Example <Param Name="UserPreExexCmd" Caption="Preexecution command:"/> Guide to Using Templates 59
60 60 Guide to Using Templates
61 Index E encryption on user input 11 execution types 23 LSF 25 I input encrypting 11 T templates U creating 18 description 5 types of 23 user input encrypting 11 Z z/os template 15 Guide to Using Templates 61
Installing Platform Product Suite for SAS (Windows)
Installing Platform Product Suite for SAS (Windows) Version 3.1 March 29, 2007 Contents Introduction on page 3 Supported Versions and Requirements on page 4 Prerequisites on page 5 Install the Software
Administering Platform Process Manager. Platform Process Manager Version 7 August 2008
Administering Platform Process Manager Platform Process Manager Version 7 August 2008 Copyright 1994-2008 Platform Computing Inc. Although the information in this document has been carefully reviewed,
CA Nimsoft Monitor. Probe Guide for NT Event Log Monitor. ntevl v3.8 series
CA Nimsoft Monitor Probe Guide for NT Event Log Monitor ntevl v3.8 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and
CA Spectrum and CA Service Desk
CA Spectrum and CA Service Desk Integration Guide CA Spectrum 9.4 / CA Service Desk r12 and later This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter
Scheduling in SAS 9.4 Second Edition
Scheduling in SAS 9.4 Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. Scheduling in SAS 9.4, Second Edition. Cary, NC: SAS Institute
CA Nimsoft Monitor Snap
CA Nimsoft Monitor Snap Configuration Guide for Email Gateway emailgtw v2.7 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as
Scheduling in SAS 9.3
Scheduling in SAS 9.3 SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. Scheduling in SAS 9.3. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.3
How To Set Up Total Recall Web On A Microsoft Memorybook 2.5.2.2 (For A Microtron)
Total Recall Web Web Module Manual and Customer Quick Reference Guides COPYRIGHT NOTICE Copyright 1994-2009 by DHS Associates, Inc. All Rights Reserved. All TOTAL RECALL, TOTAL RECALL SQL, TOTAL RECALL
RSM Web Gateway RSM Web Client INSTALLATION AND ADMINISTRATION GUIDE
RSM Web Gateway RSM Web Client INSTALLATION AND ADMINISTRATION GUIDE Installation and Administration Guide RSM Web Client and RSM Web Gateway 17 August, 2004 Page 1 Copyright Notice 2004 Sony Corporation.
Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved.
Evaluator s Guide PC-Duo Enterprise HelpDesk v5.0 Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. All third-party trademarks are the property of their respective owners.
HP Device Manager 4.7
Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...
CA Nimsoft Monitor. Probe Guide for Active Directory Server. ad_server v1.4 series
CA Nimsoft Monitor Probe Guide for Active Directory Server ad_server v1.4 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as
JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence
JD Edwards EnterpriseOne Tools Embedded Business Intelligence for JD Edwards EnterpriseOne Release 8.98 Update 4 E21426-02 March 2011 This document provides instructions for using Form Design Aid to create
CA Nimsoft Service Desk
CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject
SHARP Digital Signage Software Pro PN-SS05 OPERATION MANUAL
SHARP Digital Signage Software Pro PN-SS05 Version 4.1 OPERATION MANUAL Contents Introduction... 2 Precautions on Use...2 Trademarks...2 How to Read this Manual...3 Definitions...3 Installing/Launching...
Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc.
Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from
File and Printer Sharing with Microsoft Windows
Operating System File and Printer Sharing with Microsoft Windows Microsoft Corporation Published: November 2003 Abstract File and printer sharing in Microsoft Windows allows you to share the contents of
THUM - Temperature Humidity USB Monitor
THUM - Temperature Humidity USB Monitor The THUM is a true USB device to monitor temperature and relative humidity of an interior living, working, and storage spaces. The THUM is ideal for computer rooms,
HP A-IMC Firewall Manager
HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this
HP IMC Firewall Manager
HP IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW102-20120420 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P. No part of this
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,
Parallels Plesk Panel
Parallels Plesk Panel Copyright Notice Parallels Holdings, Ltd. c/o Parallels International GMbH Vordergasse 49 CH8200 Schaffhausen Switzerland Phone: +41 526320 411 Fax: +41 52672 2010 Copyright 1999-2011
Siebel Correspondence, Proposals, and Presentations Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013
Siebel Correspondence, Proposals, and Presentations Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software
Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide
Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing
Dell Statistica 13.0. Statistica Enterprise Installation Instructions
Dell Statistica 13.0 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or
SMART Sync 2011. Windows operating systems. System administrator s guide
SMART Sync 2011 Windows operating systems System administrator s guide Trademark notice SMART Sync, smarttech and the SMART logo are trademarks or registered trademarks of SMART Technologies ULC in the
Create a New Database in Access 2010
Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...
Camera Management Tool User Manual
Network Camera Camera Management Tool User Manual The Operation Guide should be read before using the network camera. ENGLISH Introduction This manual describes how to configure and operate Camera Management
Staff User s Guide Task Manager. Version 20
Staff User s Guide Task Manager Version 20 CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse or abuse will result in economic loss. DO NOT
Big Brother Professional Edition Windows Client Getting Started Guide. Version 4.60
Big Brother Professional Edition Windows Client Getting Started Guide Version 4.60 Copyright Quest Software, Inc. 2002 2011. All rights reserved. This guide contains proprietary information, which is protected
About This Guide... 4. Signature Manager Outlook Edition Overview... 5
Contents About This Guide... 4 Signature Manager Outlook Edition Overview... 5 How does it work?... 5 But That's Not All...... 6 And There's More...... 6 Licensing... 7 Licensing Information... 7 System
Administration Quick Start
www.novell.com/documentation Administration Quick Start ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of
Nimsoft Monitor. ntevl Guide. v3.6 series
Nimsoft Monitor ntevl Guide v3.6 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without
Microsoft Dynamics GP. Engineering Data Management Integration Administrator s Guide
Microsoft Dynamics GP Engineering Data Management Integration Administrator s Guide Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is
User Guide. DocAve Lotus Notes Migrator for Microsoft Exchange 1.1. Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration
User Guide DocAve Lotus Notes Migrator for Microsoft Exchange 1.1 Using the DocAve Notes Migrator for Exchange to Perform a Basic Migration This document is intended for anyone wishing to familiarize themselves
Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation
Nokia for Business Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia E50 Legal Notice Copyright Nokia 2006. All rights reserved. Reproduction, transfer, distribution
CA Workload Automation Agent for Databases
CA Workload Automation Agent for Databases Implementation Guide r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the
Crystal Reports Installation Guide
Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks
Novell Identity Manager Driver for Remedy Action Request System (ARS)
Novell Identity Manager Driver for Remedy Action Request System (ARS) 1.1 www.novell.com June 05, 2009 DRIVER GUIDE 1/18 Legal Notices Novell, Inc. makes no representations or warranties with respect to
Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP
Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Deployment Guide Cisco VCS X8.1 D14465.06 December 2013 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration
ElectricCommander. Technical Notes MS Visual Studio Add-in Integration version 1.5.0. version 3.5 or higher. October 2010
ElectricCommander version 3.5 or higher Technical Notes MS Visual Studio Add-in Integration version 1.5.0 October 2010 This document contains information about the ElectricCommander integration with the
HP Operations Manager Software for Windows Integration Guide
HP Operations Manager Software for Windows Integration Guide This guide documents the facilities to integrate EnterpriseSCHEDULE into HP Operations Manager Software for Windows (formerly known as HP OpenView
Xcode User Default Reference. (Legacy)
Xcode User Default Reference (Legacy) Contents Introduction 5 Organization of This Document 5 Software Version 5 See Also 5 Xcode User Defaults 7 Xcode User Default Overview 7 General User Defaults 8 NSDragAndDropTextDelay
CA Nimsoft Monitor. Probe Guide for CPU, Disk and Memory. cdm v4.7 series
CA Nimsoft Monitor Probe Guide for CPU, Disk and Memory cdm v4.7 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and
Installing the IPSecuritas IPSec Client
Mac Install Installing the IPSecuritas IPSec Client IPSecuritasMac201003-01 Global Technology Associates 3505 Lake Lynda Drive Suite 109 Orlando, FL 32817 Tel: +1.407.380.0220 Fax. +1.407.380.6080 Email:
CA Workload Automation Agent for Remote Execution
CA Workload Automation Agent for Remote Execution Release Notes r11.3.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the
CA Clarity PPM. Connector for Microsoft SharePoint Product Guide. Service Pack 02.0.01
CA Clarity PPM Connector for Microsoft SharePoint Product Guide Service Pack 02.0.01 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred
DOCUMENTATION MICROSOFT SQL BACKUP & RESTORE OPERATIONS
DOCUMENTATION MICROSOFT SQL BACKUP & RESTORE OPERATIONS Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication
Integration Client Guide
Integration Client Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective
Oracle Fusion Middleware
Oracle Fusion Middleware Getting Started with Oracle Business Intelligence Publisher 11g Release 1 (11.1.1) E28374-02 September 2013 Welcome to Getting Started with Oracle Business Intelligence Publisher.
VERITAS NetBackup 6.0
VERITAS NetBackup 6.0 Backup, Archive, and Restore Getting Started Guide for UNIX, Windows, and Linux N15278C September 2005 Disclaimer The information contained in this publication is subject to change
Oracle Enterprise Manager
Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Active Directory Release 12.1.0.1.0 E28548-04 February 2014 Microsoft Active Directory, which is included with Microsoft
Pre-Installation Instructions
Agile Product Lifecycle Management PLM Mobile Release Notes Release 2.0 E49504-02 October 2014 These Release Notes provide technical information about Oracle Product Lifecycle Management (PLM) Mobile 2.0.
Audit Management Reference
www.novell.com/documentation Audit Management Reference ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of
Setting Up Database Security with Access 97
Setting Up Database Security with Access 97 The most flexible and extensive method of securing a database is called user-level security. This form of security is similar to methods used in most network
Integrating with BarTender Integration Builder
Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration
PaperStream Connect. Setup Guide. Version 1.0.0.0. Copyright Fujitsu
PaperStream Connect Setup Guide Version 1.0.0.0 Copyright Fujitsu 2014 Contents Introduction to PaperStream Connect... 2 Setting up PaperStream Capture to Release to Cloud Services... 3 Selecting a Cloud
Sample Configuration: Cisco UCS, LDAP and Active Directory
First Published: March 24, 2011 Last Modified: March 27, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS
HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing
HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December
Remote Management System
RMS Copyright and Distribution Notice November 2009 Copyright 2009 ARTROMICK International, Inc. ALL RIGHTS RESERVED. Published 2009. Printed in the United States of America WARNING: ANY UNAUTHORIZED
Enterprise Vault Installing and Configuring
Enterprise Vault Installing and Configuring Enterprise Vault 6.0 Legal Notice Copyright 2005 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, VERITAS, the VERITAS Logo, and Enterprise
SmartConnect Users Guide
eone Integrated Business Solutions SmartConnect Users Guide Copyright: Manual copyright 2003 eone Integrated Business Solutions All rights reserved. Your right to copy this documentation is limited by
Parallels. for your Linux or Windows Server. Small Business Panel. Getting Started Guide. Parallels Small Business Panel // Linux & Windows Server
Getting Started Guide Parallels Small Business Panel for your Linux or Windows Server Getting Started Guide Page 1 Getting Started Guide: Parallels Small Business Panel, Linux & Windows Server Version
Kofax Export Connector 8.3.0 for Microsoft SharePoint
Kofax Export Connector 8.3.0 for Microsoft SharePoint Administrator's Guide 2013-02-27 2013 Kofax, Inc., 15211 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to
Enterprise Toolbar User s Guide. Revised March 2015
Revised March 2015 Copyright Notice Trademarks Copyright 2007 DSCI, LLC All rights reserved. Any technical documentation that is made available by DSCI, LLC is proprietary and confidential and is considered
VERITAS Backup Exec TM 10.0 for Windows Servers
VERITAS Backup Exec TM 10.0 for Windows Servers Quick Installation Guide N134418 July 2004 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software
Server Installation Guide ZENworks Patch Management 6.4 SP2
Server Installation Guide ZENworks Patch Management 6.4 SP2 02_016N 6.4SP2 Server Installation Guide - 2 - Notices Version Information ZENworks Patch Management Server Installation Guide - ZENworks Patch
Scheduling Data Import from Avaya Communication Manager into Avaya Softconsole MasterDirectory
Scheduling Data Import from Avaya Communication Manager into Avaya Softconsole MasterDirectory ABSTRACT This Application Note details step-by-step instructions on how to configure the scheduling feature
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0
Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted
Cisco Jabber for Windows 10.5 Advanced Features Guide
First Published: August 14, 2014 Last Modified: August 26, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS
Easy Manage Helpdesk Guide version 5.4
Easy Manage Helpdesk Guide version 5.4 Restricted Rights Legend COPYRIGHT Copyright 2011 by EZManage B.V. All rights reserved. No part of this publication or software may be reproduced, transmitted, stored
TIBCO Slingshot User Guide
TIBCO Slingshot User Guide v1.8.1 Copyright 2008-2010 TIBCO Software Inc. ALL RIGHTS RESERVED. Page 1 September 2, 2011 Documentation Information Slingshot Outlook Plug-in Important Information SOME TIBCO
Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation
Nokia for Business Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia E50 Configuring connection settings Nokia E50 Configuring connection settings Legal Notice Copyright
SAM Server Utility User s Guide
SAM Server Utility User s Guide Updated May 2012 Copyright 2010, 2012 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. PDF0157 (PDF) SCHOLASTIC, READ 180, SYSTEM 44, SCHOLASTIC EXPERT
ibolt V3.2 Release Notes
ibolt V3.2 Release Notes Welcome to ibolt V3.2, which has been designed to deliver an easy-touse, flexible, and cost-effective business integration solution. This document highlights the new and enhanced
LPR for Windows 95 TCP/IP Printing User s Guide
LPR for Windows 95 TCP/IP Printing User s Guide First Edition Printed in Taiwan, R.O.C. RECYCLABLE Copyright Statement Trademarks Limited Warranty Copyright 1997 D-Link Corporation No part of this publication
File Management Utility User Guide
File Management Utility User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held
Xtreeme Search Engine Studio Help. 2007 Xtreeme
Xtreeme Search Engine Studio Help 2007 Xtreeme I Search Engine Studio Help Table of Contents Part I Introduction 2 Part II Requirements 4 Part III Features 7 Part IV Quick Start Tutorials 9 1 Steps to
Infor Cloud Printing Service Administration Guide
Infor Cloud Printing Service Administration Guide Copyright 2015 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential
Dell Unified Communications Command Suite - Diagnostics 8.0. Data Recorder User Guide
Dell Unified Communications Command Suite - Diagnostics 8.0 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide
NetBackup Backup, Archive, and Restore Getting Started Guide
NetBackup Backup, Archive, and Restore Getting Started Guide UNIX, Windows, and Linux Release 6.5 Veritas NetBackup Backup, Archive, and Restore Getting Started Guide Copyright 2007 Symantec Corporation.
Business Interaction Server. Configuration Guide. 10300685-000 Rev A
Business Interaction Server Configuration Guide 10300685-000 Rev A 2008 Kofax Image Products, Inc., 16245 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to license
INSTALLATION GUIDE. AXIS Camera Station
INSTALLATION GUIDE AXIS Camera Station About this Guide This guide is intended for administrators and users of the AXIS Camera Station, and is applicable for software release 3.50 and later. It covers
Installation Guide. Version 1.5. May 2015 Edition 2002-2015 ICS Learning Group
Installation Guide Version 1.5 May 2015 Edition 2002-2015 ICS Learning Group 1 Disclaimer ICS Learning Group makes no representations or warranties with respect to the contents or use of this manual, and
PN 00651. Connect:Enterprise Secure FTP Client Release Notes Version 1.2.00
PN 00651 Connect:Enterprise Secure FTP Client Release Notes Version 1.2.00 Connect:Enterprise Secure FTP Client Release Notes Version 1.2.00 First Edition This documentation was prepared to assist licensed
Oracle Enterprise Manager
Oracle Enterprise Manager System Monitoring Plug-in for Oracle TimesTen In-Memory Database Installation Guide Release 11.2.1 E13081-02 June 2009 This document was first written and published in November
HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Server security help topics for printing
HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Server security help topics for printing Document Release Date: December 2014 Software Release Date: December
Getting Started with IntelleView POS Administrator Software
Getting Started with IntelleView POS Administrator Software Administrator s Guide for Software Version 1.2 About this Guide This administrator s guide explains how to start using your IntelleView POS (IntelleView)
Managing Linux Servers with System Center 2012 R2
Managing Linux Servers with System Center 2012 R2 System Center 2012 R2 Hands-on lab In this lab, you will use System Center 2012 R2 Operations Manager and System Center 2012 R2 Configuration Manager to
Oracle Enterprise Manager
Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Internet Information Services Release 12.1.0.2.0 E28547-05 February 2014 This document provides a brief description
Windows Azure Pack Installation and Initial Configuration
Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete
Event Manager. LANDesk Service Desk
Event Manager LANDesk Service Desk LANDESK SERVICE DESK EVENT MANAGER GUIDE This document contains information that is the proprietary and confidential property of LANDesk Software, Inc. and/or its affiliated
Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010
Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 This document describes the different types of Unisphere management stations and tells how to install
Password Management Guide
www.novell.com/documentation Management Guide Identity Manager 4.0.2 June 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,
email-lead Grabber Business 2010 User Guide
email-lead Grabber Business 2010 User Guide Copyright and Trademark Information in this documentation is subject to change without notice. The software described in this manual is furnished under a license
HP IMC User Behavior Auditor
HP IMC User Behavior Auditor Administrator Guide Abstract This guide describes the User Behavior Auditor (UBA), an add-on service module of the HP Intelligent Management Center. UBA is designed for IMC
Universal File Mover Status Monitor Installation and Operation Manual
Universal File Mover Status Monitor Installation and Operation Manual Capitalware Inc. Unit 11, 1673 Richmond Street, PMB524 London, Ontario N6G2N3 Canada [email protected] http://www.capitalware.com
VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3
VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3 This document supports the version of each product listed and supports all subsequent
Email Data Protection. Administrator Guide
Email Data Protection Administrator Guide Email Data Protection Administrator Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2015 Symantec Corporation. All rights reserved. Symantec,
Desktop, Web and Mobile Testing Tutorials
Desktop, Web and Mobile Testing Tutorials * Windows and the Windows logo are trademarks of the Microsoft group of companies. 2 About the Tutorial With TestComplete, you can test applications of three major
