‎2019 Apr 13 10:29 AM
Hi,
am using
CONCATENATE LINES OF I_TAB_DATES INTO TEMP_STR SEPARATED BY ', '
to join multi dates into one string to display in my report in one line. but am loosing the date format
is there any way to keep the date format !?

Thanks
‎2019 Apr 13 10:47 AM
You're not losing the date format, I was never there.
Dates are stored internally as YYYYMMDD.
If you want to put them into a non-date data type, like a string, formatted, you have to use WRITE.
‎2019 Apr 13 10:47 AM
You're not losing the date format, I was never there.
Dates are stored internally as YYYYMMDD.
If you want to put them into a non-date data type, like a string, formatted, you have to use WRITE.
‎2019 Apr 13 11:31 AM
Thank Mathew
i was able to do it base on your advise.
WRITE V_DATE TO TEMP_STR.Appreciate.
‎2019 Apr 13 1:45 PM
‎2019 Apr 13 11:19 AM
Hi Mathew
Thanks for the clarification.
i cannot use Write since i want to show the final result in ALV Grid,
is there any other way?
Regards
‎2019 Apr 13 4:28 PM
You need to get a little creative with offset and concatenate. There are a lot of threads in the forum about string to date conversion. Here is one of them.