What is the purpose of PUTOVR keyword?
Answers were Sorted based on User's Feedback
Answer / surendra y mudliar
PUTOVR keyword is used with OVRDTA and OVRATR keywords to
override the data and attributes respectively on the
display file which is already active.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / kcsyam
keyword to permit the override of either display file
attributes or data contents of specific fields within
a record displayed on the work station device.
| Is This Answer Correct ? | 4 Yes | 0 No |
How to search particular records from the database file in rpg?
What does Implicit Open means with respect to a file ? What about the Explicit Open?..what are the major differences between these two?
can I touch the array during treatments?
How to find d key field of a pf that doesn’t have source physical file?
What will happen if we r using seton lr after return or vice versa.
how to find whether a date format is valid or not in RPG400 not in RPGILE.Can you please write the coding for this sir,i'm new to AS400.Please help.
can anybody explain significance of *loval setll with example code????
can anybody help me to solve this problem. the program that i m checking display error message saying "Record format for file AJDSPFFD does not match model file and decimal error. how to solve this problem. The AJDSPFFD is snapshot the AJTLOG that is the audit trail list.
1. I have2 records in a PF. READ PF DO DSPLY EMPNO RETRN DSPLY EMPNO ENDDO What was the output 2. SETON LR vs RETURN 3. Primary File 4. How to delete a deleted spaces 5. How to read a PF in reverse order in CL 6. I have a object in Lib A, B and C. But it shows in D Lib..Why? 7.
Can we used ovrdbf command after the opnqry file if yes then What will be out put of your program?
How to read data from Nth member of a physical file containing some X number of members in it? "Provided member names are unknown"
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