Answered Questions

  • How to read,write records form bottom from a sequential file in cobol?

    vijay

    • Jul 31st, 2011

    ------>Just read all records into an array....
    ------>Then read records in reverse order by using subscript or index from array....
    ------>Now write records into new file....

    P.Karthikkumar

    • Jan 17th, 2007

    Hi, It is possible through jcl. For example if the input file contains 80 record length thenIn sort, INREC=(1:1,80,81:SEQNUM,6,ZD),SORT FIELDS=(81,6,ZD,D),OUTREC=(1:1,80) 1) Using inrec...