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

Create Select-Options in Modul-Pool

Former Member
0 Likes
604

Hi, i need to create a TabStrip Control, and the first tab needs a select-options.

Is there any way to build it?

Thanks.

6 REPLIES 6
Read only

Former Member
0 Likes
580

I meant build the select-options in a Modul-Pool application.

Read only

Former Member
0 Likes
580

Hi

You can't use/create Select-options in module pool programs.

Instead you can develop/use RANGES in the place of select-options.

Reward points if useful

Regards

Anji

Read only

Former Member
0 Likes
580

hi Jose,

Check out this realated threads ..

Regards,

Santosh

Read only

Former Member
0 Likes
580

create a selection screen in a report and call the selection screen ( call screen 1000). Of course i guess you can even copy it to module pool

Read only

Former Member
0 Likes
580

Try using this....

SELECTION-SCREEN BEGIN OF SCREEN 123 AS WINDOW TITLE TEXT-456.

SELECTION-SCREEN BEGIN OF BLOCK BL1 WITH FRAME TITLE TEXT-BL1

NO INTERVALS.

SELECT-OPTIONS SEL1 FOR SY-SUBRC.

PARAMETERS PAR1 LIKE SPFLI-CARRID.

SELECTION-SCREEN COMMENT /10(20) TEXT-COM.

SELECTION-SCREEN END OF BLOCK BL1.

SELECTION-SCREEN END OF SCREEN 123.

CALL SELECTION-SCREEN 123 .

Regards,

Hemant.

Read only

0 Likes
580

Hi,

create two text boxes, buttons, and use FM: COMPLEX_SELECTIONS_DIALOG

Reward if it helps.

Regards,

Hemant.