2008 Mar 24 3:45 PM
hi all,
how can we change the date format in differant ways,
i want the date in mm/dd/yyyy format
2008 Mar 24 3:47 PM
check for transaction code SU3 and in DEFAULT tab
or if you are looking for change thru programatically then
write : sy-datum MM/DD/YYYY to v_date.
a®s
Edited by: a®s on Mar 24, 2008 11:56 AM
2008 Mar 24 3:47 PM
check for transaction code SU3 and in DEFAULT tab
or if you are looking for change thru programatically then
write : sy-datum MM/DD/YYYY to v_date.
a®s
Edited by: a®s on Mar 24, 2008 11:56 AM
2008 Mar 24 3:48 PM
Rohit,
there are number of ways to do this...........
u can try using the fm
CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
EXPORTING
DATE_INTERNAL = SY-DATUM
IMPORTING
DATE_EXTERNAL = l_date.
this function module converts date from 20080324 to external format which is specified in user profile
2008 Mar 24 3:58 PM