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

How to include the todays date records using DFSORT


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

New User


Joined: 06 Nov 2007
Posts: 16
Location: Hyderabad

PostPosted: Wed Nov 05, 2008 6:50 pm
Reply with quote

Hi!
I want to include the todays date i.e., yymmdd format present at 27th position (Char) from the input flat file. It has previous dates also.

Regards,
Ansari
Back to top
View user's profile Send private message
Mudassir Ansari

New User


Joined: 06 Nov 2007
Posts: 16
Location: Hyderabad

PostPosted: Wed Nov 05, 2008 7:22 pm
Reply with quote

Hi,

I have an input file which is an FB LRECL as 1024.

Regards,
Mudassir.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Nov 05, 2008 9:24 pm
Reply with quote

Hello Mudassir and welcome to the forum,

Please post some sample input data (not the full 1024, but the relevant positions) and the output you want from the sample input.
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: Wed Nov 05, 2008 11:05 pm
Reply with quote

Ansari,

I answered this same question offline for you. Please don't post and send me notes offline. Do one or the other. Here's the job I gave you offline based on your attempt at using ICETOOL:

Code:

//S1 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//IN1 DD DSN=TTOI.VAVX.TEMP.LIST,DISP=SHR
//OUT1 DD DSN=TTOI.VAVX.TEMP.LIST.OUTPUT1,DISP=(NEW,CATLG,DELETE),
//         SPACE=(CYL,(5,5))
//TOOLIN DD *
COPY FROM(IN1) TO(OUT1) USING(CTL1)
/*
//CTL1CNTL DD *
  INCLUDE COND=(27,6,Y2T,EQ,Y'DATE1')
/*
Back to top
View user's profile Send private message
Mudassir Ansari

New User


Joined: 06 Nov 2007
Posts: 16
Location: Hyderabad

PostPosted: Fri Nov 07, 2008 11:52 am
Reply with quote

Thanks Frank...Its working fine..
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 Replacing 'YYMMDD' with date, varying... SYNCSORT 3
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Pulling a fixed number of records fro... DB2 2
Search our Forums:

Back to Top