‎2007 May 03 9:53 AM
Hi, i need to create a TabStrip Control, and the first tab needs a select-options.
Is there any way to build it?
Thanks.
‎2007 May 03 9:54 AM
‎2007 May 03 9:55 AM
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
‎2007 May 03 9:56 AM
‎2007 May 03 9:58 AM
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
‎2007 May 03 10:30 AM
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.
‎2007 May 03 10:33 AM
Hi,
create two text boxes, buttons, and use FM: COMPLEX_SELECTIONS_DIALOG
Reward if it helps.
Regards,
Hemant.