Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

selection-screen

Former Member
0 Likes
214

How to protect some fields in selection-screen?

1 REPLY 1
Read only

hymavathi_oruganti
Active Contributor
0 Likes
191

protect means?

u should not alter?

u can do all these type of manipulation using the screen table. check once the fields of table "screen".

in the report under the event,

EX:

AT SELECTION SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'XXXXXX'.

SCREEN-REQUIRED = 1.

ELSE.

..........

ENDIF.

MODIFY SCREEN.

ENLOOP.