‎2014 Mar 09 12:22 PM
Dear Experts,
I am new to module pool programming and i have my selection screen as seen below, but from this screen i cannot execute as that icon is missing.
How can i get it?
SELECTION-SCREEN BEGIN OF SCREEN 1100 AS SUBSCREEN NO INTERVALS.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-010.
PARAMETERS: file TYPE rlgrap-filename.
SELECTION-SCREEN END OF BLOCK b1.
SELECTION-SCREEN END OF SCREEN 1100.
SELECTION-SCREEN BEGIN OF SCREEN 1200 AS SUBSCREEN NO INTERVALS.
SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-020.
PARAMETERS: p_po TYPE ekko-ebeln.
SELECTION-SCREEN END OF BLOCK b2.
SELECTION-SCREEN END OF SCREEN 1200.
CONTROLS mytabstrip TYPE TABSTRIP.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR file .
START-OF-SELECTION.
mytabstrip-activetab = 'BUTTON1'.
CALL SCREEN 100.
(this screen displays and i can input the values. But after that no execute button.)
‎2014 Mar 09 1:21 PM
you either want to create a report with selection screen, or a module-pool with some more functionality. Only in seldom cases you really need a selection screen outside of a report. So please provide the business process, which needs your functionality and what should it do.
‎2014 Mar 09 1:29 PM
Hii Jozef this is not a report, rather a tool development. The first screen is where user gives input and execute. That is why i need the 'execute' button.
‎2014 Mar 09 7:17 PM
Hi, once you really need an execute button (F8) and a selection screen at the startup of the process - it IS a report program. Just create one a do whatever more you need in the corresponding module pools. So take your selection screen data and process further in your screens (called via a function module, or by call screen, once you have them in the same program).
‎2014 Mar 09 8:07 PM
Hi Anushka,
If i got it right you require to create custom selection screen look alike in your module pool.
So for this you need to call your selection screen inside your module pool.
BR
Sumeet
‎2014 Mar 09 5:04 PM
Hello Anushka,
Maintain the function key settings for the screen which you are calling in SE41.
Regards,
Thanga
‎2014 Mar 09 5:19 PM