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 |
in my jcl have 20 steps step1,step2,.... step20.and i have to execute step1,step2,..and skip the step3 and remaing step4,step5 are execute? i want skip step3 only? what code u can write?
Say I have a file with 12 records. Each record has the name of the month. I have to append data in these 12 records into 1 record. How is it possible?
hi guys what r the diff types of procs in jcl? bye ramya
4 Answers ACS, Keane India Ltd,
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
how would you create a temporary dataset? And where will you use them?
In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
i have a jcl in which 4 & 5 step creates a new generation. 4th step output is as input for the 6th step & 5th step output is used as input in the 7th step. How they are refered as in the 6th & 7th steps? If the job abends in 6th step then how the 5th step output is refered in 7th step?
what is the cond=even only
Is Default for MSGCLASS = (1,1) ?
how to see the latest generation in gdg?
How to execute 300 steps in a Job?