SAP FETCH - Reference ABAP Statements
Warning: Undefined variable $saptab in /customers/b/9/9/trailsap.com/httpd.www/abap-statements/index.php on line 46Get Example source ABAP code based on a different SAP table
Standard SAP Help for FETCH
FETCH
ABAP Code Snippet
ABAP Syntax
{ { INTO { {[CORRESPONDING FIELDS OF] wa} | (dobj1, dobj2, ...) } }
| { INTO|APPENDING [CORRESPONDING FIELDS OF] TABLE itab
[PACKAGE SIZE n] } }.
[ CREATING { READER|LOCATOR FOR { COLUMNS col1 col2 ... }
| { ALL [OTHER] [BLOB|CLOB] COLUMNS }
[READER|LOCATOR FOR ...] }
| { (crea_syntax) } ].
INTHINT CREATING addition not yet for Release 7.02
ABAP Code Snippet
What does it do? Extracts lines from the resulting set of a
ABAP Addition
Reads a line and assigns it to a work area
Reads a line and assigns it to several data objects
Reads several lines and assigns them to an internal table
Restricts the transport to homonymous components of the work areas
Hands over the lines in pakages from
Specifies what type of
Return to menu