Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- REPORT ZPATMAX_search_word.
- DATA : sentence(30) value 'the day is a good day?',
- word(10) value 'good'.
- search sentence for word.
- if sy-subrc = 0.
- write / 'found'.
- else.
- write / 'not found'.
- endif.
Advertisement
Add Comment
Please, Sign In to add comment