What is the significance of UDATE?
Answers were Sorted based on User's Feedback
Answer / suresh
UDATE supports two-digit year. The format is *MDY
(MMDDYY).
| Is This Answer Correct ? | 22 Yes | 2 No |
Answer / ps
UDATE has always been the date the job was submitted or
became active . IT does not show system date. @My
application runs never ending night jobs. We use UDATE to
get the job submission date.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / vipin
UDATE give the job date while *Date gives system date
| Is This Answer Correct ? | 9 Yes | 10 No |
what do you mean by an input subfile, what are the keywords required?
I have some doubts on subfile----------- -----I wrote a prog on subfile to display the records. Every thing is clear but i defined a field called "opt" as input field in subfile record format from that input field i wish to enter into new screen called "EDIT" which i created it as a separate RCD in display file. i gave opt as 2 for edit just like in WRKMBRPDM screen please telll me the code and how can i code for it in RPG.
1.What is the Maximum field length we can declare in RLU?? 2. What is the difference if your designing RLU using DDS and using the option 19 for the RLU??
Suppose you have 3 members in a database file. How to read records from all the members without using CL (OVRDBF) i.e. Entire process should be handled exclusively in a RPG program?
How do you code file / field renames in ILE RPG?
i have a file with the values 10, 20, 30, 40, if am setll with the value 25 then readp, so what it will return?
what are the types of identifers
can any body correct the following code? Following a procedure which returns the maximum of two numbers.Correct the following code. P GETMAX B D GETMAX PI D NUM1 35 0 D NUM2 45 0 C IF NUM1 > NUM2 C RETURN NUM1 C ELSE C RETURN NUM2 C ENDIF P GETMAX E
How to create a key field for a logical file inside RPG?
am 2010 passed out . can any one tell me which course is good to put 2+fake .guide me
When we have a file with Duplicate records and I want to read the unique record from the file. For example a file containing Emp Name as 'Ram' and there are 3 entries of it. So how to read a unique record from File?
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?