Hi,
I have an internal table with data column.
I want to insert empty row with data for every day not present for a certain range (select-options: s_budat.).
How can I do it?
example.
I have:
s_budat-low = 01.01.2008 and s_budat-high = 31.01.2008
it_table:
01.01.2008 xxxx xxxx xxxx
04.01.2008 xxxx xxxx xxxx
10.01.2008 xxxx xxxx xxxx
Now I want this result:
01.01.2008 xxxx xxxx xxxx
02.01.2008
03.01.2008
04.01.2008 xxxx xxxx xxxx
05.01.2008
06.01.2008
07.01.2008
08.01.2008
09.01.2008
10.01.2008 xxxx xxxx xxxx
11.01.2008
..
..
..
31.01.2008
Many Thanks!!!