Open all | Close all
|
Modify Selection Screen(LOOP AT SCREEN)
Example code for for modifying Selection screen from within ABAP code:
|
************************************************************************
*AT SELECTION-SCREEN OUTPUT.
AT SELECTION-SCREEN OUTPUT.
loop at screen.
if screen-name eq 'PNPS$MSL'.
screen-active = 0.
endif.
modify screen.
endloop.
|
|
|