Can we journel logical file and access path?
Can we use commitment control for non-join L.F?
Answers were Sorted based on User's Feedback
Answer / swadesh
We can't journel logical file but yes we can journel the
access path.
we can't use commitment control for logical file.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / samul
Thanks Vipin,
What does it make the difference if we use the commitment
control...?
I think when we use commt ctrl , that file should be
journal..isn't it...?
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / mohan k
If we want to keep any file in commitment control mode
forst that file should be journaled so we cant journal LFs
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vipin
We can't journel logical file and access path but we cab
use commitment control for LF
| Is This Answer Correct ? | 0 Yes | 4 No |
How do you call procedures in ILE?
Is it possible to call a subfile using CL. IF yes.. kindly help me out with explanation...?
can i use unique key in LF
What does Implicit Open means with respect to a file ? What about the Explicit Open?..what are the major differences between these two?
i have 6 char field in program, but this field is using in all files i want to chage field size as 10 char , how can i do this except using *like defn...?
IN RLU what are the record level keyword is used?
RPG/400 number of Records present in a physical file using file information data structure FPF001 IP E DISK F KINFDS INFDS1 IINFDS1 DS I *RECORD RECORD Is this coding correct sir,i have given I P E that is I- input,P-primary file,E-externally described. Primary to use RPG logic cycle,is this the correct method because we have to find number of records present using file information data structure in RPG/400 without doing any input/output operations on the file and also without using DSPFD,SQL. If the above coding is correct means,when i compile the program it gets compiled,but if i call the program it does not return anything,i need number of records,please complete the coding sir.
suppose if we want to update the data in cl what we will do?
1.Coding in cl to send an message? 2..What is turnover and use? What are the different levels?
Hi guys, anybody know How RPG/400 code can be converted to RPG IV code with a single command?
1) How to declare a file? 2) How to define a display file? 3) How to monitor error messages in RPG? 4) How to find the attributes for subfiles? and what is the DDS for subfiles?
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