Can more than one subfile record be displayed on one line?
Answers were Sorted based on User's Feedback
Answer / anu
BY USING THE KEYWORD SFLLIN KEYWORD WE CAN DISPLAY MORE
THAN ONE RECORD.
| Is This Answer Correct ? | 26 Yes | 2 No |
Answer / david lex
The question is 'can more than one SUBFILE line be
displayed on one line', the answer to which is yes and no.
The example, however, is more of 'can a subfile line be
more than one line'.
Using a over/under, or vertical subfile, one can have many
lines per actual subfile record. As the answer above state,
SFLLIN in conjunction with FOLD/DROP works great.
Using a side by side, or horizontal subfile, one can
actually display multiple SUBFILE lines, each with several
lines per actual record.
Quite different scenarios.
Also, for the record, you can use the alternate screen size
of 132 characters in width to gain more screen real estate.
There are, of course, limitations to this and those must be
addressed before just making the screen bigger.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rizwan
Actually the Question is regarding Displaying more than 1
records of a Pf in a single line.To do so,Subfile Keyword
SFLLIN is used.
For Ex a PF has Fields named as Iden,Addr whose total
length is 30.In that case since display screen has a room
for displaying upto 80 chars, we can place the first &
second record of the Pf in the same line which in total is
going to occupy nearly 70 space including the blanks for
displaying the fields in the screen.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nandini
For example, specifying the SFLLIN keyword causes a subfile
of four records to be displayed as:
REC1 REC3
REC2 REC4If SFLLIN is not specified, these records
appear as:
REC1
REC2
REC3
REC4
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / raheem
BY USING THIS KEYWORD "SFLLIN" KEYWORD WE CAN DISPLAY MORE
THAN ONE COLUMN OF RECORDS ON A SINGLE LINE.
THIS IS RECORD LEVEL KEYWORD ON A SUBFILE CONTROL RECORD FORMAT & IT BE DISPLAYED AS HORIZONTAL SUBFILE.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / samul
Yes,we can display the record in more then one line using
SFLFOLD,SFLDROP and SFLMODE...see the usage in redbook
| Is This Answer Correct ? | 1 Yes | 7 No |
Whether a module can consists of many procedures or it can consist of subprocedures having a main procedure?If it is possible that it can contain many individual procedures than can we have different name for complete module and how do we call this module in main modul?
what is batch debug in as400?
How to search particular records from the database file in rpg?
How do I read records from Subfile? what is the purpose of READC explain with example?
what is difference between DSPFD and DSPFFD?please give me real senario with good example?
How to read alternative records in a pf by using rpg?
WHERE DO WE USE COMIT KEYWORD IN AN RPG PROGRAM? YOU MADE SOME CHANGES TO DATABASE BUT YOU DON'T WANT TO SAVE THOSE CHANGES NOW? HOW DO YOU HANDLE THIS ONE?
why we do STRSRVJOB in batch debugging in as400
what is post opcode do
How to change the name of physical members Dynamically?
1.Suppose my file has 10 fields and I want to make the 2nd field Zeros in all records. And assume I have millions of records and I dont want to read each record and update the desired field with 0. Any other way to do this in one step operation? 2. Assume my file has 100 records and I want to see only first 10 records. Is this possible through LF? 3.I have 3 jobs A B and C. I want to submit B after successful completion of A and want to submit C after successful completion of B. Without using job scheduler or job queue, how can i do that through CL program? 4.What is difference between Bind by copy and bind by reference?
are there any useful c runtime apis that I can call from rpg iv?