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

Moving Packed decimal to numeric and getting Garbage value


IBM Mainframe Forums -> ABENDS & Debugging
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
paramita.barman

New User


Joined: 12 Oct 2006
Posts: 18

PostPosted: Tue Mar 20, 2007 4:54 pm
Reply with quote

Hi all,

I have 3 packed decimal fields.I am doing a computation among the 1st 2 and storing it in the 3rd field(R).
The result(Suppose R) of the computation is producing some negative results.
Then I am moving the value of the result field to a field of an output file whose data type is numeric(Suppose F), as follows,

F=R

But in place of 'MINUS SIGN' of result(R), I am getting 'GARBAGE VALUE' in my file.

Could anyone tell me why it is happening and what should I do to rectify it?
Back to top
View user's profile Send private message
William Thompson

Global Moderator


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

PostPosted: Tue Mar 20, 2007 5:19 pm
Reply with quote

What is the picture of the output field?
Back to top
View user's profile Send private message
paramita.barman

New User


Joined: 12 Oct 2006
Posts: 18

PostPosted: Tue Mar 20, 2007 5:26 pm
Reply with quote

@ William

Its PIC clause is Numeric(N).
Back to top
View user's profile Send private message
William Thompson

Global Moderator


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

PostPosted: Tue Mar 20, 2007 5:33 pm
Reply with quote

What language?
Back to top
View user's profile Send private message
paramita.barman

New User


Joined: 12 Oct 2006
Posts: 18

PostPosted: Tue Mar 20, 2007 5:47 pm
Reply with quote

@ William

Easytrieve.
Back to top
View user's profile Send private message
William Thompson

Global Moderator


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

PostPosted: Tue Mar 20, 2007 5:57 pm
Reply with quote

Though 'N' is zoned decimal, the last digit is still carrying the sign. You need to define F with a mask that provides for the sign like
F W 7 N MASK('ZZ,ZZ9-')
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 -> ABENDS & Debugging

 


Similar Topics
Topic Forum Replies
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 PD not working for unsigned packed JO... DFSORT/ICETOOL 5
No new posts Def PD not working for unsigned packe... JCL & VSAM 3
No new posts Need Help with Packed Decimal Signs DFSORT/ICETOOL 4
Search our Forums:

Back to Top