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 parameter with two default values

Former Member
0 Likes
439

Hi All,

Inside my Selection screen there is one parameter --> procurement type and i want to make assign S and F as defalut values for it.

Please suggest me how can i assign two default values to one parameter.

Thanks.

2 REPLIES 2
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
421

HI,

You can do that in the INITIALIZATION section of the report.

This section is executed before the screen is shown and only once.

Example

INITIALIZATION.

field1 = 'initial value1'.

Best Regrds,

Sesh

Message was edited by:

Seshatalpasai Madala

Read only

Former Member
0 Likes
421

parameters u cannot do that , try if u can use this

select-options : s_matnr for mara-matnr no intervals no-extension.

initialization.

s_matnr-low = '1111111'.
append s_matnr.

s_matnr-low = '2222222'.
append s_matnr.