|
|
| Author |
Message |
sararaju
New User
Joined: 04 May 2005 Posts: 26
|
|
|
|
Anyone can tell the compile code where we mentioned the (nodynam or dynam) pls tell the answers with some coding program example. thanks in advance.
sararaju |
|
| Back to top |
|
 |
References
|
|
 |
priya
Moderator
Joined: 24 Jul 2003 Posts: 624 Location: Bangalore
|
|
| Back to top |
|
 |
mmwife
Super Moderator
Joined: 30 May 2003 Posts: 1526
|
|
|
|
In some cases the pgm code can override the compiler option selected:
| Code: |
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 |
|
|
| Back to top |
|
 |
sree_2503
New User
Joined: 22 May 2005 Posts: 12 Location: Chennai,India
|
|
|
|
Hi Sararaju,
In the Cobol Compile step of the job, pass the param as below...
//COB EXEC VCOBC, COBOL COMPILE
// COND=(8,LE),
// PGMNAME='XT00VSC2', TRACEMSTR CB2
// CPARM='NODYN,LIST,RENT',
// CDSEP=',',
// DPARM='NODYN,RENT',
Hope this helps... |
|
| Back to top |
|
 |
|
|