Page 1 of 1

rexx error information

PostPosted: Wed Mar 24, 2010 12:02 am
by helen2000
Hi all,

this is my rexx code,
 /*REXX*************************/       
  'ISREDIT MACRO (NESTMAC) PROCESS'     
     'ISREDIT (DATA1) = DATAID'         
     'ISREDIT (CURMEM) =MEMBER'         

I got the error, would you please tell me the first line format about rexx, thanks,
INVALID COMMAND NAME SYNTAX                   
      1 *-* /*REXX*************************/   
 0000100                                       
        +++ RC(-3) +++                         


Helen

Re: rexx error information

PostPosted: Wed Mar 24, 2010 1:14 am
by dick scherrer
Hi Helen,

Lots of ours use:
/* -------------- rexx procedure ------------- */

I suspect the sequence number (0000100) is causing a problem. . .

Re: rexx error information

PostPosted: Wed Mar 24, 2010 5:20 pm
by expat
Usually have my REXX in a library with UNNUMB

Re: rexx error information

PostPosted: Wed Mar 24, 2010 8:08 pm
by helen2000
You are correct, It's cause 0000100. right now it works. thanks, Mr Dick and expat.
Helen