‎2007 Apr 24 11:11 PM
Hi Gurus,
Here i want to increase time 1 hr or 60 minuets for existing time,,,,
EX if Existing time is 140752 then i have get 150752 time means 1 hr increase of 60 minuets could any body send code for that or any function module providing this solution ...we have to check if hours > 24 also,,,,,,,, it would gar8 help full to me
Nat
‎2007 Apr 24 11:15 PM
check the current time is greater than sy-tzone.
Reward points if useful
Phanindra
‎2007 Apr 24 11:39 PM
Hi,
1) Check this example..Add 3600 seconds..
DATA: v_time TYPE syuzeit.
WRITE: / 'Current time', sy-uzeit.
v_time = sy-uzeit + 3600.
WRITE: / 'Current time + 1 hour = ', v_time.
2) You can use the FM TIME_CHECK_PLAUSIBILITY to check for a valid time..
Thanks,
Naren