SAP FIELD-SYMBOLS - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for FIELD-SYMBOLS

FIELD-SYMBOLS

ABAP Reference
ABAP Code Snippet


ABAP Syntax FIELD-SYMBOLS <(><)> {
typing | { STRUCTURE struc DEFAULT dobj } }.
ABAP Code Snippet

What does it do? Declares a field symbol <(><<)>fs>. The angle brackets are part of the label.

ABAP Addition typing
Types the field symbol. See under typing. STRUCTURE struc DEFAULT dobj
Obsolete: Casts a structure struc and assigns a data object dobj.

Return to menu