View previous topic :: View next topic
|
Author |
Message |
chenchi
New User
Joined: 10 Jun 2004 Posts: 12 Location: Bangalore,India
|
|
|
|
hi
working-storage section.
01 w1-program pic x(8) value 'program1'.
procedure division.
call w1-program.
whether it is static call or dynamic call or any error occurs...?
thank u |
|
Back to top |
|
|
sandip_datta
Active User
Joined: 02 Dec 2003 Posts: 150 Location: Tokyo, Japan
|
|
|
|
It is Dynamic Call. Why don't you try this in a small program and let us know the result?
Regards,
Sandip. |
|
Back to top |
|
|
mmwife
Super Moderator
Joined: 30 May 2003 Posts: 1592
|
|
|
|
If you did a search on "static" you would have found this:
If compiled as NODYNAM:
CALL 'literal' is a static call
CALL WS-label is a dynamic call
If compiled as DYNAM:
CALL 'literal' is a dynamic call
CALL WS-label is a dynamic call
Regards, Jack. |
|
Back to top |
|
|
|