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

reading internal table without case sensitive

former_member671224
Participant
0 Likes
3,740

Hi,

In internal table values are in uppercase. but the input value is in lowercase.

So i couldnt able to read that record. can any one tell me how to read internal table without considering case (lower or upper ).

Example:

read table <internal table> with key <field val> = <input val> .

In this filed val is in uppercase and input val is in lower case.

Regards,

Amal

2 REPLIES 2
Read only

Former Member
0 Likes
1,502

Hi,

In abap the string is case sensitive..

So conver your input value to upper case ..and use it in the read table..

TRANSLATE v_string TO UPPER CASE.

Thanks

Naren

Read only

Former Member
0 Likes
1,502

Hi

in ABAP what ever you give on selection screen by default it will take as UPPER CASE letter

if you want to change the input to a internal table then use TRANSLATE to trnslate that into UPPERCASE

<b>syntax</b>

TRANSLATE input val TO UPPER CASE.

<b>reward if usefull</b>