SAP SEARCH - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for SEARCH

SEARCH

ABAP Reference
ABAP Code Snippet


ABAP Syntax SEARCH dobj|itab FOR pattern

[IN {CHARACTER|BYTE} MODE]
[STARTING AT p1] [ENDING AT p2]
[ABBREVIATED]
[AND MARK].
ABAP Code Snippet

What does it do? Obsolete: Searches the data object dobj or the internal table itab for the search pattern specified in pattern.

ABAP Addition IN {CHARACTER|BYTE} MODE
Specifies character string or byte string processing.
[STARTING AT p1] [ENDING AT p2]
Restricts the search to the subarea between the positions p1 and p2 of dobj or to the rows between p1 and p2 in itab.
ABBREVIATED
Allows an abbreviated pattern to be specified in pattern.
AND MARK
Converts a found pattern in dobj or itab into uppercase.

Return to menu