Application Development 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: 

Changing-- parameter field from display mode to change mode?

Former Member
0 Kudos

Hi experts,

In my selection screen I am using the parameter field pabrj and pabrb from table t569v.So I have to view the selection screen field to be displayed in display mode by default.

How to change that selection screen parameter field from change mode to display mode?

Thanks,

Sakthi.C

1 REPLY 1

Former Member
0 Kudos

I believe you have 2 parameters in selection screen which always should be displayed in display mode.

Try following code in initialization event.

parameter: p_matnr like mara-matnr default '100-100'.

loop at screen.

if screen-name = 'p_matnr'.

screen-input = 0.

modify screen.

endif.

endloop.

Reward if helpful and pleas close the thread.