0

I have got the following issue.

I have implemented WDR_SELECT_OPTIONS and it works fine, but i need the CP(*) for searching data.

enter image description here

Someone know why is not there?

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
funkeeiads
  • 327
  • 2
  • 6
  • 20
  • It is not there, because it does not need to be there. If you use a pattern in your field, then the system knows automatically that this is `CP`. Is the `CP` an option in the traditional Dynpro? – Jagger Apr 07 '16 at 05:41

2 Answers2

1

CP isn't showing up because it is only available for character-like data elements (things like C, N, or string).

My guess is that field is an integer.

manual page for these relational operators - https://help.sap.com/abapdocu_740/en/abenlogexp_op.htm

Nick F
  • 64
  • 1
  • 2
0

It is not there, because it does not need to be there. If you type * or + in this field, then the system knows automatically that this is a pattern.

Here is a screenshot for selection options from a traditional Dynpro.

Selection options

Jagger
  • 10,350
  • 9
  • 51
  • 93