On 3 November 2011 16:11, Fred Kaptein <[email protected]> wrote: > //SYSLIN DD * > INCLUDE SYSLIB(PCOPY) > INCLUDE SYSLIB(PCOPY2) > NAME PCOPY > AC(1) > ALIAS PCOPY2 > > but it fails with the following errors [...] > IEW2230S 0414 MODULE HAS NO TEXT. [...]
This is probably because you have statements after the first NAME statement, and the NAME marks the end of the module. Or more precisely, the end of the input that will go into the module. There is no AC statement; what you want is SETCODE AC(1) . I'm surprised there was no message. You *did* cut & paste this stuff, right? And you did include *all* the statements and messages? Tony H. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

