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

DATE CONVERSION

Former Member
0 Likes
1,059

date conversion from yyyymmdd to mm.dd.yyyy or dd.mm.yyyy is thr any FM for it.

thanks in advance.

1 ACCEPTED SOLUTION
Read only

former_member242255
Active Contributor
0 Likes
1,015

CONVERT_DATE_TO_EXTERNAL

CONVERT_DATE_TO_INTERNAL

10 REPLIES 10
Read only

Former Member
0 Likes
1,015

Hi,

using edit mask you can do the same.

thanks

vinod

Read only

former_member242255
Active Contributor
0 Likes
1,016

CONVERT_DATE_TO_EXTERNAL

CONVERT_DATE_TO_INTERNAL

Read only

viquar_iqbal
Active Contributor
0 Likes
1,015

Hi

Use this FM

RP_01C_DATE_CONVERSION

Read only

0 Likes
1,015

Hi,

You can use with a Concatenate statement easily in one step...

concatinate sydatum(4) sydatum4(2) sydatum6(2) into date.

write anythimg in any format....

Thanks & regards,

Dileep .C

Read only

kamesh_g
Contributor
0 Likes
1,015

hi

try with following ....

CONVERSION_EXIT_PDATE_OUTPUT

CONVERT_DATE_TO_INTERNAL

Read only

Former Member
Read only

Former Member
0 Likes
1,015

Hi,

Try these FM's

CONVERT_DATE_TO_EXTERNAL

CONVERT_DATE_TO_INTERNAL

Regards,

Jyothi CH.

Read only

Former Member
0 Likes
1,015

Hi,

Check this Fm CY_CONVERT_DATE

Read only

Former Member
0 Likes
1,015

check these Fm's

CONVERSION_EXIT_PDATE_OUTPUT

CONVERSION_EXIT_LDATE_OUTPUT

CONVERSION_EXIT_IDATE_INPUT

CONVERSION_EXIT_SDATE_OUTPUT

CONVERT_DATE_FORMAT

Read only

Former Member
0 Likes
1,015

Hi ,

Please try this one.

if ITAB_DTL-date <> ''.

CONCATENATE ITAB_DTL-date+6(2) '.'

ITAB_DTL-date+4(2) '.'

ITAB_DTL-date+0(4)

INTO ITAB_DTL-w_date.

endif

Thanks

Karthik