‎2018 Aug 09 4:25 AM
Hi Team,
I am facing issue in CP for multiple value in select option.
my requirement is to fetch al the values between low and high parameter in selection screen with CP.
Please see the below code.


But I am not getting all the values between low and high but value for low and high only,
Please help to get it forward.
‎2018 Aug 09 5:35 PM
"Yes I am preety good in select options "
Well, then you should be able to derive the logical conditions that are defined in your ranges table (as described in the documentation for IN). From that, the result should be clear. The table lines that you add in the ELSE branch do not make too much sense. They are two single conditions. Also note, that the RHS is concatenated from LOW and HIGH in both conditions.
"but unfortunately here we have to use CP with BT"
And that's the problem. You cannot easily mix such different kinds of concepts, at least not in one go.
So hold on, think about what you want to achieve and about the technical background and from that you might derive a solution for your task.
PS: Use SQL trace in debugger or ST05 to see the conditions derived from the ranges table.
‎2018 Aug 09 6:54 AM
Run in debug and examine the contents of your select option, read the ABAP help on select options, and IN as used in a select statement.
‎2018 Aug 09 8:47 AM
Thanks Matthew,
Yes I am preety good in select options and gone through the available material,
but unfortunately here we have to use CP with BT as here we are giving both low and high in selection.
Thanks,
‎2018 Aug 09 5:35 PM
"Yes I am preety good in select options "
Well, then you should be able to derive the logical conditions that are defined in your ranges table (as described in the documentation for IN). From that, the result should be clear. The table lines that you add in the ELSE branch do not make too much sense. They are two single conditions. Also note, that the RHS is concatenated from LOW and HIGH in both conditions.
"but unfortunately here we have to use CP with BT"
And that's the problem. You cannot easily mix such different kinds of concepts, at least not in one go.
So hold on, think about what you want to achieve and about the technical background and from that you might derive a solution for your task.
PS: Use SQL trace in debugger or ST05 to see the conditions derived from the ranges table.