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

Issue with selection screen

anuj_srivastava
Active Participant
0 Likes
1,086

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

7 REPLIES 7
Read only

Former Member
0 Likes
865

Hi,

Can you please post the selection screen declarations.

Thanks.

Regards,

Ramya.

Read only

0 Likes
865

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

Read only

0 Likes
865

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.

Read only

Former Member
0 Likes
865

Put your cursor on the select option before pressing the multiple selection button.

Rob

Read only

0 Likes
865

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

Read only

0 Likes
865

Hello Anuj,

Just remove the blocks, lines and SKIP statemens and then try.

Read only

anuj_srivastava
Active Participant
0 Likes
865

solved by self