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

Reading comp-3 field in REXX using DISKR


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

New User


Joined: 13 Dec 2006
Posts: 73
Location: Hyderabad

PostPosted: Thu Jan 18, 2007 2:26 pm
Reply with quote

hi,

i need to prepare a report from a input PS file. In the input PS file layout some field values are in COMP-3 format.Due to this when i read this file in REXX using DISKR i am getting JUNK values which are coming as ??? and some junck sybols.....

IS THERE ANYWAY IN REXX TO GET PROPERVALUES FOR THIS FIELDS?

IF CAN YOU PLEASE PROVIDE EXAMPLE SYNTAX?
Back to top
View user's profile Send private message
acevedo

Active User


Joined: 11 May 2005
Posts: 344
Location: Spain

PostPosted: Thu Jan 18, 2007 3:46 pm
Reply with quote

search for C2X
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Thu Jan 18, 2007 3:53 pm
Reply with quote

acevedo wrote:
search for C2X
And then chop off the last byte?
Back to top
View user's profile Send private message
avaneendra_linga

New User


Joined: 13 Dec 2006
Posts: 73
Location: Hyderabad

PostPosted: Thu Jan 18, 2007 4:01 pm
Reply with quote

hi,

my input filed value is date value stored in comp-3 format.
i need to convert that into displayable variable in REXX...
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Thu Jan 18, 2007 4:05 pm
Reply with quote

Did you
acevedo wrote:
search for C2X
?
It looks like it will work for you:
Quote:
C2X('0123'X) -> '0123' /* 'F0F1F2F3'X in EBCDIC */
Back to top
View user's profile Send private message
superk

Global Moderator


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

PostPosted: Thu Jan 18, 2007 5:44 pm
Reply with quote

REXX Packed-to-Decimal Function:

Code:

/* REXX P2D */
Parse Arg number_p
erg = C2X(number_p)
sign = Right(erg,1)
number = Left(erg,Length(erg)-1)
If sign = 'D' Then
  Return '-'||number
Else
  Return number
Back to top
View user's profile Send private message
avaneendra_linga

New User


Joined: 13 Dec 2006
Posts: 73
Location: Hyderabad

PostPosted: Fri Jan 19, 2007 10:38 am
Reply with quote

hi,

IT'S WORKING FINE..THANKS A LOT TO EVERBODY FOR IMMEDIATE RESPONCES......

CAN ANYBODY HELP IN PROVIDING THE MANUAL FOR THIS TYPE OF COMMANDS (c2x) FOR FUTURE REFERENCE.......
Back to top
View user's profile Send private message
ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 2358
Location: Israel

PostPosted: Fri Jan 19, 2007 12:54 pm
Reply with quote

C2X is one of REXX's built-in functions, and they are documented here.

O.
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 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
No new posts run rexx code with jcl CLIST & REXX 15
Search our Forums:

Back to Top