what are the paramater we cannot use in procedure?how many
instream we can write in single jcl?can we call instream to
catalog and ctalog to instream?

Answers were Sorted based on User's Feedback



what are the paramater we cannot use in procedure?how many instream we can write in single jcl?can..

Answer / vasanthymca

sysin dd * we cannot use in procedure,15 instream proc we
can code.we can call instream to catalog.but we cannot call
catalog to instream

Is This Answer Correct ?    13 Yes 0 No

what are the paramater we cannot use in procedure?how many instream we can write in single jcl?can..

Answer / chellad

Instream message can't be passed with in a proc with the help of
Ex:
// sysin DD *
Sort fields =copy
/*

So we have to create a control card.
Control card member is used to store instream data which has to be used with in a proc like

//Proc1 proc
//Step2 DD dsn=aggst.temp.ps(contmem),disp=shr,
..
..
..
//Pend


Ps: contmem is the member name which contains sysin DD * info

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More COBOL Interview Questions

given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1

5 Answers   Broadridge, TCS,


suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.

2 Answers   IBM,


What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?

0 Answers  


how we separate the cobol cics statements from cobol&cics programming?

1 Answers   Valtech,


why we are using picture clause in the cobol programs?

2 Answers  






How many bytes S(8) comp field occupy and its maximum value?

0 Answers  


Write a program to concert an Indexed file into Sequential file?

1 Answers   Covansys,


How To move a value to an array using move verb?

3 Answers   IBM,


WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?

3 Answers   TCS,


How much salary you are expecting? If they ask in an interview, what we have to tell?

6 Answers   Tech Mahindra, Wipro,


in cobol perform stmt whether it first checks the condition or not

9 Answers  


Write down the divisions of cobol program?

0 Answers  


Categories