I have number fields on the AS400 that I'm trying to combine into a DateTime value. The first field is the date and was able to create the date value using this formula:
stringvar x := totext({EXMP.DATE},0,"");
date(1900+val(left(x,3)),val(mid(x,4,2)),val(right(x,2)));
The second field is the...