2020 Nov 11 9:30 AM
Hi all,
here my select option
i need to split that range as like this :
I EQ 20200101
I EQ 20200102
I EQ 20200103
I EQ 20200104
I EQ 20200105.
there's way to solve it ? or like function convert.
Thank you..
2020 Nov 11 9:44 AM
I am not aware of an existing code to do that, but
you could use a "simple" (while or do) loop and start with value in low, increasing by 1 until you reach the value in high. something like that
data(lv_date) = s_stamp-low.
while lb_date < s_stamp-high.
lv_date = lv_date + 1.
" append I - EQ - lv_date to your result range table
endwihle.
keep in mind, though, that the resulting range table might be huge if you have a big range between low and high...
2020 Nov 11 9:44 AM
I am not aware of an existing code to do that, but
you could use a "simple" (while or do) loop and start with value in low, increasing by 1 until you reach the value in high. something like that
data(lv_date) = s_stamp-low.
while lb_date < s_stamp-high.
lv_date = lv_date + 1.
" append I - EQ - lv_date to your result range table
endwihle.
keep in mind, though, that the resulting range table might be huge if you have a big range between low and high...
2020 Nov 12 1:17 AM