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 |
how to access the file from prodution from changeman tool and to submit a file to production
When we code these comp,comp1,comp-2,comp-3 and comp4 values. I know the differnece.I mean when we will prefer if it is new program.Explain in detail with memory examples. Thanks in advance.
consider the following PROCEDURE DIVISION entry OPEN EXTEND IN-FILE identify the correct statement a.organization of IN-FILE is sequential and records can be added in the beginning b.organization of IN-FILE is sequential and records can be added in the end c.organization of IN-FILE is indexed and records can be added in the beginning d.organization of IN-FILE is indexed and records can be added in the end
How to concatenation one or more string?
i want to store 20 digits . h will u do it in cobol ?
when COMP-3 is preferrable?
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
What is COMP-1? COMP-2?
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.
What is Redefines clause?
How many bytes S(8) comp field occupy and its maximum value?
have in 100 records in a flat file i want to move records like 1,3,5,7,9,11,.. to Output file1 and 2,4,6,8,10,12,14 .. records moved to Output file2..Pls Provide real time answer..