×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Hi,
There is no SQL scalar function to calculate the first day of month, but you
may use a workaround. Something like this:
Exec SQL Set :FirstDay = Last_Day(:MyDate - 1 Month) + 1 Day;
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"
-----Ursprüngliche Nachricht-----
Von: rpg400-l-bounces@xxxxxxxxxxxx [
mailto:rpg400-l-bounces@xxxxxxxxxxxx] Im
Auftrag von David Foxwell
Gesendet: Wednesday, June 20, 2007 09:06
An: RPG programming on the AS400 / iSeries
Betreff: Re: Last day of the next month
----- Original Message -----
From: "BirgittaHauser" <Hauser@xxxxxxxxxxxxxxx>
If you are already on release V5R4, the easiest way is to use the SQL
scalar
function LAST_DAY in embedded SQL:
Exec SQL Set :EndNxtMon = Last_Day(:MyDate + 1 Month);
Thats GREAT I have R4 and that's tidied up my code nicely.
Now, what about the FIRST day of the month?
As an Amazon Associate we earn from qualifying purchases.