what is jcl approach for programming?
Answers were Sorted based on User's Feedback
Answer / romi
Jcl is not used for programing..Its use to run the program
in the mainframe environment?
Is This Answer Correct ? | 16 Yes | 0 No |
Answer / venkatreddy.madathala
Jcl is not used for programing..Its use to run the program
in the mainframe environment.
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / shiva
actually jcl is an interface between the programming
language and the operating system...
it is used to compile and execute programs...
it is used to create and delete datasets..gdg's...vsamclusters..
it is used to copy data frm one data set to other dataset..
etc......
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / wairagade
yes. JCL is not programming language. Its just define and
control program execution sequence according to bussiness
needs. Define means , provide resources to program and
control means controlling the sequence .. Any thoughts are
welcome . Thanks for your time
Is This Answer Correct ? | 3 Yes | 0 No |
Why did you choose to work with ibm mainframe cobol programming?
what is the difference between COBOL2 AND COBOL390?
how can we code index in an array of cobol pgm?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
how can you identify wheather the program is using search or search all in the cobol program?
Define REDEFINE clause and Is it possible to have the redefine clause anywhere in the working storage section for a data name?
C1 C2 C3 are three conditions whose TRUTH values are as folloes. C1-TRUE C2-FALSE C3-TRUE A,B,C are defined as given below A:C1 AND(NOT C2) OR C3 B.(NOT C1) OR (NOT C2 AND NOT C3) C.(C1 OR C2)AND C3 D.C1 AND C2 OR C3 given the above information which of the following statements are valid? a.only A,B and C are TRUE b.only A,C and D are TRUE c.A,B,C and D are TRUE d.only C and D are TRUE
What is the significance of the PROGRAM-ID paragraph? If this name doesnt match with the name of the COBOL program, does it make a difference? Is the name specified in the PROGRAM-ID paragraph used as a name for the load module or any such thing?
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......
What is file status 92?
how to move the records from file to array table. give with code example
How to read records in reverse order in flat file? I know we can do it by reading all records into an array.... Then read records in reverse order by using subscript or index but can any body give me the exact code.