in real time what is the suitable exp where in-stream procedure is better then catalog procedure.
Answer / adarsh13
In-Stream Procs are used when 1) The proc steps used in in-stream proc are no longer needed in any other JCL's
2) When you need to minimise your code changes i,e no need of extra Member are to be created , we can go for In-stream proc.
Please correct me if i am wrong.
But, Catalog procs are widely preferred over in-stream proc.
| Is This Answer Correct ? | 1 Yes | 0 No |
what are the working storage fields in BMS macro?
can we declare s9(9)v9(9) in cobol ? if yes how many bytes it will occupy ?(urgent plz answer it)
in cobol i have one file it contains records like 10,4,23,98,7,90..... total records 100. iwant 10 to 20 in reverse order in cobol environ ment any one please give the answer......
How will 128 be saved in s9 (3) comp-3 How will 12 be saved in s9 (2) comp
How can I find the maximum value of a field in a file while reading the file dynamically? without using sort function. Suppose i have a file with fields Timestamp, description, teamname, teamnumber.. i have read the file till end and find the maximun value of timestamp which is not in sorted order.. can we use function max(timestamp)?
There are two flat files one having 10 records and other having 5 records. write a cobol pgm to find the duplicate records(matching records)from both files.
Differentiate COBOL and COBOL-II?
how do you reference the printer file formats from cobol programs
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?
How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(9) VALUE SPACES. 01 WS-VARN REDEFINES WS-VARX PIC 9(9).