If there are five steps in a JCL i have to execute the 3rd
step, bypass the 4th step and execute the 5th step how do i
do this?

Answer Posted / syntel

Sorry,my previous solution was wrong.Infact it is correct
if you don't want to skip step 4th step

The correct solution for this is
to use COND paramater.

Is This Answer Correct ?    19 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What parameter of the job statement is used to limit the cpu time consumed by the job?

840


Mention the types of job control statements?

687


Explain how can a jobs execution priority be modified?

742


How can unused space allocation be returned to the system when a dataset is closed?

812


How to run cobol program using jcl?

652






List in order the hierarchical levels of jcl?

670


I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?

2107


Name the parameters which can be used to limit the number of records written to a sysout dataset?

654


what are the statements that are not valid to be included in an include statement?

776


What is the difference between run mode and addressing mode?

635


Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?

672


What happens if both JOBLIB & STEPLIB is specified ?

612


Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed

1971


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1039


I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one

1933