Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
Difference between Static Call and Dynamic Call

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Interview Questions
Author Message
debasish_barik

New User


Joined: 24 Jun 2006
Posts: 4

PostPosted: Mon Aug 13, 2007 4:27 pm    Post subject: Difference between Static Call and Dynamic Call
Reply with quote

Can anyone explain me in a bit detail - the difference between static call and dynamic call.
Back to top
View user's profile Send private message
References
PostPosted: Mon Aug 13, 2007 4:27 pm    Post subject: Re: Difference between Static Call and Dynamic Call Reply with quote

William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 2978
Location: Tucson AZ

PostPosted: Mon Aug 13, 2007 4:35 pm    Post subject:
Reply with quote

Try pasting your topic title in the search argument........
For instance:
Difference B'ween STATIC & DYNAMIC
Back to top
View user's profile Send private message
uma rao
Currently Banned

New User


Joined: 20 Oct 2007
Posts: 8
Location: delhi

PostPosted: Mon Oct 22, 2007 4:23 pm    Post subject: Reply to: Difference between Static Call and Dynamic Call
Reply with quote

hi, the difference between static call and dynamic call is : if you changed the subprogram you need to compile both main program and subprogram when it comes to dynamic call you need not compile both . you can compile only subprogram wher you had made changes.
Back to top
View user's profile Send private message
sindhuvava
Currently Banned

New User


Joined: 05 Dec 2006
Posts: 17
Location: Chennai

PostPosted: Thu Oct 25, 2007 10:21 am    Post subject:
Reply with quote

This may help u:

STATIC Call:

1) Identified by Call literal.
Ex: CALL ‘PGM1’.

2) Default Compiler option is NODYNAM and so all the literal calls are considered as static calls

3) If the subprogram undergoes change, sub program and main program need to be recompiled

4) Sub modules are link edited with main module.

5) Size of load module will be large

6) Fast,Less flexible.

7) Sub-program will not be in initial stage the next time it is called unless you explicitly use INITIAL or you do a CANCEL after each call.

DYNAMIC CALL

1) Identified by Call variable and the variable should be populated at run time.
01 WS-PGM PIC X(08).
Move ‘PGM1’ to WS-PGM
CALL WS-PGM

2) If you want convert the literal calls into DYNAMIC, the program should be compiled with DYNAM option.
By default, call variables and any un-resolved calls are considered as dynamic

3) If the subprogram undergoes change, recompilation of subprogram is enough.

4) Sub modules are picked up during run time from the load library.

5) Size of load module will be less.

6) Slow compared to Static call.
More flexible.

7) Program will be in initial state every time it is called.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Interview Questions All times are GMT + 6 Hours
Page 1 of 1