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

Converstion of Char to PD


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Sikkandhar

New User


Joined: 03 Dec 2007
Posts: 61
Location: Bangalore

PostPosted: Fri Apr 18, 2014 12:38 am
Reply with quote

Hi,

I have a number populated in X(17). Have to convert to X(17) to S9(13)V9(5) COMP -3. I used the below command

Code:

1:1000,17,ZD,TO=PDC,LENGTH=10,   


The charector field starts from position 1000 and occupies 17 bytes. The last 4 bytes in X(17) are the decimal field.
When the value is Charector field is '00000000010000000', the value populated is 100.00000 instead of 1000.0000.

Thanks
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Fri Apr 18, 2014 1:08 am
Reply with quote

Are you saying that the least significant digit of the packed decimal field should always be set to zero?
Back to top
View user's profile Send private message
Sikkandhar

New User


Joined: 03 Dec 2007
Posts: 61
Location: Bangalore

PostPosted: Fri Apr 18, 2014 1:11 am
Reply with quote

yes. the least significant bit/5th decimal field should be set to zero.
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Fri Apr 18, 2014 1:48 am
Reply with quote

Remember that in a packed decimal field there is no indication of the decimal point; you have to know where it is and code accordingly (in assembler), or define your variables to tell the compiler where it is.

(Remember also that COBOL terminology should only be used to describe COBOL problems.)

A simple way to get what you want is
Code:
1:1000,17,ZD,MUL,+10,TO=PDC,LENGTH=10
Back to top
View user's profile Send private message
Sikkandhar

New User


Joined: 03 Dec 2007
Posts: 61
Location: Bangalore

PostPosted: Fri Apr 18, 2014 2:02 am
Reply with quote

Thanks Akatsukami. Thanks for you solution it worked and it was simpler than the one i thought of. To use INREC and pad an extra zero to the 17 byte Char.
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Exclude rows with > than x occurre... DFSORT/ICETOOL 6
No new posts Using PARM=('JPn"&SYMBOL&quo... DFSORT/ICETOOL 2
No new posts Cobol Db2 program (inserting Char Equ... COBOL Programming 0
No new posts COnvert a column with mix of hex ,cha... DB2 5
Search our Forums:

Back to Top