please help me answer to this question
what is the difference between the binding and srvpgm in
ilerpg?
Answers were Sorted based on User's Feedback
Answer / srini
once srini here ,see above i send for diff b/e srvpgm &
bnddir ok
now ,see diff b/w srvpgm & binding
1) binding means physicaly module copy into main pgm,this
process is bind by value.
step1:CRTPGM +f4 pgmname/lib
module1/lib
module2/lib...so on +enter.
pgm is created.
2)srvpgm means ,physicaly module are not copy into main
pgm,this process is bind by refference.(i.e ,we call main
PGM ,it will call srvpgm and reffer the module)
step1:CRTSRVPGM +f4 SRVpgmname(any name)/lib
module1/lib
module2/lib...so on +enter.
srvpgm is created.
step2:CRTPGM +f4 pgmname/lib
+f10(page down)
bindsrvpgm...>srvpgmname/lib +enter.
PGM is created.
ok, thna"q" pls rong correct me. bye...
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / manikandan s.k.
Hi Binding directory is nothing collection of service
programs/Module.
service program only contains the procedure and its going
to be refered at runtime.
suppose the program 'A' has using 2 service programs s1,s2
and one module m1.
you can include these 2 serive programs and one module in
one binding directory(BD1).
that is BD1 now contains s1,s2,M1. so instead of include
all the objects s1,s2,m1 you can refer/include the
directory name.
have to declare the binding directory name in the Hspec or
module creation time .
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / pramod & remya
Service program-These are pgms that holds the modules that
we frequently used in a pgm. ie, we need to bind this
service pgm with a pgm in order to work with the modules in
it. now we can call the modules by using callb. Service pgms
are not work independently. Service pgms provides services
to another pgm or modules when needed.all the modules in the
service pgm exists in the same activation group.
Binding directory- it used to increase system performance
.Instead of searching in all libraries,the ile compiler
check the existence of object in binding directory.If it
will not find the obj in binding directoy, it will search in
other lib list.
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / srini
HI,this is srini,
i am giving one point above Q's
SRVPGM:it is nothig but collection of module's.we con't ADD
module to this srvpgm.
BNDDIR:it is collection/index of modules. here we can ADD
module to BNDDIR.(by using BNDDIRE go thire see opton's)
pls ,if rong correct me.
| Is This Answer Correct ? | 7 Yes | 8 No |
What is significance of a file designated as a Primary file in Rpg400 program....also what's use of secoundry file
how can i retrieve the field name from display file at run time? Devendra Singh Tomar
1.I have a Physical file with 100 records, No duplicates exists, all are Unique,But while i am running Runqry utility i am getting only 80 records..What could be the reason?
How do you proceed in case your active AS400 session has got disconnected suddenly, how can you get back to your session ? Is it possible??
what is batch debug in as400?
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.
I have a Physical File name 'File1', which is present in two libraries named 'LIB1' & 'LIB2'. These 2 libraries are listed in the library list. Would like to access data from this file from these two libraries using RPG program. How to do this, any idea?
How to declare the dynamic(run time) array in rpgle? can you please give example
what is commitment control?explain about it?
How would display prime numbers using CL program?
thanks mr.Harshad R Suryawaunshi,i'm new to as400 i think you are telling in rpgile i know only rpg400 if possible can you tell in rpg400
How can read PF in reverse order (end to start) in CL pgm..