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

screen programming

Former Member
0 Likes
375

Hi everybody,

In module-pool what are the statments we use in abap program for creating tabstrip and tabstrip with winzard.Send me some important declarations or statements

With regards,

Srikanth.M

2 REPLIES 2
Read only

Clemenss
Active Contributor
0 Likes
350

Hi srikath,

Expert Forums

Forum Search

Use the form below to search the forum content. You can choose to search all content or restrict it to certain forums or dates. Also, you can filter the results by a username or user ID.

Search Forum Content

Search Terms: Search Tips

Category or Forum:

Date Range:

Results Per Page:

Welcome, Clemens Li Help

Your Control Panel Your Control Panel

Your Reward Points Your Reward Points

Your Questions Your Questions

Search Results » Messages: 174 - Search Terms: creating tabstrip and tabstrip with winzard Sort by:

Pages: 12 1 2 3 4 5 6 7 8 9 10

1. Tabstrip

Posted on: Apr 12, 2006 4:19 PM, by user: Pradipta Kumar Mishra -- Relevance: 100% -- Show all results within this thread

Hi All Can we have another tabstrip inside a tabstrip? If yes then plz lemme know how to process the second tabstrip ? As its purely ...

2. tabstrip

Posted on: Apr 25, 2007 7:36 AM, by user: Nidhi Kathpalia -- Relevance: 94% -- Show all results within this thread

i created a tabstrip screen, on tab1 i want to hav a screen which has sm elements like text field etc. for that ...

3. creating tabstrip in an infotype

Posted on: May 17, 2006 7:47 AM, by user: Gunjan Kumar -- Relevance: 92% -- Show all results within this thread

hi how do u create a tabstrip in an infotype? points will b suitably rewarded... thx gunjan

4. tabstrip

Posted on: Dec 7, 2006 8:36 AM, by user: Sipra Jain -- Relevance: 92% -- Show all results within this thread

Hi, I've made a change in the name of a tab of the tabstrip but the change is not getting reflected after activating even when i run the application though ...

5. tabstrip with wizard

Posted on: Jul 4, 2006 1:29 PM, by user: salil singh -- Relevance: 82% -- Show all results within this thread

with tabstrip with wizard & table control with wizard?? i wanted to know step by step procedure for creating tabstrip with wizard & table control with wizard. will anybody send me sample prog for it?? ...

6. Re: tabstrip

Posted on: May 9, 2007 2:31 PM, by user: Chandrasekhar Jagarlamudi -- Relevance: 80% -- Show all results within this thread

chk these demo programs DEMO_DYNPRO_TABSTRIP_LOCAL Tabstrip Control - Scrolling at SAPgui DEMO_DYNPRO_TABSTRIP_SERVER Tabstrip Control ...

7. screen/tabstrip

Posted on: Nov 10, 2006 1:18 PM, by user: rahul sharma -- Relevance: 70% -- Show all results within this thread

Hi, can we directly go to a particular screen/tabstrip in a transaction such as va03 . i want to go directly from my prog to the schdule line tabstrip ...

8. Subscreen / tabstrip

Posted on: Oct 21, 2005 4:01 AM, by user: Kris -- Relevance: 70% -- Show all results within this thread

I am not sure if this can be done, but still want to confirm it .. I have a tabstrip with 5 tabs.. Under certain conditions I want to replace a tabstrip with a subscreen of its ...

9. Tabstrip control

Posted on: Jan 10, 2006 7:28 AM, by user: Guest -- Relevance: 69% -- Show all results within this thread

Hi, I have a subscreen with 3 tabstrips. Out of those three, I want to keep one tabstrip hidden(not shown to the user). I want it ...

10. calling tabstrip

Posted on: Nov 13, 2006 6:48 AM, by user: rahul sharma -- Relevance: 68% -- Show all results within this thread

Hi, how can we call the particular tabstrip/screen by calling a transaction from our our program. I am calling transaction va03 from ...

11. Tabstrip Control

Posted on: Aug 1, 2005 8:11 AM, by user: Priya -- Relevance: 68% -- Show all results within this thread

Hi All, Can you plz tell me how to make a tabstrip control invisible. Rgds Kalyan

12. Tabstrip control

Posted on: Feb 9, 2007 5:39 AM, by user: krishna sri -- Relevance: 68% -- Show all results within this thread

Hi all, By default Tabstrip control contains 2 tabs. How do i add another Tab. Thanks in advance Sri ...

