How can u create a temporary file in CLP @ how to access
that temporary file in RPG program?
Answers were Sorted based on User's Feedback
Answer / ravi shankar porwal
The temporary file can be created using Open Query file
commond(OPNQRYF).And it can be shared by other RPG programs
by specifying the shared ODP Paramenter 'yes' either by
OVRDBF Commond in cl pgm or by CHGPF Commond.
| Is This Answer Correct ? | 12 Yes | 4 No |
Answer / mike
CRTDUPOBJ QTEMP/FILENAME
OVRDBF FILENAME TOFILE(QTEMP/FILENAME)
CALL RPGPGM
DLTOVR FILENAME
DLTF QTEMP/FILENAME
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / svankipu
Use OVRDBF Command with SHARE(*YES) to share the ODP of this
file to othr pgms.
create temporary file using Open Query file command(OPNQRYF)
and use "Allow copy of data" (ALWCPYDTA) attribute to copy
the selected data into this file.
Now call the RPG pgm to use this file.
Thanks!
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / syam
It means a Data Area.
1. Create a Data Area = CRTDTAARA
2. Retreive a Data Area = RTVDTAARA (Read)
3. Change Data Area = CHGDTAARA (Write)
This all CL command and It can use in RPG program to Read
Data Area.
| Is This Answer Correct ? | 1 Yes | 14 No |
What command must be executed before executing OPNQRYF command?
how can a procedure will be added in to a srvpgm
What is the maximum number of subfiles that can be specified in a display file?
I have SQLRPGLE program in which there are some update statements which executed correctly. there were no errors run time. Once the program gets over, the file was not updated with the new values. What might be the reason?
What is the purpose of PR and PI in calling program and called program? in Called program PR is compulsory?
define a shared access path?
what are the different opcodes available in rpg for database access ?
Dear All, I have one confusion related to my platform. I am working with Wipro from last two year however still I am looking for AS400 platform kindly show me the way out of it. And please share with me the hardware knowledge that how I grow myself in hardware (AS/400) also.
What is the Difference between command attention key and command function key ?
describe the difference between the dowxx and douxx operations?
What are the different opcodes used for file operation on a subfile in a rpg pgm?
What is the use of Header Specification in RPG/400?