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 will be the value of STRING after line 0106 is executed in the code below? 0101 E* Fromfiletofile..tabnameprnentlenpdatabnamlenpda 0102 E ARR 8 1 0103 ISTRING DS 0104 I 1 8 ARR 0105 C MOVE *BLANK STRING 0106 C MOVEA'ABC' ARR A) 'AAAAAAAA' B) 'BBBBBBBB' C) 'CCCCCCCC' D) 'ABC ' E) ' ABC'
Suppose we have 10 records with same name and we are reading using READE,after 4 record i have to use CHAIN what is the output
How can we receive values from a called procedure in RPG?
Program to read marks of 10 students for 4 subjects and compute and display total marks and status of each student in rpg
What is the purpose of Panel Groups?
what is importance of 'MAPFLD' IN OPNQRYF FILE ?
If the last record of a file has been read, and the next operation on that file is a READ operation, what will be the values of the input fields for that file? A. They will be blank and/or zero. B. They will be null. C. They will equal the values of the first record in the file. D. They will equal the values of the last record read.
1) How to declare a file? 2) How to define a display file? 3) How to monitor error messages in RPG? 4) How to find the attributes for subfiles? and what is the DDS for subfiles?
if there is a module object , how to find the program object for this module object.Assume the module object name and program object name is not same.
You have a *USE authority on a Library and *All authority on a file in that Library.Can you change the data in that file?
In case if I want to know whether a record exists in a file, which one do you prefer CHAIN or a SETLL and why ?
When it is desirable to describe files Internally?