‎2006 Jun 17 12:09 PM
Can a Parameter defined in the Selection Screen take in say 4 values in one execute? If so how is the query to this written in the program?
‎2006 Jun 17 12:22 PM
I have a 'Parameter' for sales organisation on my selection screen where I need to fetch data for 4 perticular organisations at once. How do I Query this?
‎2006 Jun 17 12:13 PM
NO.. a PARAMETER can take only one value at a time. Pl use SELECT-OPTIONS to pass multiple values to the program.
~Suresh
‎2006 Jun 17 12:17 PM
Hi
use
select-option with no extenion and no intervals..to make it look like parameter and take up many value...
reward Points if it helps
Regards
Gunjan
‎2006 Jun 17 12:17 PM
Parameter will take only one value at a time. To pass multiple options you have use select-options.
Create select-option with single values with SELECTOPTIONRESTRICT FM.
Regds
Manohar
‎2006 Jun 17 12:22 PM
I have a 'Parameter' for sales organisation on my selection screen where I need to fetch data for 4 perticular organisations at once. How do I Query this?
‎2006 Jun 17 1:25 PM
Kiran,
If you want to have the functionality of a select-option but doesn't want the user to enter ranges, then what you can do is to use the SELECT-OPTIONS with NO-INTERVALS. Then use the function module RSRESTRICTSEL*,so that now the user will be able to enter multiple single values but cannot enter ranges.
Regards,
Ravi
‎2006 Jun 17 12:22 PM
HI,
No. Parameter can take only 1 value.
Use Select-options to select one or more than one value.
Regards,
Navneeth
‎2006 Jun 17 3:17 PM