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

Tabstrip - at selection-screen on value-request

Former Member
0 Likes
455

Hi,

I am using 4 tabs in my program.but, I am not getting how to write the code for :

"at selection-screen on value-request"

as I need to call it for all the four tabs with different select-options.

at selection-screen.

case sy-ucomm.

when 'ucomm1'.

PERform f_selection_request_stck_trans.

value_tab = i_ebeln_ST.

when 'ucomm2'.

PERform f_selection_request_po_ret.

value_tab = i_ebeln_PR.

when 'ucomm3'.

PERFORM f_selection_request_sal_ret .

value_tab = i_vbeln_SR.

when 'ucomm4'.

PERFORM f_selection_request_sal_con .

value_tab = i_vbeln_CO.

endcase.

at selection-screen on value-request for s_ebeln1-low.

PERform f_f4_values.

at selection-screen on value-request for s_ebeln2-low.

PERform f_f4_values.

at selection-screen on value-request for s_vbeln1-low.

PERform f_f4_values.

at selection-screen on value-request for s_vbeln2-low.

PERform f_f4_values.

Kindly tell me what should be done in order to get F4 Help for Select-option in 4 screens.

Regards,

Priyanka

2 REPLIES 2
Read only

Former Member
0 Likes
399

CONTROLS mytabstrip TYPE TABSTRIP.

<b> Take care of this variable mytabstrip-activetab</b>

go through the below underlined programs.

Tabstrip Control - Scrolling at SAPgui -- <u>demo_dynpro_tabstrip_local</u>

Diferent SubScreens

Using Func. Type 'P'

PROCESS BEFORE OUTPUT.

CALL SUBSCREEN: SUB1 INCLUDING SY-REPID '0110',

SUB2 INCLUDING SY-REPID '0120',

SUB3 INCLUDING SY-REPID '0130'.

PROCESS AFTER INPUT.

CALL SUBSCREEN: SUB1,

SUB2,

SUB3.

Tabstrip Control - Scrolling at Application Server -- <u>demo_dynpro_tabstrip_server</u>

Single Subscreen.

PBO.

CALL SUBSCREEN: AREA INCLUDING SY-REPID NUMBER.

PAI.

CALL SUBSCREEN: AREA.

Read only

0 Likes
399

Thanks.

Can you please explain.

My Requirement is for Presentation Server and not for Appliaction Server.

Regards,

Priyanka.