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 is sflinz and sflrna?
What is the maximum number of subfiles that can be specified in a display file?
STRTCPFTP command is used to start FTP in CL Language (ILECL)....can u plz tell me which command is used to start SFTP in CL language(ILECL)?
Describe about Query/400?
is their a difference in cobol400 for the release 5.2 and 6.1 at the as400.
Hi i have one question In my srvpgm one module ADDM is there now i want to add new module i.e SUBM , please answer me IN STEPS how to write bndlanguage and how it was attach to SRVPGM
how can you check for a records existence without causing and i/o (chain/read)?
What is the benefit of using Externally Described files over Internally Described?
how can i get the cursor position in display screen to to display my window?
is it possible to do commitment control with out journaling?
Why would you prefer OPNQRYF than logical file?
How to reverse a string using RPG?