How many positional parameters are there in job statement?
Answer Posted / guest
There are two position parameters in job statement.
| Is This Answer Correct ? | 23 Yes | 2 No |
Post New Answer View All Answers
What is the significance of addrspc parameter in the exec statement?
Explain in DD statement what is the use of DCB parameter?
How would you understand error(execution phase)?
when can a job time-out occur? How to overcome that?
What does a disposition of (new,catlg,keep) for a dsn mean?
What is jcl in mainframe, and how many types of jcl statements are there for a job?
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
Explain the function of dd disp parameter?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
What are the parameters that are used in creating a gdg?
what are the statements that are not valid to be included in an include statement?
How to pass data to a program that is coded in an exec statement?
Immediate Job opening for mainframe professionals in Keane Bangalore. Please find the below details: Organization: Keane India Location: Bangalore Skill: COBOL, JCL,VSAM,DB2,CICS,IMS,REXX,CLIST Exp: 1 to 4 years only Employment Type: Permenant Employee Note: If you have attended keane interview in past 6 months please ignore this job opening. Please respond to email id keanemfjob@gmail.com OR keanemfjob@yahoo.in with your latest resume and following details, We will contact you within 24 hours: Total IT Exp: Exp in Mainframe: Current CTC: Expected CTC: Notice Period:
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.