> -----Original Message----- > From: IBM Mainframe Discussion List > [mailto:[email protected]] On Behalf Of Marco Gianfranco Indaco > Sent: Friday, September 04, 2009 11:20 AM > To: [email protected] > Subject: ICETOOL and USS HFS SYMNAMES > > Hi. > I've a problem calling ICETOOL and referring SYMNAMES as unix file. > I suppose that's caused by CrLf but I have no idea on how to solve it. > jcl sample: > //TEST EXEC PGM=ICETOOL > //SYMNAMES DD PATHOPTS=(ORDONLY),PATH='file' > toolmsg: > ICE270I 1 PROCESSING SYMNAMES STATEMENTS > SOC2_N,1,2 DLMS1,*,1 SOC3_N, > $ > > Many thanks in advace. > > Regards, > > -- > Marco Indaco
Try adding FILEDATA=TEXT to your DD statement: SYMNAMES. I've had that work for me. Be sure to add RECFM=F,LRECL=80,BLKSIZE=80 also. //SYMNAMES DD PATHOPTS=(ORDONLY),PATH='file', // FILEDATA=TEXT, // RECFM=F,LRECL=80,BLKSIZE=80 I am not totally sure this will work with ICETOOL, but it does with IEBGENER. -- John McKown Systems Engineer IV IT Administrative Services Group HealthMarkets(r) 9151 Boulevard 26 * N. Richland Hills * TX 76010 (817) 255-3225 phone * (817)-961-6183 cell [email protected] * www.HealthMarkets.com Confidentiality Notice: This e-mail message may contain confidential or proprietary information. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. HealthMarkets(r) is the brand name for products underwritten and issued by the insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake Life Insurance Company(r), Mid-West National Life Insurance Company of TennesseeSM and The MEGA Life and Health Insurance Company.SM ---------------------------------------------------------------------- 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

