> -----Original Message----- > From: IBM Mainframe Discussion List > [mailto:[EMAIL PROTECTED] On Behalf Of John Mattson > Sent: Tuesday, January 09, 2007 3:18 PM > To: [email protected] > Subject: REXX EXECIO changing LOWERCASE TO UPPERCASE > > > I have a fairly simple REXX that reads record by record from > a PDS member > and then writes to a new file. Basically a REXX ibegener. > (Yes, I know > there are better ways, but please humor me, I have reasons.) > Problem is > that it reads in lowercase characters as UPERCASE. What I > want to do is > PRESERVE the case whatever it is... Anyone have any ideas > no how to fix > this? >
WAD. PULL RECORD is short for PARSE PULL UPPER RECORD You need PARSE PULL RECORD to maintain the upper/lower case. I learned this the hard way, myself. -- John McKown Senior Systems Programmer HealthMarkets Keeping the Promise of Affordable Coverage Administrative Services Group Information Technology The information contained in this e-mail message may be privileged and/or confidential. It is for intended addressee(s) only. If you are not the intended recipient, you are hereby notified that any disclosure, reproduction, distribution or other use of this communication is strictly prohibited and could, in certain circumstances, be a criminal offense. If you have received this e-mail in error, please notify the sender by reply and delete this message without copying or disclosing it. ---------------------------------------------------------------------- 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

