- 论坛徽章:
- 0
|
RPGLE提供了许多有关日期数据格式的用法,下面对这些日期的用法进行了一下汇总。
1.Built in functions used with date processing
%MSeconds Retrieve milliseconds from formatted date
%Seconds Retrieve seconds from formatted date
%Minutes Retrieve minutes from formatted date
%Hours Retrieve hours from formatted time
%Days Retrieve days from formatted date
%Months Retrieve months from formatted date
%Years Retrieve years from formatted date
%Date Retrieve the date
%Time Retrieve the time
%TimeStamp Retrieve a time stamp
%Subdt Substring year, month or day from formatted date
%Char Use a decimal field in a substring function
2.Define Date Variables All date formats
without keyword DatFmt will default to *ISO. '2003-09-23'
When you initialize a date field you must prefix the date with the letter "D" ,see below.
- D*---------------------------------------------------------
- D* Field Definitions.
- D*---------------------------------------------------------
- D ISOdate S D
- D USAdate S D DatFmt(*USA)
- D XMASDate S D Inz(D'2003-12-25')
-
复制代码
3.Various types of Date data format
- *-----------------------------------------------------------
- * RPG-defined date formats and separators for Date data type
- *-----------------------------------------------------------
- * 2-Digit Year Formats
- * *MDY Month/Day/Year mm/dd/yy 8 09/26/03
- * *DMY Day/Month/Year dd/mm/yy 8 26/09/03
- * *YMD Year/Month/Day yy/mm/dd 8 03/09/26
- * *JUL Julian yy/ddd 6 03/926
- *----------------------------------------------------------
- * 4-Digit Year Formats
- * *ISO Int Standards Org yyyy-mm-dd 10 2003-09-26
- * *USA IBM USA Standard mm/dd/yyyy 10 09/26/2003
- * *EUR IBM European Std dd.mm.yyyy 10 26.09.2003
- * *JIS Japan Indst Std yyyy-mm-dd 10 2003-09-26
- *
- *
- *----------------------------------------------------------
复制代码
4.Use dates in RPGLE
First get current date in ISO date format
(without DATFMT or DATEDT keyword in control specification)
Then,move this date to a decimal 8,0 field
the date is now in format 20030926
- C Move ISODate Decimal8 8 0
复制代码
Now lets add 1 month to the date.
date after will equal 2003-10-26
%days and %years works the same as %months
- C Eval WorkISO = ISODate + %Months(1)
复制代码
Logon date is set equal to today then the month is extracted
the "*M" is the same as "*Months" LogMonth = 09.
LogDay = 26.
- C Eval LogonDate = %Date()
- C Extrct LogonDate:*Y LogYear
- C Extrct LogonDate:*M LogMonth
- C Extrct LogonDate:*D LogDay
复制代码
Build the date string - Later we will add the day name
- D MonthNames S 12 Dim(12) CtData
-
-
- C Eval Date_String =
- C %Trim(MonthNames(LogMonth))
- C + %trim('@') + %Trim(LogDay)
- C + %trim(',@') + %Char(LogYear)
- C*----------------------------------------------------
- ** CTDATA MonthNames
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
复制代码
convert the "@" back to *Blanks
Date_String = 'September 26, 2003'
- C '@':' ' Xlate Date_String Date_String
- *
- * TimeStamp = yyyy-mm-dd-hh.mm.ss.mmmmmm (length 26).
- * TimeStamp = '2003-09-26-15.16.26.531000'
- *
- C Eval TimeStamp = %TimeStamp()
- *
- * Free Format date stuff By the way Name2 = 'Friday'
- *
- /Free
- DateIn = %Date() ;
- ISODate = %Date() ;
- ISODate = DateIn ;
- Year = %Subdt(ISODate:*Y) ;
- Month = %Subdt(ISODate:*M) ;
- Day = %Subdt(ISODate:*D) ;
- FromISO = ISODate - %YEARS(1) ;
- ToISO = ISODate ;
- DiffDays = %Diff(ToISO:FromISO:*DAYS) ;
- ISODate = DateIn ;
- WorkField = %Diff(ISODate:D'1899-12-31':*DAYS);
- WorkField = %REM(WorkField:7);
- NamePtr = NamePtr + (WorkField * 9);
- Name2 = Name;
- /End-Free
- *
- * Build the date string - With The Day Name
- * DATE_STRING = 'Friday September 26, 2003 '
- *
- C Eval Date_String =
- C %trim(Name) + %Trim('@@')
- C + %trim(MonthNames(LogMonth))
- C + %trim('@') + %Trim(LogDay)
- C + %trim(',@') + %Char(LogYear)
- C Eval Date_String = %Xlate('@':' ':Date_String)
- *
- * Calculate the last day of the month
- * ENDOFMONTH = '2003-09-30'
- *
- C ISODate AddDur 1:*Months NextMonth
- C Extrct NextMonth:*D DiffDays
- C NextMonth SubDur DiffDays:*D EndOfMonth
- C Eval *INLR = *On
-
复制代码 |
|