how many max steps can we use in a job? pls answer to my
question

Answer Posted / ganesh kumbhar

We can Write 1 JOB statement
255 EXEC statement (steps)
3273 DD statement

Is This Answer Correct ?    30 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Does jcl support automatic restart?

759


What is the purpose of the dd keylen parameter?

718


why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.

1945


Is it possible to code instream data in a PROC?

748


What is jcl in mainframe?

688






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

628


In job processing, what happens in execution stage?

696


What is the maximum length of a single line of jcl?

825


What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?

1805


when can a job time-out occur? How to overcome that?

753


in ways data can be passed to a COBOL program from JCL?

663


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

1035


Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE

1964


How does the jcl specify the job to os?

689


Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?

2218