‎2010 Apr 16 4:26 PM
Hi ,
I had a custom program. There i have one parameter and one select option. But when i try clicking on multiple selections it is giving me a message in the status bar saying 'Place the cursor on a selection'. And it doesn't opens up the window to enter multiple selections.
When i double clicked on the message i get the message no DB655.
What can be the possible error for this ??
Thanks & Regards,
Anuj Srivastava
‎2010 Apr 16 4:32 PM
Hi,
Can you please post the selection screen declarations.
Thanks.
Regards,
Ramya.
‎2010 Apr 16 4:37 PM
Hi Ramya,
SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE text-h08. "LC006++
PARAMETERS : p_frggr LIKE ekko-frggr OBLIGATORY.
*
SELECT-OPTIONS: s_class FOR usr02-class NO INTERVALS OBLIGATORY.
SELECTION-SCREEN END OF BLOCK 1. "LC006++
SELECTION-SCREEN SKIP 1. "LC006++
SELECTION-SCREEN BEGIN OF BLOCK 2 WITH FRAME TITLE text-h09. "LC006++
* LC002++
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 40.
PARAMETER: p_config AS CHECKBOX.
SELECTION-SCREEN COMMENT 01(37) text-h05 FOR FIELD p_config.
SELECTION-SCREEN END OF LINE.
* LC002++
* LC006++
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 40.
PARAMETER: p_grptxt AS CHECKBOX.
SELECTION-SCREEN COMMENT 01(37) text-h07 FOR FIELD p_grptxt.
SELECTION-SCREEN END OF LINE.
* LC006++
SELECTION-SCREEN END OF BLOCK 2.
here s_class is the select option for which the multiple selection is not working.
Thanks & Regards,
Anuj
‎2010 Apr 16 4:45 PM
Hi Anuj,
I tried with the same code in ECC6.0 but i am able to get the multiple selection window.How it is not working for you?Do you maintain any conditions inside the logic.
tables:USR02.
SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE text-h08. "LC006++
PARAMETERS : p_frggr LIKE ekko-frggr OBLIGATORY.
*
SELECT-OPTIONS: s_class FOR usr02-class NO INTERVALS OBLIGATORY.
SELECTION-SCREEN END OF BLOCK 1. "LC006++
SELECTION-SCREEN SKIP 1. "LC006++
SELECTION-SCREEN BEGIN OF BLOCK 2 WITH FRAME TITLE text-h09. "LC006++
LC002++
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 40.
PARAMETER: p_config AS CHECKBOX.
SELECTION-SCREEN COMMENT 01(37) text-h05 FOR FIELD p_config.
SELECTION-SCREEN END OF LINE.
LC002++
LC006++
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 40.
PARAMETER: p_grptxt AS CHECKBOX.
SELECTION-SCREEN COMMENT 01(37) text-h07 FOR FIELD p_grptxt.
SELECTION-SCREEN END OF LINE.
LC006++
SELECTION-SCREEN END OF BLOCK 2.
Thanks.
Ramya.
‎2010 Apr 16 5:07 PM
Put your cursor on the select option before pressing the multiple selection button.
Rob
‎2010 Apr 18 7:29 PM
Hi Rob,
The cursor is on the select option only. I also manually placed the cursor on the select option but that way also i am getting the same error.
Thanks & Regards,
Anuj
‎2010 Apr 18 7:59 PM
Hello Anuj,
Just remove the blocks, lines and SKIP statemens and then try.
‎2010 May 25 7:54 AM