×
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.
Check the compile listing to see if the field is being specified as FORMAT
DATE '@Y-%m-%d'. There could also be an entry under special names which
could throw things off. If the format isn't specified with '@Y-%m-%d',
the compiler will treat the dates using the job default--and you cannot
set DATFMT for a job to *ISO (or *USA for that matter).
You may know this, but internally the dates are not stored in a format we
humans would recognize. They are stored as a 10-digit integer. The
system takes care of converting to whatever format is requested at the
time. If you don't specify one, It will default the the job format. At
our shop that's *MDY--perhaps yours is *YMD. In any case, none of the
default job date formats include the 1st of January 0001. Hence, dates as
early as that will cause a data format mapping error.
If the compile listing shows the year portion of the date as something
other than '%y' (lower-case y), then you've got a different problem. an
upper-case Y with either % or @ will work.
cobol400-l-bounces@xxxxxxxxxxxx wrote on 11/28/2013 01:00:03 PM:
----- Message from "Tom Hightower" <tomh@xxxxxxxxxxx> on Wed, 27 Nov
2013 17:55:18 -0600 -----
To:
"'COBOL Programming on the IBM i \(AS/400 and iSeries\)'" <cobol400-
l@xxxxxxxxxxxx>
Subject:
Re: [COBOL400-L] *ISO date in COBOL?
The programmer working on it says that she's doing the compile like so:
CRTBNDCBL PGM(IDOCKETGY/CCEXTRACT) +
SRCFILE(IDOCKETGY/QCBLSRC) SRCMBR(*PGM) +
OPTION(*SOURCE) CVTOPT(*DATETIME *DATE) +
DBGVIEW(*ALL)
TomH
As an Amazon Associate we earn from qualifying purchases.