In case if I want to know whether a record exists in a file, which one do you prefer CHAIN or a SETLL and why ?
Can anybody tell me the setps to create .csv file in IFS folder on AS/400. I also need to know how I can send this .csv file to PC in xls sheet.....?
what is *place and *auto keyword in prtf ?plz explain
What is the purpose of Panel Groups?
wat is scan and check ? give me real time scenarios where we used these keywords in ur projects?
how do you use commitment control in rpg?
How do you know if a record exists without doing a READ and CHAIN?
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?
I have file with data as follows data 1 2 3 4 5 I need to read 1 and 5 ,then 2 and 4 then like.. upto end of file, can any one help on this
there is any limit to display the members in rpg400?
Can anybody tell me, does CL/400 handle LEVEL check while running the CL program....? plz share your experience...
I want to add 10 days in current date. how it is possible in CL program...?
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.