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

Data is truncated even though sufficient space is there


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
somasekhar.gajjala

New User


Joined: 27 Nov 2009
Posts: 2
Location: Hyderabad

PostPosted: Fri May 07, 2010 3:00 pm
Reply with quote

Hi,
I have three variable declared as follows

Code:
 
TOTAL        PIC S9(9)  COMP-3.
CNT_ONE      PIC --,---,--9.
CNT_TWO     PIC --,---,---,--9.


and in the program i am calculating TOTAL and at the end moving to CNT_ONE and CNT_TWO

Code:
 
MOVE TOTAL TO CNT_ONE.
MOVE TOTAL TO CNT_TWO.   

if the TOTAL has the value as +010817045
it is moving 817,045 to CNT_ONE
and 10,817,045 to CNT_TWO.

Please let me know why it is truncating first two bytes in case of CNT_ONE even though the value can fit into it.
Back to top
View user's profile Send private message
CICS Guy

Senior Member


Joined: 18 Jul 2007
Posts: 2146
Location: At my coffee table

PostPosted: Fri May 07, 2010 3:24 pm
Reply with quote

IIRC, CNT_ONE has the ability to represent seven digits. The first '-' in the edit field is not a numerical digit , but the place holder for the minus sign if needed.

If you want to learn more, I can point you to a Principles of Operation manual and you can look at the EDit instruction.
Back to top
View user's profile Send private message
somasekhar.gajjala

New User


Joined: 27 Nov 2009
Posts: 2
Location: Hyderabad

PostPosted: Fri May 07, 2010 3:38 pm
Reply with quote

Thank you very much for your reply.
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 How to save SYSLOG as text data via P... All Other Mainframe Topics 4
No new posts Store the data for fixed length COBOL Programming 1
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
Search our Forums:

Back to Top