On Thu, 6 Mar 2014 22:01:36 +0000, Hansen, Dave L - Eagan wrote:
>
>   I found this site:  
> http://computer-programming-forum.com/38-rexx/35af2e8f164fb280.htm and this 
> EXEC:
>  
> address tso "call *(isrsupc)"                                             
> if rc =  0 then                                                           
>   do                                                                     
>     say "version identique."                                             
>   end                                                                     
>   else                                                                   
>   do                                                                     
>     say "!!!!! VERSION PROD APPROD DIFFERENTES !!!!!"                     
>     exit                                                                 
>   end


>   I found some doc that said ISRSUPC was documented in the ISPF User guide. 
> Vol 2.  I have been looking for where the KEYWORDS are listed for ISRSSUPC.  
> In appendix A they list some stuff.
>
>   It says: "The keywords and parameters are:"
>                  "CTYPE Specifies the compare type.  The parameter can be one 
> of the SuperC compare types (File, Line, Word, or Byte).  To call the 
> Search-For program, use CTYPE(SRCH)".
>                  "PROCESS  Specifies the process options"
>   OK, I want ISRSUPC to use a CTYPE of FILE to do a file level compare.
>
>
>   I tried:
>
>      "CALL *(ISRSUPC)" "FILE"
>INVALID KEYWORD, FILE
>
I suspect that's a TSO message.  For example:

 READY 
call *(IEFBR14)  whatever 
 IKJ56712I INVALID KEYWORD, WHATEVE
 IKJ56703A REENTER THIS OPERAND -

but:

 READY 
call *(IEFBR14) 'whatever'
 READY 

(You really should PROFILE MSGID to get more information.)

So, in Rexx:
    address TSO "call *(ISRSUPC) 'FILE'"

(I think.)

-- gil

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to