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

Default value in selection screen in display mode

Former Member
0 Likes
710

Hai Friends,

In my selection screen i have a parameter PA_LEVEL, this should have a default value as 10 but it should not be in the change mode. i want that to be in the display mode as in FAGLL03 ( Ledger value ).

how can i do this.

Moderator message - Please do not ask such basic questions. This can easily be answered by searching the forum.

Edited by: Rob Burbank on Apr 16, 2009 12:18 PM

Hai Friends,

In my selection screen i have a parameter PA_LEVEL, this should have a default value as 10 but it should not be in the change mode. i want that to be in the display mode as in FAGLL03 ( Ledger value ).

how can i do this.

Moderator message - Please do not ask such basic questions. This can easily be answered by searching the forum.

Edited by: Rob Burbank on Apr 16, 2009 12:18 PM

2 REPLIES 2
Read only

former_member156446
Active Contributor
0 Likes
470

search the forum with key words: "loop at screen" "modif id" "dynamic selection screen".

answered too many times, to answer again..

Read only

Former Member
0 Likes
470

Hi,

Use LOOP AT SCREEN...ENDLOOP. in the AT SELECTION-SCREEN OUPTUT event to disable the input field.

LOOP AT SCREEN.
IF screen-name CS 'FIELDNAME'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.