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 |
Why we cannot call a service program? If I add a PEP can i call the service program?
How to read alternative records in a pf by using rpg?
1.How you will find the program is batch or online in cl pgm? 2.How you will end the batch pgm when the job runs? write an logic? 3.In wich command the option *drop is used?
while i am using the dspmsg command on comman line in Mocha am getting error like Not authorized to message queue message my messagequeue Name? can anybody help me how to change my message queue Am anable to see my messages in message queue
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??
How can we change element of compile time array?Can we do so
Hi, can any one tell me :IN CASE OF SINGLE PAGE FILE HOW WILL I LOAD THE PREVIOUS PAGE WITHOUT THE USE OF SFLCLR INDICATOR ?
ESCAPE message sent by child program can be handled by parent program using which keyword?
How we will read call stack?
if there is pf in two libraries and there is a logical file based on the PF, how to find the pf on which the pf is based.
parameters cannot be passed in which one???
1.find most occurrences of a character. for exm: input:aaabbbbdddddyyy output: d 5 times how can i get that?