I had ruestion in one of the interview.....
If 1 file has more than 1 member and i want to use the 2nd
member in the RPG pgm (in RPG400),how can I use this....
I know the possible answers i.e. useing API 'QCMDEXE' or
Before calling the pgm I can use OVRDBF for that member...
but I dont' want to use both the tips in above scenarion.
Does any body tell me how can i use this ....?
Answers were Sorted based on User's Feedback
Answer / swetha p rao
Using Extmbr key word in F Spec you can access the members
of file in RPG4.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / suresh kumar
1)create a logical file on the P.F while creating mentioned
the DataMember name in the crtpf command and use this
logical if u are not able to use ovrdbf in cl, Extmber in
RPG400/RPGIV and QCMDEXEC in RPG/RPGLE to Execute in OVRDBF.
ex: CRTLF FILE(FILEA) DTAMBRS((FILEA (MEM02)))
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sweta
What is the scenario exactly , You want to access all the
members of the file one by one and you donno the names of
the memebers
or
You want to access only second member and you donno the
name of the member
If you want to use only second number then define a
variable and initialise it with second member name.and in F
spec define the extmbr.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / samul
Sweta,
I think above scenario will clear what am trying to ask.
---------------------------
I have following scenario :-
a) One file says FILEA,has a three members
Members : Mem01 ,Mem02 ,Mem03
b) I want to use member Mem02 in my RPG400 program
(PGM01). (I have to use only RPG400 not RPGIV/RPGILE)
c) I don't want to use QCMDEXE,EXTMBR or OVRDBF in program
PGM01.
How can I do it....?
---------------------------
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravi
Small correction
1)create a logical file on the P.F.,while creating mention
the DataMember name in the CRTLF command and use this
logical if u are not able to use ovrdbf in cl, Extmber in
RPG400/RPGIV and QCMDEXEC in RPG/RPGLE to Execute in OVRDBF.
ex: CRTLF FILE(FILEA) DTAMBRS((FILEA (MEM02)))
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / shruti tayal
IGNORE/INCLUDE keywords are specific to all the record
formats of the member under consideration...so if used it
would ignore/include that specific record format not file
member.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / samul
I stuck in this scenario.
Welcome to all of you for the suggestion
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ankush chaudhary
Hi Paul,
In order to ignore say first member of a file and use the
2nd member we can use IGNORE and INCLUDE keywords on the F
specs.
IGNORE is used in case we do not want to use a particular
member of a file.
INCLUDE helps in using a particular record format for the
file.
Hope this clarify your doubt.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / srinath
In F Spec use Keyword EXTMBR(Second member name)
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / swetha p rao
If we can use SQLRPGLE we can ccreate alias on the member.
I am not sure of other ways other than extmbr, Ovrdbf in
RPG400.may be you can tell me of there any other ways
| Is This Answer Correct ? | 0 Yes | 1 No |
does we use case stmt in cl
what is externally described file ?
what is the function of rlu ?
how can you execute a command from within an rpg program without calling a clp program?
Q.1.What is differences in STRDBG and STRISDB debugging commands? 2.Where we should use STRDBG and STRISDB Debugging commands?
Hello friends, i am new to AS/400. Can any one help me in AS/400 i meant say can you send me some FAQS and interview questions.
how can we run a batch job?
Is it possible to join the same file to itself ?
In RPG How to read a records from a file without using read opcodes?
Describe about Query/400?
define what a data area is along with a brief example of what it may be used for?
What is the use of Data Queues?