‎2008 Feb 21 5:16 AM
hi frds
in my report i wants to display system time and date in right top page ?
kindly tell me how to do .
thanks
Pari Vendhan.R
‎2008 Feb 21 5:19 AM
Hi,
On top of page event, use write:/ sy-datum, sy-uzeit.
Reward Points if Useful.
Thanks,
Anita
‎2008 Feb 21 5:20 AM
‎2008 Feb 21 5:21 AM
Hi,
if its a classic report
TOP-OF-PAGE.
write : 120 'Date :' , sy-datum.
write : /120 'Time :' , sy-uzeit.if its an ALV report.
[http://www.sapdev.co.uk/reporting/alv/alvgrid_rephead.htm]
Cheers,
jose.
Edited by: jose on Feb 21, 2008 6:22 AM
‎2008 Feb 21 5:22 AM
Hi,
If it is clasical report,
First you code below statements and go for next output.
WRITE : /0(200) 'DATE :' ,SY_DATUM.
WRITE : /0(200) 'DATE :' ,SY_UZEIT.
‎2008 Feb 21 5:24 AM
Hi,
A u want system date and time to be output on ur Top of list..
When u r writing the prgm with Start-of-selection event fot the first Write statement
the Top-of-page event is triggered and u declare the System fields i.e.,
Sy-datum, Sy-uzeit in write statement.
‎2008 Feb 21 5:25 AM
‎2008 Feb 21 5:28 AM
hi,
use top-of-page event
write:40(6) sy-datum.50(6) sy-uzeit.
40(8) and 50(8) depends upon the where date and time should be placed
sy-datum will be positioned 40 th position and time will be positioned from 50 th positioned
‎2008 Feb 21 5:33 AM