View previous topic :: View next topic
|
Author |
Message |
sudheer648
New User
Joined: 23 May 2005 Posts: 97 Location: Chennai
|
|
|
|
Hi,
How the Dynamic Call is implemented in PL/I.
I heard a statement called FETCH used for it.
Need some inputs from all of you about this topic. |
|
Back to top |
|
|
hsourabh
New User
Joined: 24 May 2005 Posts: 12 Location: Z?rich
|
|
|
|
Hi Sudheer,
Any simple dynamic calls can be implemented inside a PL/1 program by
calling that external module (for e.g. CALL XYZ(paramters)). For this you have to declare the called module as an external entry inside the calling program, and during compilation of the latter you must link edit both i.e the load library of the former must be mentioned in the job step.
Another way of implementing a dynamic call is by using FETCH (FETCH XYZ). But there are few restrictions here like variables with controlled and external attribute are not allowed inside the fetched module, fetched procedures can't fetch further procedures etc.
Bye,
Sourabh |
|
Back to top |
|
|
sudheer648
New User
Joined: 23 May 2005 Posts: 97 Location: Chennai
|
|
|
|
Hi Sourabh,
Thanks a Lot.
Bye the Way Sourabh can you feed some inputs on my topic about the String Conversion Errors in PL/I.
Thanks in advance. |
|
Back to top |
|
|
|