Hi experts ,
i need to select a record from a table using the lower case statement as follows :
Data : wa_value type pa0006.
select single * from pa0006 into wa_value where lowercase (stras) = 'abcd'.
Stras is of type pad_stras .
so i want to get the result of in the table pa0006 the valoe of stras = 'AbCD' (abCd) ..etc.
This is not wirking in abap , so how to slove this problem ?
ps : transalte to lowercase /upper case doesnt help.
Thanks in advance.