12-16-2020 01:50 PM
How do you convert this date “2020-09-01T00:00:00.000” to this “20200901”?
12-16-2020 02:32 PM
I got this error
HIRE_DATE is a datetime data from Oracle
12-16-2020 02:34 PM
Then you should try:
$HIRE_DATE.toLocaleDateString({"format":"yyyyMMdd"})
12-16-2020 02:36 PM
Got this error
12-16-2020 02:41 PM
Try this:
Date.parse($HIRE_DATE.toString()).toLocaleDateString(...)
12-16-2020 02:44 PM