hi,
i have a structure:
DATA: BEGIN OF record,
kunnr_001(016),
d0110_002(001),
d0120_003(001),
use_zav_004(001),
title_medi_005(030),
name1_006(040),
.
.
.
.
DATA: END of record.
structure has many many fields (over 100).
there is a field called 'nodata'.
how can i move the field NODATA to ALL the fields in the structure without doing the
move statment 100 times ????
reg, Martin