I'll try to explain as simple as possible.
I have a Database table 'DB_JOURNAL' that has only 2 columns 'Date' and 'Journal' type String.
example :
01.01.2020 | I played football.
02.02.2020 | I played basketball
I want to write a Select statement and in the query to search for the string. Like searching for the word football.
Select * from DB_JOURNAL into table lt_journal
where journal like '%football%'.
This is not allowed in ABAP:
The field "JOURNAL" is a long string or a text and cannot be used in the WHERE condition.
Is there any solution?