IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Input from JCL to REXX


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
shr_amar
Warnings : 2

Active User


Joined: 02 May 2005
Posts: 128
Location: UK

PostPosted: Fri Jun 12, 2009 12:02 pm
Reply with quote

Thanks enrico,

This is working while passing data.But now i am facing one problem that while passing lowercase data it is failing as JCL error .

IEFC620I UNIDENTIFIABLE CHARACTER r ON THE EXEC STATEMENT

Code is like this
//WHRESET PROC
//REXXINS EXEC PGM=IKJEFT1B,DYNAMNBR=30,
// PARM='WAREREST &VER &WHN'

JCL

//REXX0SE EXEC WHRESET,
// VER=AS1,
// WHN=trm

if i pass WHN=TRM job executed sucessfully but with lowercase it is failing .
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Fri Jun 12, 2009 12:11 pm
Reply with quote

Lowercase is invalid in JCL
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Fri Jun 12, 2009 4:56 pm
Reply with quote

I am not sure, but you might try enclosing in quotes:
Code:
//REXX0SE EXEC WHRESET,
// VER=AS1,
// WHN='trm'


You did not say what &WHN will be used for, but if it will also be JCL, then you will still get an error.

Why does it have to be in mixed case?
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts TRIM everything from input, output co... DFSORT/ICETOOL 1
No new posts Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top