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: 

what is meant by single entry-multiple options in the selection screen

Former Member
0 Kudos

hi,

please let me know what is the meant by 'single entry-multiple options' in a selection screen.

thanks in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Surya,

Nomally we use to declare Selct options like

<b>select-options : s_var for mara-matnr.</b>

here you can enter range of values for material number like 000 to 9999999999.

but if you want single entry multiple option you need to give no-intervals options when the select option will behave like parameter .. when you cannot give range of values but you can give multiple values for a single field.

for single entry-multiple options write the select option like this

and see the diffrence.

<b>select-options : s_var for mara-matnr NO INTERVALS.</b>

here cannot enter low and high range for matnr but you can enter mulitple values for select option..you can enter only low range values..

Please reward if usefull..

Thanks,

Gokul

4 REPLIES 4

Former Member
0 Kudos

Selection criteria are components of a selection screen, to which are assigned a selection table in the ABAP program, as well as two input fields and a pushbutton for multiple selection.

Single Entry in a selection screen is where the field is given with the PARAMETERS declaration in the selection screen. It carries only one input box.

the Multi Options / Multiple entries is possible with the Select-Options. where you can specify a range of values for the selection criteria.

rewards if useful.

Former Member
0 Kudos

Hi

SINGLE ENTRY means by useing PARAMETERS you can enter only single value at a time

MULTIPLE OPTIONS means by useing SELECT-OPTIONS you can enter multiple values or ranges on the selection screen

<b>Reward if useful</b>

former_member223446
Active Participant
0 Kudos

Hi

SINGLE ENTRY means by using PARAMETERS you can enter only single value at a time.

Example

PARAMETERS: NUMBER(4) TYPE P DEFAULT 999,

PVBELN LIKE VBAK-VBELN.

MULTIPLE OPTIONS means by using SELECT-OPTIONS you can enter multiple values or ranges on the selection screen.

Example

SELECT-OPTIONS : DATE FOR SY-DATUM DEFAULT SY-DATUM.

SVBELN FOR VBAK-VBELN.

Rewards points

Former Member
0 Kudos

Hi Surya,

Nomally we use to declare Selct options like

<b>select-options : s_var for mara-matnr.</b>

here you can enter range of values for material number like 000 to 9999999999.

but if you want single entry multiple option you need to give no-intervals options when the select option will behave like parameter .. when you cannot give range of values but you can give multiple values for a single field.

for single entry-multiple options write the select option like this

and see the diffrence.

<b>select-options : s_var for mara-matnr NO INTERVALS.</b>

here cannot enter low and high range for matnr but you can enter mulitple values for select option..you can enter only low range values..

Please reward if usefull..

Thanks,

Gokul