NAVAPAT_T

ABAP_search_word

Jul 7th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.21 KB | None | 0 0
  1. REPORT ZPATMAX_search_word.
  2. DATA : sentence(30) value 'the day is a good day?',
  3.       word(10) value 'good'.
  4. search sentence for word.
  5. if sy-subrc = 0.
  6.   write / 'found'.
  7. else.
  8.   write / 'not found'.
  9. endif.
Advertisement
Add Comment
Please, Sign In to add comment