How to execute only th 15th step of JCL consisting of 50 steps?

Answer Posted / ekanthraj

cond=(0,le),restart = step15.

Is This Answer Correct ?    16 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

by using cond parameter maximum 8 cond can be coded in single cond means ?explain

979


What is jcl in mainframe, and how many types of jcl statements are there for a job?

633


what is the compile process of cobol program expalin with code

2006


Is it possible to left uncode disp? If yes, how?

708


When output dataset space is required, what quantity categories are used?

834






What do you understand by the term job time – out and how can you overcome that?

608


What is the difference between run mode and addressing mode?

640


How to alter the parameters for the existing gdg?

716


How is the record format of an output dataset specified?

749


Mention the types of job control statements?

692


How to submit jcl through a cobol program?

682


Is their any limit for data sets?

706


if the submitter of a job wants to inform another user about the job completion, how can it be done?

760


I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.

1959


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

856