2009 Jan 15 7:26 AM
Hi experts,
My client's requirenment is to display the application server time and date on the on GUI screen
pls give the step by step procedure.
Thanks in advance.
Abhishek
Hi experts,
My client's requirenment is to display the application server time and date on the on GUI screen
pls give the step by step procedure.
Thanks in advance.
Abhishek
2009 Jan 15 8:40 AM
Dear abhishek
WRITE : sy-uzeit. " for time
WRITE : sy-datum. " for date
2009 Jan 15 9:15 AM
Hi,
For TIME purpose,
Fixed Length 6
Format u2018HHMMSSu2019
DATA times TYPE T.
times = sy-uzeit.
WRITE times.
For DATE purpose
Fixed Length 8
Include Representation u2018YYYYMMDDu2019
DATA today TYPE D.
today = sy-datum.
WRITE today.
today = u201819991231u2019.
WRITE today.
Regards,
Anki Reddy
2009 Jan 15 9:30 AM
Hi,
Add this write statement in ur code,
WRITE:/ 'DATE: ' ,sy-datum,
'TIME: ' ,sy-uzeit.
Thanks.