How to read a record from bottom of a file which is
indexed by 'A'.
Answers were Sorted based on User's Feedback
Answer / bm
USE SORTING ie:
SORT file-name1
ON DESCENDING KEY A
USING file-name2
GIVING file-name3
then read file-name3.
This is the nearest I can think of, any other solutions
please..
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / mahesh
we can read a file from bottom using "EXEC CICS READ PREV"
command in COBOL program.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / rd
WE can use low valus to execute the file from bottom.
| Is This Answer Correct ? | 0 Yes | 3 No |
how do u link sub pgm to main pgm ?
Suppose i have a Cobol field of 10 byte. it contains a decimal sign.How to know where is the point location?
What is SDSF?
How to pass return codes from cobol to jcl?
How To Separate The Numerics From An Alphanumric Data Item Which Contains Both Alphabates And Numerics ?
01 a pic 9(6) value is 123456 01 b pic 9(3) move a to b wht will be the value ?
How to find whether a Flat file is empty or not without Reading a file in COBOL Program. (not using JCL)
) How do you access the migrate the data from production region to development region
what is the minimum number of lines a Cobol program should have to successfully compile and run
11 Answers ABC, Societe Generale,
Without using move verb how to move one variable to another.
. How do we cast a variable in COBOL
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?