13. Tabstrip control

Posted on: Mar 2, 2007 7:11 AM, by user: Rajesh Choudhary -- Relevance: 68% -- Show all results within this thread

Hello All, can any tell me about tabstrip control with simple example. Thanks and Regard. Rajesh

14. TABSTRIP in CONTEINER

Posted on: Jul 24, 2006 5:40 AM, by user: Sergey Petrov -- Relevance: 68% -- Show all results within this thread

Help me please, How to place TABSTRIP control in CONTEINER Message was edited by: Sergey Petrov

15. create tabstrip in seletion screen

Posted on: Oct 19, 2005 6:36 AM, by user: kishan negi -- Relevance: 67% -- Show all results within this thread

HOw can i create tabstrip in seletion screen?

Pages: 12 1 2 3 4 5 6 7 8 9 10

Regards,

Clemens

Read only

Former Member
0 Likes
350

Hi,

You can refer to the following program in SAPDOCU :

DEMO_DYNPRO_TABSTRIP_LOCAL.

You would use CALL SUBSCREEN: SUB1 INCLUDING SY-REPID SY_DYNNR in PBO and Call subscreen sub1 in PAI.

REPORT DEMO_DYNPRO_TABSTRIP_LOCAL.

CONTROLS MYTABSTRIP TYPE TABSTRIP.

DATA: OK_CODE TYPE SY-UCOMM,

SAVE_OK TYPE SY-UCOMM.

MYTABSTRIP-ACTIVETAB = 'PUSH2'.

CALL SCREEN 100.

MODULE STATUS_0100 OUTPUT.

SET PF-STATUS 'SCREEN_100'.

ENDMODULE.

MODULE CANCEL INPUT.

LEAVE PROGRAM.

ENDMODULE.

MODULE USER_COMMAND INPUT.

SAVE_OK = OK_CODE.

CLEAR OK_CODE.

IF SAVE_OK = 'OK'.

MESSAGE I888(SABAPDOCU) WITH 'MYTABSTRIP-ACTIVETAB ='

MYTABSTRIP-ACTIVETAB.

ENDIF.

ENDMODULE.

The screen flow logic for screen 100 is as follows:

PROCESS BEFORE OUTPUT.

MODULE STATUS_0100.

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

SUB2 INCLUDING SY-REPID '0120',

SUB3 INCLUDING SY-REPID '0130'.

PROCESS AFTER INPUT.

MODULE CANCEL AT EXIT-COMMAND.

CALL SUBSCREEN: SUB1,

SUB2,

SUB3.

MODULE USER_COMMAND.

-


Tabstrip control with paging on the application server.

REPORT DEMO_DYNPRO_TABSTRIP_LOCAL.

CONTROLS MYTABSTRIP TYPE TABSTRIP.

DATA: OK_CODE TYPE SY-UCOMM,

SAVE_OK TYPE SY-UCOMM.

DATA NUMBER TYPE SY-DYNNR.

MYTABSTRIP-ACTIVETAB = 'PUSH2'.

NUMBER = '0120'.

CALL SCREEN 100.

MODULE STATUS_0100 OUTPUT.

SET PF-STATUS 'SCREEN_100'.

ENDMODULE.

MODULE CANCEL INPUT.

LEAVE PROGRAM.

ENDMODULE.

MODULE USER_COMMAND INPUT.

SAVE_OK = OK_CODE.

CLEAR OK_CODE.

IF SAVE_OK = 'OK'.

MESSAGE I888(SABAPDOCU) WITH 'MYTABSTRIP-ACTIVETAB ='

MYTABSTRIP-ACTIVETAB.

ELSE.

MYTABSTRIP-ACTIVETAB = SAVE_OK.

CASE SAVE_OK.

WHEN 'PUSH1'.

NUMBER = '0110'.

WHEN 'PUSH2'.

NUMBER = '0120'.

WHEN 'PUSH3'.

NUMBER = '0130'.

ENDCASE.

ENDIF.

ENDMODULE.

The screen flow logic for screen 100 is as follows:

PROCESS BEFORE OUTPUT.

MODULE STATUS_0100.

CALL SUBSCREEN SUB INCLUDING SY-REPID NUMBER.

PROCESS AFTER INPUT.

MODULE CANCEL AT EXIT-COMMAND.

CALL SUBSCREEN SUB.

MODULE USER_COMMAND.

Hope this will help.

Regards,

Srilatha.