quote:
-SET &TODAY_START = &YYMD | ' 00:00:00';
-SET &TODAY_END = &YYMD | ' 23:59:59';
INVALID DATE FORMAT message indicates that you are trying to compare perhaps an Oracle Date which has a format that
looks like your &TODAY.. variables, but isn't really.
If your filter statement is
IF SOMEDATE EQ &TODAY_START.QUOTEDSTRING
then you are comparing some date format to an alphabetic charcter string.
that's going to give you an INVALID DATE FORMAT message, b/c the alpha string is not a date, really.
IF i'm right in my thinking about what you're doing, then first DEFINE a new date field in your Reporting Object,
DEFINE FILE thing
mydate/YYMD = HDATE( somedate, 'YYMD');
END
and then do your filter
IF mydate EQ &YYMD
and that should work
| In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID |