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

How to select few bytes from a packed field using SORT.


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
malayajena

New User


Joined: 08 Jul 2006
Posts: 28
Location: Singapore

PostPosted: Thu May 14, 2009 10:08 pm
Reply with quote

Dear All

I have one requirement where i need first few bytes of a packed formatted data field for all of records.
Ex:
Brand Name - S9(7) comp-3( value AAAAAAA)
Product ID- S9(17) comp-3( value 12300000000000000)

The above data should show in my output as
AAAAAAA 123.

I tried doing:
OUTREC FIELDS=(1,4,PD,ZD,X,5,3,PD,ZD)
BUT IT GIVES AAAAAAA 01230

Please let me know how can this be achieved in SORT and let me know if any further info is required.
Back to top
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Thu May 14, 2009 10:41 pm
Reply with quote

Quote:
Brand Name - S9(7) comp-3( value AAAAAAA)


No comment!
Back to top
View user's profile Send private message
malayajena

New User


Joined: 08 Jul 2006
Posts: 28
Location: Singapore

PostPosted: Thu May 14, 2009 10:52 pm
Reply with quote

That was a horrible mistake in a hurry - changing it to
Account No- S9(7) comp-3 (1111111)
Product Id- S9(17) comp-3.(12300000000000000)
should appear- 1111111 123
Let me know if anything is required.Thanks.
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Thu May 14, 2009 11:27 pm
Reply with quote

You can use this DFSORT OUTREC statement to do what you asked for:

Code:

   OUTREC FIELDS=(1,4,PD,ZD,X,5,2,PD,EDIT=(TTT))
Back to top
View user's profile Send private message
malayajena

New User


Joined: 08 Jul 2006
Posts: 28
Location: Singapore

PostPosted: Fri May 15, 2009 1:06 pm
Reply with quote

Thanks Frank. You are always the last person to close it:).
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 -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
Search our Forums:

Back to Top