IBM RPG400 Question:
What is difference between Bind by copy and bind by reference?
Answers:
Answer #1bind by copy: here module will static
bind by reference: here module will be dynamic.
bind by reference: here module will be dynamic.
Answer #2Bind by copy: if you are crating a program mainpgm by using modules mod1,mod2,mod3 then the source will copied to the Mainpgm and creates the Mainpgm.the cqll( Call B and CallP ) will be static.
Bind BY REFERENCE:
Always the service program will be bound to the main program by Bind By Reference. the calls( CallB or CallP) will be static.
Bind BY REFERENCE:
Always the service program will be bound to the main program by Bind By Reference. the calls( CallB or CallP) will be static.