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

to sort the file by including only the records that are hav


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

New User


Joined: 04 Apr 2006
Posts: 86
Location: Hyderabad

PostPosted: Thu Aug 17, 2006 1:25 pm
Reply with quote

I have a flat file and I got a requirement to sort the file by including only the records that are having enddate less than 6/30/2006.

Here my problem is the date field is not in the date format..It is a Zoned Decimal field..(06302006 this is the date that is in the file)
How can I sort using that field?

Thank you,
Maheder
Back to top
View user's profile Send private message
IQofaGerbil

Active User


Joined: 05 May 2006
Posts: 183
Location: Scotland

PostPosted: Thu Aug 17, 2006 3:08 pm
Reply with quote

assuming field starts at pos 1
then this include should work

Code:
                                       
  INCLUDE COND=((05,4,LT,+2006),OR,                                 
          ((05,4,EQ,+2006),AND,(01,2,LT,+6)),OR,                   
          ((05,4,EQ,+2006),AND,(01,2,EQ,+6),AND,(03,2,LT,+30))),   
  FORMAT=ZD           


you don't sat what your sort requiement is
Back to top
View user's profile Send private message
mahi

New User


Joined: 04 Apr 2006
Posts: 86
Location: Hyderabad

PostPosted: Thu Aug 17, 2006 3:39 pm
Reply with quote

Thank you,
I will try this and let u know the results..
Back to top
View user's profile Send private message
sril.krishy

Active User


Joined: 30 Jul 2005
Posts: 183
Location: hyderabad

PostPosted: Fri Aug 18, 2006 1:15 pm
Reply with quote

Hi,
The other solution is ,,change the input file structure to have yyyymmdd and then directly use the LT option in SORT card.

Thank you
Krishy
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 FTP VB File from Mainframe retaining ... JCL & VSAM 1
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top