‎2009 Aug 05 3:18 PM
Hello everyone,
I want to know that how can we make use of these two system functions SY-TIMLO, SY-DATUM ?
What should pbo and pai so as to display time and date on screen?
This is what should be written in data but don't know what should i write in pbo and pai.
DATA: Ok_date TYPE SY-DATUM.
DATA: Ok_time TYPE SY-TIMLO.
Please guide. Thanks for writing back.
Regards,
Lucky
Moderator message - Please ask a specific question - post locked
Edited by: Rob Burbank on Aug 5, 2009 10:30 AM
‎2009 Aug 05 3:25 PM
Hi,
During runtime of any program the system date and system time is stored in SY-DATUM and SY-UZEIT.
On you screen define 2 fields of the same type and move the values of SY-DATUM and SY-UZEIT into them using WRITE statement in the PBO.
Regards,
Ankur Parab
Edited by: Ankur Parab on Aug 5, 2009 7:55 PM