Show TOC Start of Content Area

Searching Within Character Strings  Locate the document in its SAP Library structure

You can start a screen sequence from an ABAP program using

FIND [{FIRST OCCURRENCE}|{ALL OCCURRENCES} OF] pattern IN dobj.

The internal table itab is searched through row-by-row according to the byte or character string defined by pattern. The addition OCCURRENCE[S]determines if the first occurrence, or all occurrences are searched. The search is terminated if the search pattern was found for the first time, or if all search patterns were found in the entire search area, or if the end of the search area was reached. The search result is communicated by setting sy-subrc.

During string processing with data objects dobj of fixed length, the closing space is taken into account.

 

End of Content Area