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

Moving Alphanumeric Date to A Numeric Variable


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Amit Suri

New User


Joined: 28 Oct 2008
Posts: 25
Location: hyderabad

PostPosted: Tue Jun 02, 2009 12:50 am
Reply with quote

Hi All

I have an input alphanumeric value field of PIC X(10). eg 9999-12-31
The receiving variable in the code is a Numeric one with PIC 9(8)

Can anyone please suggest me the appropriate code that can be written in
VS-COBOL II to achieve this , i have tried moving with "Corresponding"
Clause and that resulted in S0C-7

The movement of the fields should result in 99991231
Back to top
View user's profile Send private message
mtaylor

Active User


Joined: 20 Feb 2009
Posts: 108
Location: Kansas City

PostPosted: Tue Jun 02, 2009 12:57 am
Reply with quote

Research the REDEFINES clause:


click
Back to top
View user's profile Send private message
Terry Heinze

JCL Moderator


Joined: 14 Jul 2008
Posts: 1249
Location: Richfield, MN, USA

PostPosted: Tue Jun 02, 2009 12:58 am
Reply with quote

What is the exact definition of the fields involved and the exact code you wrote? Please cut and paste, don't key it.
Back to top
View user's profile Send private message
Bill O'Boyle

CICS Moderator


Joined: 14 Jan 2008
Posts: 2501
Location: Atlanta, Georgia, USA

PostPosted: Tue Jun 02, 2009 1:44 am
Reply with quote

Yes, you suggested reference modification so why can't this be used? Is your version of COBOL at a minimum of VS/COBOL II? There wasn't any reference modification as part of OS/VS COBOL.

Code:

03  WS-EDITED-DATE  PIC  X(10) VALUE '9999-12-31'.
03  WS-NUMERIC-DATE PIC  9(08).

MOVE WS-EDITED-DATE (1:) TO WS-NUMERIC-DATE (1:4).
MOVE WS-EDITED-DATE (6:) TO WS-NUMERIC-DATE (5:2).
MOVE WS-EDITED-DATE (9:) TO WS-NUMERIC-DATE (7:).
Back to top
View user's profile Send private message
Terry Heinze

JCL Moderator


Joined: 14 Jul 2008
Posts: 1249
Location: Richfield, MN, USA

PostPosted: Tue Jun 02, 2009 1:54 am
Reply with quote

MOVE CORRESPONDING should work just fine if you use the redefines that mtaylor suggested.
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Replacing 'YYMMDD' with date, varying... SYNCSORT 3
No new posts Issues Converting From ZD to Signed N... DFSORT/ICETOOL 4
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Need to convert date format DFSORT/ICETOOL 20
Search our Forums:

Back to Top