CAN ANYONE TELL ME WHAT IS "JOB-CARD"
Answers were Sorted based on User's Feedback
Answer / ch.mohan
jobcard is identify the job related parameters
eg:jobname job a/c info,'username',notify,.....so on
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / venkat
job card is the first jcl statement. It can maintain the job details(positional parameters and keyword parameters) here.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / rangarao chitipothu
job card is the first jcl statement.
//<jobname> job <parameters>
//SVDYG1BE JOB (B0RX0T000000),'AR RX MISC BILL RPT',CLASS=D,
//
MSGLEVEL=(1,1),MSGCLASS=X,NOTIFY=&SYSUID,
//
RESTART=PSTEP030
Job Statement
SVDYG1BE --->Job Name
B0RX0T000000 --->Accounting code
AR RX MISC BILL RPT --->User/Job Information
CLASS = D --->Nature of Job
MSGLEVEL=(1,1) - -->It means it will display all the message (job related/jcl statement/execution statement) in normal/abnormal Termination.
MSGCLASS=X --->It will tell on which device the output message is routed.
NOTIFY=&SYSUID ---> It will notify after completion of the job to the person submitted.
RESTART=PSTEP030 ---> It will restart from step name PSTEP030
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / naga
job card contain job name for eg fss013 is the job name,
Mainframe operating regognize fss013 as a job,this job name
is like identifier then card having posintional and keyword
parameter
| Is This Answer Correct ? | 3 Yes | 0 No |
If i am going to change some variable in a copybook( size or variable type) ,what are the changes that need to be done in the corresponding JCL.
TIME parameter in JOB statement or EXEC statement specifies What type of time (CPU time or execution time)?
What is condition checking in jcl? Is this possible?
Are there any set of rules for the names of the steps used in a job?
is there any way to execute more than one proc in the same exec statement at the same time..?
i need some shortcuts and tso commands can any on ehelp me in these ?
how do you access an uncataloged dataset in a jcl?
How to exclude the duplicate records from two concateded flat files (records from both files must be removed)?
How to execute only th 15th step of JCL consisting of 50 steps?
What is the meaning of data definition name (ddname) and dataset name (dsname) in the DD statement?
What is the motivation behind coding class parameter in job statement?
Explain about LMCOPY -