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

UNPACKing the COBOL packed numeric data.


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

New User


Joined: 26 Mar 2005
Posts: 17

PostPosted: Thu Jan 19, 2006 7:36 am
Reply with quote

Hello,

Assume some input record contains all packed numeric data. I would like to unpack the digits for reporting purpose. I know ASSEMBLER has unpack instruction. Is there some way one can do this in Enterprise COBOL...?

Thanks for help.
Back to top
View user's profile Send private message
priya

Moderator


Joined: 24 Jul 2003
Posts: 568
Location: Bangalore

PostPosted: Thu Jan 19, 2006 10:14 pm
Reply with quote

Simply move COMP-3 to DISPLAY item before creating the report. it will work.
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Fri Jan 20, 2006 7:57 am
Reply with quote

If you're going to print the field it makes more sense to move it to the ediited field in the report line. The edited field could look something like

PIC ----9.99

If you moved a negative 123.45 to it, it would print as -123.45. If you moved a positive 6.54 to it, it would print as bbb6.54, where the "b"s are spaces.
Back to top
View user's profile Send private message
mail_ssb

New User


Joined: 26 Mar 2005
Posts: 17

PostPosted: Sat Jan 21, 2006 2:31 pm
Reply with quote

Hi Priya,

I am sorry, I did not get that. Did you mean that I need to move packed numbers directly into a variable of type 9.

E.g. Say, input is 2 byte comp-3. Should I move this into 9(4) variable of a report layout...? I dont think, that works.

Let me know, if I understood it wrong. Thanks for your help.
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 Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
Search our Forums:

Back to Top