How to read a PF in reverse(from last rec to first) using CL?
Answers were Sorted based on User's Feedback
Answer / harkesh
IN THIS EXAMPLE I M USING EMPFILE FOR READING IN REVERSE
ORDER.
PGM
DCLF FILE(EMPFILE)
OVRDBF FILE(EMPFILE) SHARE(*YES)
OPNQRYF FILE((EMPFILE)) KEYFLD((EMPNO *DESCEND))
READF: RCVF RCDFMT(MPFILR)
MONMSG MSGID(CPF0864) EXEC(GOTO CMDLBL(END))
GOTO READF
END:
ENDPGM
| Is This Answer Correct ? | 27 Yes | 5 No |
Answer / ankur
using opnqryf command we can read file in reverse order in CL.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / abhijeet m
OVRDBF FILE(ABC)
MBR(ABC)
POSITION(*END)
RCVF ABC
| Is This Answer Correct ? | 1 Yes | 10 No |
Why we create the Physical File Member?
Suppose I have a pf, it contains 5 members, how to access particular member data from logical file? What is the use of member in pf?
what is dynslt and why we use that command when do we use command
how can i know logical file belongs to which physical file without source?
what is general and type of general
How to insert more than one record to a pf at a time?(Bulk insert to a pf)
I have a PF with out any data but the dependent LF is having data?
I want to change the attribute of field or want to add new field in existing PF but condition is format level identifier should not change, is it possible?
What is the batch job?
what is the intractive job? what is the batch job ? how to change the batch job to interactive job?
Last statement of any rpg program is lr?
i have a PF,it contains 5 members,how to access particular member data from logical file ?and what is the use of member in PF