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

Find and replace YccyyMmm to previous month.


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

New User


Joined: 14 Aug 2011
Posts: 24
Location: india

PostPosted: Fri Oct 09, 2015 1:19 am
Reply with quote

Hello,

I need to read input file and replace YyyyyMmm to previous month details i.e. Y2015M09.

Code:

//SORTIN   DD *                       
<SERVER>                                                     
<LOGIN ID & PWD>
PUT  ‘ABCD.A1234.FILE1.YyyyyMmm'      FILE1.TXT                             
PUT  ‘ABCD.A1234.FILE2.YyyyyMmm'      FILE2.TXT
QUIT                                                                           
/*                                     


Output should be
Code:

<SERVER>                                                     
<LOGIN ID & PWD>
PUT  ‘ABCD.A1234.FILE1.Y2015M09'      FILE1.TXT                             
PUT  ‘ABCD.A1234.FILE2.Y2015M09'      FILE2.TXT       
QUIT 
/*   


thank you for your help in advance.
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Fri Oct 09, 2015 1:54 am
Reply with quote

OK, but where are you going to get your date from to work out what the previous month is?
Back to top
View user's profile Send private message
santosh_g

New User


Joined: 14 Aug 2011
Posts: 24
Location: india

PostPosted: Fri Oct 09, 2015 2:02 am
Reply with quote

From current date (like DATE2 -1) and pull only yyyy and mm.
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Fri Oct 09, 2015 2:34 am
Reply with quote

And what are you going to do for testing? And what are you going to do for a re-run which is inconveniently "outside" the month which would give the "correct" result?

Bad idea.

If you're doing that, what problem do you have in achieving it? Why would you use FINDREP? The date is in a fixed position and is identifiable.
Back to top
View user's profile Send private message
santosh_g

New User


Joined: 14 Aug 2011
Posts: 24
Location: india

PostPosted: Fri Oct 09, 2015 7:25 pm
Reply with quote

I tried something below for test runs but it didn't work out.

I was not using FINDREP but IFTHEN & OVERLAY.

Code:

//SORTIN   DD * 
&YYYYMMDD       
/*               



Code:

SORT FIELDS=COPY                                           
INREC IFOUTLEN=80,IFTHEN=(WHEN=INIT,                       
OVERLAY=(81:DATE2-1,C'01',81:81,8,Y4T,LASTDAYM,TOGREG=Y4T, 
           11:87,2,85,2,81,4))                             
IFTHEN=(WHEN=(1,9,CH,EQ,C'&YYYYMMDD'),                     
OVERLAY=(81:DATE2-1,C'01',81:81,8,Y4T,LASTDAYM,TOGREG=Y4T, 
           11:C'Y',12:81,4,16:C'M',17,87,2))               
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Fri Oct 09, 2015 8:34 pm
Reply with quote

In what way didn't it work? Can you show the sysout and any results, please?
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 Replace each space in cobol string wi... COBOL Programming 3
No new posts Populate last day of the Month in MMD... SYNCSORT 2
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 To find whether record count are true... DFSORT/ICETOOL 6
Search our Forums:

Back to Top