Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ignore case

Former Member
0 Likes
1,199

Hello is there a abap command to say ignore case ?

I mean Uppcase and Lowercase should be ignored.

regards

erdem

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,123

the value which the user enters in a select option field is automatically

converted to UPPERCASE and the entry in the Database table is in lowercase

and sometimes also UPPERCASE.

Regards

sas

Hello is there a abap command to say ignore case ?

I mean Uppcase and Lowercase should be ignored.

regards

erdem

7 REPLIES 7
Read only

Former Member
0 Likes
1,123

Press F1 on "Ignore case"

Read only

Former Member
0 Likes
1,123

There are different ways to do this based on what you are trying to do, so could you be a bit more specific?

Rob

Read only

Former Member
0 Likes
1,124

the value which the user enters in a select option field is automatically

converted to UPPERCASE and the entry in the Database table is in lowercase

and sometimes also UPPERCASE.

Regards

sas

Read only

0 Likes
1,123

you can do like this in that case. you need to use LOWER CASE addition

select-options: s_matnr for mara-matnr lower case.

Read only

Former Member
0 Likes
1,123

not posiible beaces it is not a seloption but defined as range.

RANGES:     ra_preis   for  ZSC_INFO-PREIS.

Read only

0 Likes
1,123

>the value which the user enters in a select option field is automatically

you mentioned it is select option in earlier post, how user entering values in ranges..?

Read only

matt
Active Contributor
0 Likes
1,123

I'm assuming that if the user enters FINDME, you expect matches with db entries FindMe, FINDME, findme and fInDmE.

There are two ways to achieve this.

1. Use EXEC SQL to use the native SQL, if that allows case free searching

2. Create a column in the db table, which is always populated with the uppercase version of the search criteria.

These is no ABAP command.

matt