‎2008 Jan 21 3:52 PM
hi ,
i want to insert the records in database
table , my problem is in the ztable there is a field
for time in the i want to insert in that place the
current time.
Thanks.
swetha.
‎2008 Jan 21 3:54 PM
Hello,
Give the SY-UZEIT field to the tome field of the database table.
Regards,
Vasanth
‎2008 Jan 21 3:54 PM
Hello,
Give the SY-UZEIT field to the tome field of the database table.
Regards,
Vasanth
‎2008 Jan 21 3:55 PM
Hi Swetha,
Use the system field sy-TIMLO or SY-UZEIT in the there is a system time use this when you insert a row in a table control
data itab type table of ztab with header line.
itab-time = SY-UZEIT.
insert itab to ztab.
Plzz reward if it is useful,
Mahi.
‎2008 Jan 21 3:57 PM
‎2008 Jan 21 3:57 PM
*--populate wa other fields...
wa-time = sy-uzeit.
insert dbtab from wa.
clear wa.