|
An example is in order - I have used the CEE* functions for dates, soThanks,
googled "iseries ceedate" - actually, started typing "cee", and that
came up.
One of the first hints was
https://www.ibm.com/support/pages/ile-cl-usage-cee-apis-ceedays-ceedate-ceedywk
- what is especially intriguing to me was "ceedywk" - I wonder if Bruce
Vining, Mr. Calendar, wrote the article, date is in 2019, so maybe not.
But there is also a 2008 hit that he did write -
https://www.mcpressonline.com/programming-other/cl/the-cl-corner-more-on-ile-cee-date-and-time-apis
TMI, I'm sure!!
Cheers
Vern
On 8/3/2023 11:14 PM, Jason Olson wrote:
Can’t you just use a Lillian date?received
J
On Thu, Aug 3, 2023 at 10:40 PM Jack Woehr via MIDRANGE-L <
midrange-l@xxxxxxxxxxxxxxxxxx> wrote:
You can call Python into a CLLE from Richard Schoen's QSHoni.
$ python
Python 3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
2023-07-28from datetime import date, timedelta
friday = 4
today = date.today()
delta = today.weekday() - friday
last_friday = today - timedelta((7 if delta < 0 else 0) + delta)
print(last_friday)
2023-08-04today = date(2023, 8, 4)
delta = today.weekday() - friday
last_friday = today - timedelta((7 if delta < 0 else 0) + delta)
print(last_friday)
2023-08-04today = date(2023, 8, 7)
delta = today.weekday() - friday
last_friday = today - timedelta((7 if delta < 0 else 0) + delta)
print(last_friday)
On Thu, Aug 3, 2023 at 1:30 PM Jim Oberholtzer <
midrangel@xxxxxxxxxxxxxxxxx>
wrote:
I need to retrieve the date from last Friday.--
*JACK WOEHR, IBM Champion 2021-2023
<https://www.credly.com/users/jack-woehr/badges>*
*SENIOR IBM i ENGINEER*
303.847.8442
jwoehr@xxxxxxxxxxxxxxxxxxxxxxxx
<https://www.linkedin.com/in/jackwoehr/> stay connected
<https://www.linkedin.com/company/absolute-performance-inc./>
<https://www.absolute-performance.com/>
www.absolute-performance.com
NON-DISCLOSURE NOTICE: This communication including any and all
attachments is for the intended recipient(s) only and may contain
confidential and privileged information. If you are not the intended
recipient of this communication, any disclosure, copying further
distribution or use of this communication is prohibited. If you
listthis communication in error, please contact the sender and
delete/destroy all copies of this communication immediately.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
relatedTo post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription
questions.Thanks,
--
Jason E. Olson
IBM i Engineer/Developer
josys36@xxxxxxxxx
480.223.2952
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.
--
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.