‎2008 May 28 1:13 PM
Hi all
I'd like to know if exist a table field with HHMM format controlled.
Thanks in advance.
Miki
‎2008 May 28 1:14 PM
Do you mean you want to change the time format?
If its that you can use the system variable
sy-timlo
or use EDIT-MASK
hope it helps
‎2008 May 28 1:20 PM
hi,
you can use the system variables
SYST-TIMLO for the time using the time-zone of the user logged-in
or SYST-UZEIT for the time on your server.
then, you can manipulate the data retrieved via edit mask like this
write sy-uzeit using edit mask 'HH:MM'.regards,
Peter
‎2008 May 28 1:22 PM