| Given that FOCUS does not support RDB dates, what i suggest is you
use a workaround solution which is less than perfect.
Define the date field as ACTUAL = A8
USAGE = A8
What you will then have to do is re-define that field in the master
description( or in every request i.e DEFINE FILE) using
DEFINE field2/A11 = CHGDAT('YYMD','DMYYT',field1,field2);$
What this will result in is you will have the same field twice but
in different formats.
field1 will look like 19870814
field2 14 AUG 1987
Any sorts you may have wanted to do on RDB date fields will probably
have to wait till the next release of FOCUS.
Hope the above helps
Regards
Mike.
|
|
Another way to define a RDB datatype of date to focus is:
FIELD=DATE ,ALIAS=DATE ,USAGE=I8YYMTD,ACTUAL=A8,$
This will create a date output as: 1988 MAR 07
|