2009 Mar 07 3:45 PM
hi all,
i need a function module to display popup window with tabs options on it.
Regrads
Reddy
2009 Mar 07 3:51 PM
Create an custom screen and call it using "call screen" in ur program.
кu03B1ятu03B9к
2009 Mar 07 3:53 PM
2009 Mar 07 3:59 PM
hi
create custom screen using following statement
Call screen 2000.
Double click on 2000, it will ask for creation of screen .
create the screen in the screen u can put tabs what ever you want .
And do u know module pool concept ?
if you the concept its very easy .go thru threads of module pool u will get more infi
2009 Mar 07 4:11 PM
See this
[Create Screen|http://help.sap.com/saphelp_nw04/helpdata/en/d1/801b84454211d189710000e8322d00/frameset.htm]
кu03B1ятu03B9к
2009 Mar 07 4:12 PM
Create a screen with tabs in SE51 and use ut in program:
selection-screen begin of screen 100 as subscreen.
SELECTION-SCREEN BEGIN OF BLOCK sel WITH FRAME TITLE text-b01.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(20) text-c06.
SELECT-OPTIONS: so_matnr FOR mara-matnr NO INTERVALS MODIF ID bl1.
.............
----------
selection-screen end of screen 100.calling a screen...
CALL SCREEN 100
STARTING AT 5 5
ENDING AT 75 21.If you look into any popup fm.. there is statmement call screen XXX.... either copy that FM to a custom FM and replace the XXXX with ur screen number you created in SE51 for your program which has tabs on it....
J@Y