2008 Jul 28 2:56 PM
Hi all,
I have to pront in the below format. Can anyone advise please.
Format
YYYYMMDDHHMI
2008 Jul 28 2:58 PM
concatenate sy-datum and sy-uzeit into a variable ..
concatenate sy-datum sy-uzeit+0(4) into v_output .
write v_output ..
2008 Jul 28 2:57 PM
hi Suker,
you have to create an own variable and proceed like:
DATA : date(10) TYPE c.
CONCATENATE sy-datum sy-uzeit(4) INTO date.
hope this helps
ec
2008 Jul 28 2:58 PM
concatenate sy-datum and sy-uzeit into a variable ..
concatenate sy-datum sy-uzeit+0(4) into v_output .
write v_output ..
2008 Jul 28 2:58 PM
Hi,
Get the date in YYYYMMDD and time in HHMM and concatenate then both.
Thanks,
Phani Diwakar.
Edited by: MVPhani Diwakar on Jul 28, 2008 3:58 PM
2008 Jul 28 2:58 PM
hi check this...
data: test(14) type c .
concatenate sy-datum sy-uzeit+0(4) into test .