i want to display the 10000 record in a subfile by using
loadall , can we do it?
Answers were Sorted based on User's Feedback
Answer / mithun paul
We can't display the 10000 records in a subfile by using
load-all. Because, in the case of load-all subfile, system
take care the Page-Up and Page-Down request for up to 9999
records.But byond 9999 records system can't take care the
Page-Up and Page-down request and program crases.
In this case we have to use single page subfile, where we
have to write code for Page-up and Page-down and it will
process any number of records.
Mithun Paul
KMG Infotech
Kolkata
| Is This Answer Correct ? | 44 Yes | 1 No |
Answer / reshma
No
We Cant load 10000 records through Loadall Subfile
for that we 'll have to use Single page subfile.
Regards
Reshma
| Is This Answer Correct ? | 17 Yes | 3 No |
Answer / kalyan
can i clear the 9999 records and add another 9999 records
into subfile(load all)?
is it possible in Load all?
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / amit
KALYAN , YES YOU CAN DO IT UNLIMITED TIME THIS BUT THERE IS
A CONDITION THAT AT A TIME YOU ONLY CAN LOAD 9999 RECORDS
IN A LOAD ALL SUB FILE.COZ RRN 'S SIZE IS 4,0( RRN-RELATIVE
RECORD NUMBER) WHICH CAN CONTAIN AT MAX UPTO 9999. FOR
LOAD ALL SUBFILE YOU CAN CLERE ANY TIME AND CAN LOAD NEXT
9999RECORDS INTO .FOR THIS YOU HAVE TO SET RRRN 9999 TO
RRN - 1 FROM THIS POINT YOU WILL START AGAIN LOADING.
cheers
Amit
| Is This Answer Correct ? | 12 Yes | 3 No |
Answer / jitender chandel
Hi
First thing is that u can’t load more than 9999 at a time at
all.
and this is the limitation in Load all subfile
If yout pf contain mote than 9999 records and you want to
display all the records in load all subfile then you have to
do some changes in your load subroutine of your rpg pgm.
In the load subroutine
if RRN > 9999 then it make rrn = 1 then it again load the
subfile
Jitender Chandel
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / vivek dwivedi
Hi,
This is not possible. Reason is that --> Load all subfile load the records of the file to subfile buffer at compile time. So in this can not clear the subfile buffer at all.
You can do in Expanding subfile. Because Expanding subfile loading the record to buffer as per sflsize and page down handle by programmer so that programmer can clrsfl .
Hope you understand.
Thanks
Vivek
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravikumar
Yes.. It is possible.
With the help of sflclr keyword..
When 9999 records loaded in subfile buffer and displayed .. After displaing , with the help of sflclr keyword 1st clear the subfile buffer and load with the remaining records from databasefile with 10000th record and display with sfldsp keyword in loadall subfile...
I hope this answer will helps u.. Thank you
I have faced this question in ibm...
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / ravi
The moment the PF exceeds 9999 records and you try to display the subfile it fails with session/device error occured.
But, in expandable/self extending, you can page down till 9999 and the moment RRN is sfl becomes 9999 and you try to write the 10000 record, it fails because the records are stored in buffer and rrn accumulates.
single page/page by page, no storage in buffer, we have to do pgup/pgdwn.
| Is This Answer Correct ? | 0 Yes | 2 No |
how can I automatically refresh a web page?
what are the types of errors available in rpg IV or 400.Like decimal data error,sessional error or device error etc...means important error occurings,ie to find out suddenly???pls give answ if u know?
describe the difference between the dowxx and douxx operations?
Where would you use Override Data Base File?
is there any way I can ease my rpg controls on numeric input fields? How about an input date field?
what would be the effect on the field where reverse image, underline and highlight display attributes were active?
I am fresher 2009 passedout.can you pls explain me what is AS400 and where it can be used and how about growth in the position as well as salary, whether it is a programming language or else?
Suppose you have 3 members in a database file. How to read records from all the members Without using CL (OVRDBF) i.e. it should be handled exclusively in an RPG program?
What Does 'sr' In Columns 7-8 Of C Specs Mean?
I want to run ls *.csv (sftp command) from CL Program... Can u plz tell me when SFTP command will start running? i.e.which command should I use in CL Program to run ls command?
What is Sub-System?
what are the parameters required for calling ls & get command(SFTP COMMANDS) from cl progtram.... e.g call PGM(qp2shell) PARM('/qopensys/usr/bin/sh' '-c' 'sftp -b /home/mydir/tmp.txt user@host.com') Plz reply in detail...