Re: Compile and run later
Rick Fochtman <[email protected]>
| Newsgroups | gmane.comp.emulators.turnkey-mvs |
|---|---|
| Message-ID | <[email protected]> |
---------------------------<snip>-------------------------- ...... you can use the command:<> CALL 'HUDSON.LINKLIB(GRID)' Actually I tried this at first, but GRID needs a DD so it can print and it appearantly does not get it when you invoke it this way. The message come out on the system console 3270 : IEF125I FT06F001 DD STATEMENT MISSING to specify the library and program. There's also a STEPLIB command on the CBTTAPE site, but I don't know if it will work on 3.8J. ---------------------------<unsnip>--------------------------- You can pre-allocate that DD statement, or any other, by the command : ALLOCATE FI(FT06F001) DA(*) This will allocate the FT06F001 DD to the terminal. Then use the CALL statement to invoke the program. You can also do this for the FT05F001 and FT07F001 DD statements. Rick