Latest Answer: A lot depends on how much data and where it is coming from. Assuming the data is originated in JCL1, simply include a step to write the data to a data set or member of a PDS. You can do this with IDCAMS, SORT, FILE-AID, etc. Then in JCL2 you just read ...
Latest Answer: using attention identifier keys ...
For example to right justify the constant "hello" in a variable declared as X(10).
Latest Answer: While declaring the string variable, append the JUST clause.ex: 01 string-variable Pic x(10) JUSTthis will right justify the characters.......similary u can also left justify the numbers.... ...
Latest Answer: I've done this many times. Set up the JCL statements in Working-Storage as you want them to be presented to the operating system. Create an FD for an output data set with a fixed, 80-character format and write the statements to this file.In the JCL, ...
Latest Answer: If the data is in a specific position in the records, use the sort INCLUDE statement to select the records.//SORTSEL EXEC PGM=SORT//SYSOUT DD SYSOUT=*//SORTIN DD DSN=INPUT.FILE,DISP=OLD//SORTOUT DD ...
How to write "No records found" text to output file if input file is empty, by writting JCL.
Latest Answer: JCL acts as an intermediate which links the source code with the resources needed.for example: If in a cobol program you specify a file which you are manipulating, then through JCL, you tell the System about the specifications/Location of this file.Other ...
Latest Answer: Hi Siva,What is the purpose of JOB 7359?Elaborate your question......... What is that JOB 7359? What exactly you are looking for? ...
Latest Answer: Tape storage processing can only be used to store and retrieve sequential data. But in disk storage processing can used to store and retrieve data in sequentially and randomly. Access is faster in disk storage than tape storage. Tape storage device ...
View page << Previous 1 2 3 4 [5] 6 Next >>

Go Top