how we create binder member for updating service program and
where we type this code on command line or in program ?
strpgmexp pgmlvl(*current)
export symbol (xyz0
endpgmexp.
plz explain me this step by step .
Answers were Sorted based on User's Feedback
We write a program Of Source Type BND and write the code
inside it like..
strpgmexp pgmlvl(*current)
export symbol (xyz0)
endpgmexp.
Suppose later date you want to add another procedure say
(xyz1),you can do by
strpgmexp pgmlvl(*current)
export symbol (xyz0)
export symbol (xyz1)
endpgmexp.
strpgmexp pgmlvl(*Pre)
export symbol (xyz0)
endpgmexp.
In this way, we don't need to compile the other programs
which are using this service program cause this binder
contains both types of Signature Current as well as
Previous.
Thanks!!
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / prasanth
I assume instead of using *Current and *Previous, u can go
for Hard coded signatures, Think of a situation that u r
service program had 100 modules/ procedures which are all
included in Binder language.
| Is This Answer Correct ? | 0 Yes | 4 No |
Hi Viewers can any body explain me how to update and ahange the already existed data in physical file using subfile ? please explain me with the code if possible?
How can we make use of SETLL operation in CL?
wat is the difference between array and multiple occurence data structure?
Can we possible to key with the date field?
How can i check the object existance in RPG program without using QCMDEXC command.
How to handle duplicate error handling in RPG?
Can we used ovrdbf command after the opnqry file if yes then What will be out put of your program?
1.How to read a subfile in out put mode? 2.what are the keywords used to share same file? 3.using composite key which rpg code used?
Can we have a Physical file without any member ? Please let me know
What is SFLNXTCHG keyword why it has used and where? Briefly explain with Example.
1.find most occurrences of a character. for exm: input:aaabbbbdddddyyy output: d 5 times how can i get that?
What is the RPG cycle?