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

Select-options

Former Member
0 Likes
823

Hi Experts,

Can i Create select-options by using SE51 Transaction if Yes how? if No why?

Thanks in Advance.

7 REPLIES 7
Read only

former_member404244
Active Contributor
0 Likes
786

Hi,

By the tcode SE51 we can create the screen and that screen can be called in the report program ,thus instead of default selection screen 1000 is called we can call our's.Thus its possible to create select options from se51

Regards,

Nagaraj

Read only

Former Member
0 Likes
786

hi

SELECTION-SCREEN BEGIN OF SCREEN 1020 AS SUBSCREEN.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 3(5) TEXT-009.

SELECTION-SCREEN POSITION 10.

SELECT-OPTIONS : S_CORR FOR Table-field MATCHCODE OBJECT mcd.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF SCREEN 1020.

In module pool declare subscreen area and do the below.

PROCESS BEFORE OUTPUT.

MODULE STATUS_100.

CALL SUBSCREEN ANA_SCA

INCLUDING 'YHPRMAIN' '1020'.

PROCESS AFTER INPUT.

CALL SUBSCREEN ANA_SCA.

MODULE USER_COMMAND_100.

Read only

0 Likes
786

Hi All,

I Know the syntax of Select-options and i know 1000 is the default screen

table spfli.

select-options s_carrid for spfli-carrid.

By using this we can create default screen 1000 only but i dont want that i already created a selection screen by using se51 screen number 250 for my program in that screen i want to insert a field like select-options because i want posible entries

in my screen.

Thanks in advance.

Read only

0 Likes
786

Hi,

You can't declare the field as a select option in the screen that you have created.

You have to declare two fields on the screen one for LOW and one for HIGH and then in your Flow logic you can apply the checks and prepare a range.

( Disadvantages -- No multiple range possible and you cannot give Not equal to option)

"i want to insert a field like select-options because i want posible entries

in my screen. "

If you just want to show possible entries for a field

1) Declare the field with reference to dictinoary

2) Use custom F4 help using POV event

3) Assign a search help to the field in the attributes

Regards,

abhishek

Read only

Former Member
0 Likes
786

Hi

we can create a list box but we can't create a select-option in the SE51

Read only

0 Likes
786

hi,

create a pushbutton for the selection and

use FM "<b>COMPLEX_SELECTIONS_DIALOG</b>"

Read only

Former Member
0 Likes
786

Hi,

Create selection screen in se38.Activate it and open it in se80.you will screen 1000 in screen node.

L.Velu