Code: Alles auswählen.
if zdssis_s_reallocation_dypnpro-cur_status = 'NEW'.
and zdssis_s_reallocation_dypnpro-new_status ne ''.
loop at screen.
if screen-name = 'Name des Dynprofeldes'.
* oder screen-group2 = 'XYZ' wenn du die Feldgruppe auf XYZ setzt
screen-active = 0. " nicht 1 !
screen-output = 0. " nicht 1 !
modify screen.
endif.
endloop.
endif.