Application Development 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: 

Changing date format

Former Member
0 Kudos

Hi,

How to change the date format 20070731 to 31.07.2007.

2 REPLIES 2

Former Member
0 Kudos

Hi

Do offsetting and separate the Year, Month and Day and

concatenate Day '.' Month '.' Year into date.

Check the fun modules

Convert_date_to_external

convert_date_to_internal

<b>Reward points for useful Answers</b>

Regards

Anji

Former Member
0 Kudos

let s_bedat = 20070731

concatenate s_bedat6(2) s_bedat4(2) s_bedat(4) into s_bedat separated by '.'.

write: bedat.

reward if useful

anju