DATA BEGIN OF

Reference

Syntax

DATA BEGIN OF struc [READ-ONLY] [OCCURS n].
  ...
  DATA | 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 through arbitrary DATA statements or adopted from other structures using INCLUDE.

Additions