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

Can REXX identify the Data Type


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

Active User


Joined: 11 Apr 2008
Posts: 144
Location: Jamshedpur

PostPosted: Wed Jul 16, 2008 7:27 pm
Reply with quote

Hi All,

I just want to know, if i give the field position and the length of that field, can rexx identify the data type of that field.
And can anyone tell what the below statement means -

Quote:
alloc dd(xmitnote) reu new catalog
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Wed Jul 16, 2008 7:42 pm
Reply with quote

Look at the DATATYPE function.

saurabh39 wrote:
And can anyone tell what the below statement means -

Quote:
alloc dd(xmitnote) reu new catalog


It's a TSO (or IDCAMS) command. Allocate. "Allocate storage to the DD name XMITNOTE reusing any current allocation with a disposition of NEW and CATALOG".
Back to top
View user's profile Send private message
saurabh39
Warnings : 1

Active User


Joined: 11 Apr 2008
Posts: 144
Location: Jamshedpur

PostPosted: Sun Jul 20, 2008 6:58 pm
Reply with quote

Hi Kevin,

Thanks for reply......
Regarding my first question,
I want the REXX to return if the field is PD or ZD or Binary.Can DATATYPE do it.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Mon Jul 21, 2008 12:39 am
Reply with quote

Hello,

Did you click on the link to "DATATYPE" provided by Kevin?

If not, do so.

If you find somethng there you do not understand, post what you found and your question about it.
Back to top
View user's profile Send private message
saurabh39
Warnings : 1

Active User


Joined: 11 Apr 2008
Posts: 144
Location: Jamshedpur

PostPosted: Mon Jul 21, 2008 9:59 am
Reply with quote

Hi,

I went through it..........Binary can be identified......but i am confused how REXX will differentiate between alphanumeric(having numbers),characters(storing number),PD,ZD...etc.
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Mon Jul 21, 2008 1:03 pm
Reply with quote

review Your understanding of REXX objects,
everything is a string,

why not run Yourself a few tests ....
Code:

say "datatype('ABCDE')   is :" datatype('ABCDE')
say "datatype('12345')   is :" datatype('12345')
say "datatype('123.45')  is :" datatype('123.45')
say "datatype('0123c'x)  is :" datatype('0123c'x)

an read the manual
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/Shelves/IKJOSE20
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Mon Jul 21, 2008 7:46 pm
Reply with quote

Hello,

Quote:
how REXX will differentiate between alphanumeric(having numbers),characters(storing number),PD,ZD...etc.
REXX will not directly give you this. . . Also, i do not understand what these "alphanumeric(having numbers),characters(storing number)" mean?

If you were able to get the "cobol" field-type, how would it be used?
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 Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts Store the data for fixed length COBOL Programming 1
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 isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
Search our Forums:

Back to Top