SYSDATE
Forms 10G
----------------
date and time are date datatype
------------------------------------------------
In when-New-Form-Instance Trigger :
--------------------------------------------------------
:DATE_IN := SYSDATE; --works fine
But,
:TIME_IN := TO_DATE(TO_CHAR(SYSDATE,'HH:MI:SS'),'HH:MI:SS');
Returns 12:00:00 which is not correct i want the current record the cursor is in returns the current time of the sysdate
How Could i do that..?
------------------------------------------------------------
Best Regards,
Abdetu..