ABAP Keyword Documentation →  ABAP − Short Reference → 

DATA BEGIN OF - Short Reference

Reference

Syntax

DATA BEGIN OF struc [READ-ONLY] [OCCURS n].
  ...
  INCLUDE ...
  ...
DATA END OF struc [VALID BETWEEN intlim1 AND intlim2].


Effect

Declares a data object or instance attribute struc. This variant of the statement DATA creates a structure whose components can be declared using DATA statements or copied from other structures using INCLUDE.

Additions