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

use daylight logic in REXX


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
maxsubrat

Active User


Joined: 27 Feb 2008
Posts: 110
Location: india

PostPosted: Wed Jan 30, 2019 5:08 pm
Reply with quote

Hi,
I am new to Rexx. I have a rqmt to process the daylight saving in a existing program which simply sends mail to the users with date/time.

It impacts the hrs due to daylight saving.
beginning and end of daylight saving: 2nd Sunday of march & 1st Sunday of November.

current Scenario: We use EST to use SMTP to send mails

but once the daylight saving starts from 2nd Sunday of march, then we should have to use EDT time to sync, If we use EST, then we will be off by 1 hour.
May be 1st I need to fetch the 2nd Sunday from March month and 1st Sunday from November.
then need to calculate whether it falls within this daylight duration, if yes, then I can use EDT else EST.
Any suggestion/approach to achieve this.
Thanks
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Wed Jan 30, 2019 6:08 pm
Reply with quote

Your logic seems sound enough, so go for it.

You can set a base date, 1st of Month, find which day of the week it is, and work forward until you hit the relevant Sunday for that month to get the right dates. Repeat for second relevant month and associated condition.

Or rather than execute the code over and over every time that you run this thing, you could consider building a control record for the year so you only ever need to perform the calculation once a year and just compare the current date against the control record.

If current date GE lower_date_value and LE higher_date_value then use time1 else use time2.

CLUE - www.rexxla.org/rexxlang/mfc/datec.html

Although you are new to REXX you need to post what you have coded and the problems that you are getting rather than sit there and wait for the code.

However, for a mere 750 (+20% VAT) GBP per day I would be happy to oblige
and as I'm in such a good mood today, I'll throw in documentation for free icon_biggrin.gif
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 -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
No new posts run rexx code with jcl CLIST & REXX 15
Search our Forums:

Back to Top