|
|
| Author |
Message |
kriz_cts
New User
Joined: 03 Aug 2005 Posts: 23
|
|
|
|
Hi folks,
Can anyone clarify me on the types of parameter fields available in JCL? |
|
| Back to top |
|
 |
References
|
|
 |
superk
Moderator Team Head
Joined: 26 Apr 2004 Posts: 3314 Location: Charlotte,NC USA
|
|
| Back to top |
|
 |
bonniem
Active User
Joined: 09 Aug 2005 Posts: 68
|
|
|
|
Hi,
There are symbolic and keyword parameters.
Positional parameters
1) Appear in a pre-determined sequence.
2) Omitted parameters indicated by commas.
3) No comma to be coded if all the following positional parameters are omitted or only keyword parameters follow.
TIME=(10,30)
The system knows the specified time--10 minutes, 30 seconds?by each value's relative position
Keyword parameters
1)Predetermined words or keywords used.
2)Any sequence is permitted, separated by commas.
3)Format <keyword parameter> = <value>
//MYJOB JOB (PROJ,TRG,TRG10,N1,BATCH),'PGM1',
// MSGCLASS=X,NOTIFY=TRGG10,TYPRUN=SCAN
Here MSGCLASS, NOTIFY etc are keyword parameters. |
|
| Back to top |
|
 |
bonniem
Active User
Joined: 09 Aug 2005 Posts: 68
|
|
|
|
Sorry,
| Quote: |
| There are symbolic and keyword parameters |
It is positional and keyword parameters. |
|
| Back to top |
|
 |
|
|