‎2009 May 07 8:32 AM
hi
is there any function module to change date format from 20080318 to 18.03.2008
‎2009 May 07 8:42 AM
Hi,
Use this FM CONVERT_DATE_FORMAT Convert date from yyyymmdd to ddmmyyyy format
Regards,
Jyothi CH.
‎2009 May 07 8:52 AM
‎2009 May 07 8:57 AM
Hi,
you can write as below also.
v_day = v_date+6(2).
v_month = v_date+4(2).
v_year = v_date+(4).
concatenate v_day v_month v_year into v_finaldate seperated by '.' .
Thanks,
suma.