I think you have to use TRUNC function
ex: If the sysdate with time is => 9/14/2022 7:50:13 AM
Select trunc(sysdate) returns => 9/14/2022
Please try this.
I suppose you have created 2 migration jobs in the old migration tool (FndMig):
- to load the raw data into an IC-table (CREATE_TABLE_FROM_FILE)
- to migrate the data from the IC-table into a LU
Regarding the 1st migration job I recommend to load this FTIME value into a VARCHAR2 field.
With the 2nd migration job you can convert the content of this VARCHAR2 field using ORACLE SQL functionality how you want to have it at the end.
Using the Date Format field in the File Configuration of the 1st migration job doesn’t work in your case because this Date Format only allows dates without any time stamp.