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

Data Exception error while moving numeric data into COMP-3


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

New User


Joined: 26 May 2008
Posts: 1
Location: pune

PostPosted: Mon May 18, 2009 5:01 pm
Reply with quote

Hi,

Im trying to move numeric data of a variable which is of length S9(7)V99 to different variable with length S9(7)V99 COMP-3. Its giving me Data Exception Error.
Im just accepting the data from the user and moving it to COMP-3 variable inorder to store it in a file.

Please help me regarding this..

Thanks in Advance..!!
Ramya
Back to top
View user's profile Send private message
Mathiv Anan

Active User


Joined: 23 Jul 2008
Posts: 106
Location: USA

PostPosted: Mon May 18, 2009 5:20 pm
Reply with quote

Moving a 'S9(7)V99 ' variable to 'S9(7)V99 COMP-3' will not give data exception error i think.

Please check the input variable. It may have non-numeric values.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Mon May 18, 2009 5:26 pm
Reply with quote

it has been stated many times and many ways that display numeric data
PIC 9.
will accept anything.

you need to prove that the data contained in the display numeric variable is numeric.

search the cobol forum; there have been many threads.
read the documentation - cobol programmers guide and cobol reference.
button at top of page - IBM Manuals - 2nd from left, will guide you to reference material for your vsn of cobol.
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: Mon May 18, 2009 5:42 pm
Reply with quote

After the signed display-numeric field is packed (internally by the compiler) and then moved (via an MVC) into the receiving packed-field, the compiler issues a ZAP of the packed-field into itself and this is where you can get a S0C7. You won't get a S0C7 on a PACK instruction.
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 Issues Converting From ZD to Signed N... DFSORT/ICETOOL 4
No new posts Store the data for fixed length COBOL Programming 1
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
Search our Forums:

Back to Top