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 move a value to an array using move verb?
77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value zeros. move a to b what is the answers for both cases? IS it possible? Give me elementary move rules briefly......
How do you get the data to code the BMS macro?
If we use GO BACK instead of STOP RUN in cobol?
In a file if a column account number conatain value 0001234.. how can we move the value to another variable without zero. value may contain any type such as 00123405. we need the value 1234 or 12305. how can we do that in cobol. Please help.
How do we get current date from system with century in COBOL?
01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.
What guidelines should be followed to write a structured Cobol program?
what will happen if i give program name and member name as different? program runs successful or w'll abend?
Can anybody give me example of subscript and index
What is the difference between subscript and index?
Program A calls program B. Will the working storage variables declared in program B be initialized every time it is called by program A or will the values be retained until the end of program A?