Hi, can any one tell me :IN CASE OF SINGLE PAGE FILE HOW WILL
I LOAD THE PREVIOUS PAGE WITHOUT THE USE OF SFLCLR INDICATOR
?
Answers were Sorted based on User's Feedback
Answer / sridevi mj
HI,
Specifying the rolldown key(Page up) in the RPG code.
Followed by this,the SFLPAG can specify the number of lines
pr page, SFLRCDNBR pointing to how many previou records to
be loaded.
| Is This Answer Correct ? | 2 Yes | 3 No |
1.Load an runtime array of length 99 from the pf and you want to handle all the possible errors?
what is overlay? how can we pass parameters in cl or rpg programing? how can we get data area value in cl or rpg programming?
Q:HI friends accually ihave one problem plesase let me know the alternate code of this code. Related field description of code: Add a field, CALvsPRD, "Calendar Day Starts Before/After Production Day" to the parameter set WRKORDER which accepts values 'A' or 'B' o B = Calendar Day Starts Before Production Day o A = Calendar Day Starts After Production Day o Any other value indicates the production and calendar dates are always the same. code: Automatic Execution Of *INZSR Subroutine /Z01 * retrieves WRKORDER field values. /Z01 * Calculate default Production Date and return it to caller. /Z01 * Production date defaults to system date /Z01 C Eval P@Pdate = %DATE() /Z01 * unless Calendar date starts Before PDN(production) date and /Z01 * system time is before PDN Start Time then /Z01 * PDN date is yesterday. /Z01 C If W@CALvsPRD = 'B' and /Z01 C %TIME() < %TIME (W@Strtime) /Z01 C Eval P@Pdate -= %Day(1) /Z01 * unless Calendar date starts After PDN date and /Z01 * system time is *GE PDN(production) Start Time then /Z01 * PDN date is tomorrow. /Z01 C ElseIf W@CALvsPRD = 'A' and W@Strtime > *Zero and /Z01 C %TIME() >= %TIME (W@STrtime) /Z01 C Eval P@Pdate += %Day(1) /Z01 C EndIf /Z01 C Eval *InLr = *On
what is meant by record lock.how records are locked.what is the purpose of record lock.if records are locked what happens.how to find out which record is locked.
which program rpg or cl is efficent to update a transaction onto a database file and why ?
purpose of pannel group??/
Can we found a record existance in a file w/o reading the file?
6 Answers Traitsys Technologies,
what is a rpg?
If the last record of a file has been read, and the next operation on that file is a READ operation, what will be the values of the input fields for that file? A. They will be blank and/or zero. B. They will be null. C. They will equal the values of the first record in the file. D. They will equal the values of the last record read.
How to write record if no field or the field are different in physical file in rpgle ?
What is journalling and commitment control?
how can I tell when to replace the array?