CAN ANYONE TELL ME WHAT IS "JOB-CARD"

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?

803


Can I share my data with other jobs? How?

670


What do you know about jcl?

649


Is it possible to define dd statements as you want?

646


What dd statement is used to supply the name of a dataset?

779






Can we use DISP=SHR in output file in JCL

953


Explain in DD statement what is the use of DCB parameter?

656


i want to store 20 digits . how will u do it in cobol ?

860


Why block size is multiple of lrecl in jcl?

915


How does jcl act on a cobol code?

659


WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move

854


What is the purpose of dd * statement in jcl?

812


What is the syntax of JCL statement?

694


have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file

923


what is use of disp parameter in dd statement?

665