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

SORT based on a digit in a Packed decimal


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

New User


Joined: 31 Oct 2006
Posts: 48
Location: Chennai

PostPosted: Wed Nov 08, 2006 9:54 pm
Reply with quote

Hi,

My input file has a Packed decimal of length 7.

I want to select the records which contain 4th digit as 3, 5th digit as 0 and 6th digit as 9 in the packed decimal.

Please help.

Thanks,
OP
Back to top
View user's profile Send private message
Phrzby Phil

Senior Member


Joined: 31 Oct 2006
Posts: 1042
Location: Richmond, Virginia

PostPosted: Thu Nov 09, 2006 8:53 pm
Reply with quote

Do you mean 7 digits or a width of 7 bytes?
Back to top
View user's profile Send private message
Phrzby Phil

Senior Member


Joined: 31 Oct 2006
Posts: 1042
Location: Richmond, Virginia

PostPosted: Thu Nov 09, 2006 9:50 pm
Reply with quote

Assuming width=4 bytes (so digits=7), and field starts in position 1, this works:

Code:

  SORT FIELDS=COPY                 
  INCLUDE COND=(3,1,CH,EQ,X'09',AND,
        (2,1,CH,EQ,X'03',OR,     
         2,1,CH,EQ,X'13',OR,     
         2,1,CH,EQ,X'23',OR,     
         2,1,CH,EQ,X'33',OR,     
         2,1,CH,EQ,X'43',OR,     
         2,1,CH,EQ,X'53',OR,     
         2,1,CH,EQ,X'63',OR,     
         2,1,CH,EQ,X'73',OR,     
         2,1,CH,EQ,X'83',OR,     
         2,1,CH,EQ,X'93'))
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 Nov 09, 2006 10:06 pm
Reply with quote

OP,

This DFSORT INCLUDE statement will do what you asked for:

Code:

   INCLUDE COND=(2,2,BI,EQ,B'....001100001001')   
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 Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
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