Hi, experts!
I'm using LIKE statement in ABAP query. The sample below-
SELECT * INTO CORRESPONDING FIELDS OF TABLE LT_TAB
FROM TABLE
WHERE FIELD LIKE '____1__'.
The sample is for find data 5th char is '1'.
I want to change statement without LIKE condition. (I don't want to use RANGE, CP statements. They will be converted to LIKE statements.)
Thanks.