MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

decimals of a packed field in a zoned field

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Application Programming
View previous topic :: View next topic  
Author Message
enge
Beginner


Joined: 12 Oct 2004
Posts: 78
Topics: 39

PostPosted: Fri Apr 29, 2005 7:21 am    Post subject: decimals of a packed field in a zoned field Reply with quote

hi all,
i have this problem:

in a field defined pic 9(7)V9(06) comp-3 i must move the decimals ( V9(06)) in a zoned field 9(06).

for example:

123,456 (packed) ---- > 456000 (zoned ,456000) but NOT 000456.

thanks in advance.
Back to top
View user's profile Send private message
kolusu
Site Admin
Site Admin


Joined: 26 Nov 2002
Posts: 12380
Topics: 75
Location: San Jose

PostPosted: Fri Apr 29, 2005 7:49 am    Post subject: Reply with quote

Enge,

Try this

Code:

01 WS-COMP3     PIC S9(07)V9(06) COMP-3 VALUE 123.456.
01 WS-NUM       PIC 9(7).9(6).                       
01 WS-CHAR      PIC X(14).                           
01 WS-INT       PIC 9(7).                             
01 WS-DEC       PIC 9(6).                             

MOVE WS-COMP3  TO WS-NUM                             
MOVE WS-NUM    TO WS-CHAR                           
UNSTRING WS-CHAR DELIMITED BY '.' INTO WS-INT WS-DEC



Hope this helps...

Cheers

kolusu
_________________
Kolusu
www.linkedin.com/in/kolusu
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Application Programming All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group