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

Changing date format

Former Member
0 Likes
342

Hi,

How to change the date format 20070731 to 31.07.2007.

2 REPLIES 2
Read only

Former Member
0 Likes
322

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

Read only

Former Member
0 Likes
322

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