Hi Mike,
Glad that you have it working.
I didnot notice that you were trying to convert the column into 'Date' datatype,
Actually, you do not need to convert it to nvarchar.
It is because DI API Recordset is coming from period SQL2005 and before.
In those version, they dont have a data typed Date. There was only DATETIME.
So, you could write your query :
Convert(DateTime,SJ.ENTEREDDATE) As [Entered Date].
Or if your SJ.Entereddate is already of type DateTime, you dont need to convert at all.
When showing on screen, this date value will be handled by SBO, and shown as the local format of current user.
Regards
Edy