REXX variables

2010-05-31 Thread Berry van Sleeuwen
Hello listers, We have a rexx exec called by PROP when an event occurs. But it didn't gi ve us the result we were expecting. I have changed the exec now, hopefully i t will be good. But still, why didn't the exec work the way I expected? I h ave tried to replicate the result but was not able to.

Re: REXX variables

2010-05-31 Thread Tony Thigpen
Try changing: cmdtrap = strip(data.1) to cmdtrap = upper(strip(data.1)) Tony Thigpen -Original Message - From: Berry van Sleeuwen Sent: 05/31/2010 05:14 AM Hello listers, We have a rexx exec called by PROP when an event occurs. But it didn't give us the result we were

Re: REXX variables

2010-05-31 Thread Kris Buelens
Strip is not required at all here (parse splits in words; except for the last one, but the . following w11 makes w11 is without blanks too). And uppercasing can be done in PARSE too, hence parse upper var cmdtrap w1 w2 w3 w4 w5 w6 w7 w8 w9 w10 w11 . 2010/5/31 Tony Thigpen t...@vse2pdf.com

Re: REXX variables

2010-05-31 Thread Berry van Sleeuwen
Looking closer at the trace, all records appear to be in upper case, even the records that are in lower case. Does (or perhaps i should say did?) OPERATOR in VM 2.2 translate everythi ng to upper case? In zVM 5.4 we also see lowercase in the OPERATOR log. Regards, Berry.