‎2007 May 21 12:28 PM
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
‎2007 May 21 12:30 PM
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.
‎2007 May 21 12:53 PM
Thanks.
Can you please explain.
My Requirement is for Presentation Server and not for Appliaction Server.
Regards,
Priyanka.