10 pts.
 RPGILE
Hi All

      In activation group suppose 2 program is reading same file the 1[sup]st[/sup] record reading by 1st program how second program will read second record how will do in RPGILE by activation group?  



Software/Hardware used:
ASKED: October 14, 2009  6:29 AM
UPDATED: May 19, 2010  12:24 PM

Answer Wiki:
Only one program is actually executing at a time. One calls Two, then returns to one. The only concern you should have if one of the programs locks a record before going to the 2nd program. The pointer fom the first program does not pass to the 2nd program. ---------------------- I do not understand your question! These are two different programs active at the same time? The second should know that the first is using the first record? Are records locked because they are accessed for update? Phil
Last Wiki Answer Submitted:  October 14, 2009  1:40 pm  by  CharlieBrowne   33,695 pts.
All Answer Wiki Contributors:  CharlieBrowne   33,695 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Use OVRDBF SHARE *YES on that file and it will do what you are looking for.

 70 pts.