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

need a function module for popup window with tabs

Former Member
0 Likes
740

hi all,

i need a function module to display popup window with tabs options on it.

Regrads

Reddy

5 REPLIES 5
Read only

Former Member
0 Likes
648

Create an custom screen and call it using "call screen" in ur program.

кu03B1ятu03B9к

Read only

0 Likes
648

hi

can send me some more details

Regards

Reddy

Read only

0 Likes
648

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

Read only

0 Likes
648

See this

[Create Screen|http://help.sap.com/saphelp_nw04/helpdata/en/d1/801b84454211d189710000e8322d00/frameset.htm]

кu03B1ятu03B9к

Read only

0 Likes
648

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