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
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 |
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 |
What is a report item?
What does the initialize statement do ?
what is sysncpoint?
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
Please let me know at which Scenarios we will go for STATIC call or DYNAMIC
Why would you use find and get rather than to obtain?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
wht is the diff b/w if and evaluate stmts ?
Can we use icetool in cobol program?
Using string statement.Is coding three destination string from one source string possible in one code?or three codes for every destination string of one source string.?thank you
Describe the difference between subscripting and indexing ?
9(2).99 how many bytes take? Why . consider as a byte?