Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

function module to change date format

Former Member
0 Likes
514

hi

is there any function module to change date format from 20080318 to 18.03.2008

3 REPLIES 3
Read only

Former Member
0 Likes
489

Hi,

Use this FM CONVERT_DATE_FORMAT Convert date from yyyymmdd to ddmmyyyy format

Regards,

Jyothi CH.

Read only

Former Member
0 Likes
489

thanks

Read only

Former Member
0 Likes
489

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.