What is the difference between catalogue procedure and
In-Stream procedure?
Answer Posted / guest
In Stream procedures are set of JCL statements written
between JOB and EXEC statements, start with PROC and end
with PEND statement. Mainly used to test cataloged
procedures. Cataloged procedure is cataloged on the
procedure library and is called by specifying the procedure
name on the EXEC statement.
| Is This Answer Correct ? | 37 Yes | 3 No |
Post New Answer View All Answers
How can values be passed from the job stream to an executable program?
Is it possible to left uncode disp?
is there any way to execute more than one proc in the same exec statement at the same time..?
what happens in execution stage in job processing?
How to run cobol program using jcl?
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
Explain how can an in-stream dataset be terminated?
Are there any set of rules for the names of the steps used in a job?
hello friends ,i have exam in Hsbc,pls any on send me placement papers and technical questions on mainframes,thank u
Give the syntax of job specifying jcl statement.
what happens in conversion stage in job processing?
How to pass data to a program that is coded in an exec statement?
Differentiate between the joblib and the steplib statements?
What do you understand by the terms: joblib and steplib?
i want to store 20 digits . how will u do it in cobol ?