IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Difference between Static Call and Dynamic Call


IBM Mainframe Forums -> Mainframe Interview Questions
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
debasish_barik

New User


Joined: 24 Jun 2006
Posts: 4

PostPosted: Mon Aug 13, 2007 4:27 pm
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
William Thompson

Global Moderator


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

PostPosted: Mon Aug 13, 2007 4:35 pm
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
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
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
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> Mainframe Interview Questions

 


Similar Topics
Topic Forum Replies
No new posts Using Dynamic file handler in the Fil... COBOL Programming 2
No new posts Error while running web tool kit REXX... CLIST & REXX 5
No new posts JCL Dynamic System Symbols JCL & VSAM 3
No new posts Call program, directly from panel CLIST & REXX 9
No new posts Timestamp difference and its average ... DB2 11
Search our Forums:

Back to Top