SAP STRING FUNCTIONS CASE



Get Example source ABAP code based on a different SAP table
  


• case ABAP_FUNCTION_PARA

ABAP_STRINGFUNC - case

ABAP_SYNTAX
... ( ... case = case ... ) ...

What does it do?
Searches and comparisons in string functions are case-sensitive by default, but this can be overridden, if necessary, using the parameter case. The argument case requires a constant or a literal of the type abap_bool from the type pool ABAP with the value of the constants abap_true or abap_false. If case contains the value of abap_true, the search is case-sensitive; if it contains the value of abap_false, it is not.

ABAP_EXAMPLE_VX5
The result of the following function calls is 2 and 3.
ABEXA 01297
ABAP_EXAMPLE_END