Can more than one subfile record be displayed on one line?
Answer Posted / 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 |
Post New Answer View All Answers
What are the types of identifiers?
if there is a module object , how to find the program object for this module object.Assume the module object name and program object name is not same.
which program rpg or cl is efficent to update a transaction onto a database file and why ?
what is an online rpg?
is this a rpg channel?
how can I tell when to replace the array?
what is program status data structure?
are there any useful c runtime apis that I can call from rpg iv?
How to select highest score of each subject or how to select highest income of every month?
How to declare the pull button in AS/400..
What is difference between bind by copy and bind by reference?
If my rpg program has a date field, what extra care I have to take while compiling that rpg program? If the file is keyed and I have declared the file as well as key list properly in my program. Still am getting an error message like "chain/reade operation is not allowed" what may be the case?
do you use message subfiles? What are the necessary keywords required coding a message subfile?
what do you mean by an input subfile, what are the keywords required?
Please tell me how to read the records from a file with load an array of size with error conditions(The logic answer for this question is ARR is array of 99 elements Z-ADD 0 IDX *LOVAL SETLL FILE READ FILE 99 *IN99 DOWEQ *OFF IDX ANDLT 99 ADD 1 IDX MOVE FIELD ARR,IDX READ FILE 99 ENDDO).So,Please give me the complete of this code.