‎2009 Jun 26 2:50 PM
‎2009 Jun 26 2:58 PM
is your requirement is to convert the date in to dd.mm.yyyy or any of these formats??
Edited by: Bhargava TC on Jun 26, 2009 4:06 PM
‎2009 Jun 26 3:26 PM
yes converting yyyy.mm.dd to a floating point 0.000000000000000E+00
‎2009 Jun 26 3:42 PM
hi,
try this way
data: g_date(5),
l_date type f.
Move your date value to g_date.
eg: g_date = (yyyy.dd).
repalce '.' with ' ' into g_date.
condense g_date no-gaps.
l_date = g_date.
l_date is of floating type.
Hope this will help you.
Regards,
Bhargav
Edited by: Bhargava TC on Jun 26, 2009 4:42 PM