How to get tabs in screen painter?

Hi friends i am having 3 screens with numbers 100, 200, 300.
I want to make this 3 screens into tabs like basicdata1, basicdata2 in mm02. Like when i click basicdata1 it has to open basicdata1 screen.
Please can anyone share me the solution

Hi,
For this requirement you can create one screen with no .100.In that create 3 tabstrips.Tabstrips allow users to access multiple subscreens on one normal screen.For three tabs maintain properties, one sub screen is sufficient for the three tabs , design the layout and write the respective logic in flowlogic to switch between different tabs.
Here is the sample code.....
&----DECLARETION OF STRUCTURE -
TYPES: BEGIN OF ST_KNA1,
        KUNNR TYPE KUNNR,
        LAND1 TYPE LAND1,
        NAME1 TYPE NAME1,
        ORT01 TYPE ORT01,
        PSTLZ TYPE PSTLZ,
        REGIO TYPE REGIO,
        TELF1 TYPE TELF1,
        BANKS TYPE BANKS,
        BANKL TYPE BANKL,
        BANKN TYPE BANKN,
        KOINH TYPE KOINH_FI,
        EBPP_ACCNAME TYPE EBPP_ACCNAME,
        END OF ST_KNA1,
        BEGIN OF ST_KNBK,
        BANKS TYPE BANKS,
        BANKL TYPE BANKL,
        BANKN TYPE BANKN,
        KOINH TYPE KOINH_FI,
        EBPP_ACCNAME TYPE EBPP_ACCNAME,
        END OF ST_KNBK.
&--DECLARATION OF WORK AREA--
DATA: WA_KNA1 TYPE ST_KNA1,
      WA_KNBK TYPE ST_KNBK.
DATA: V_SCREEN TYPE SY-DYNNR VALUE '0110',
      OK_CODE TYPE SY-UCOMM,
      V_KUNNR TYPE KNA1-KUNNR.
CONTROLS: TAB TYPE TABSTRIP.
*&      Module  STATUS_0100  OUTPUT
MODULE STATUS_0100 OUTPUT.
  SET PF-STATUS 'TABSTRIPS'.
ENDMODULE.                 " STATUS_0100  OUTPUT
*&      Module  USER_COMMAND_0100  INPUT
MODULE USER_COMMAND_0100 INPUT.
  CASE OK_CODE.
    WHEN 'DISP'.
      CLEAR WA_KNA1.
      SELECT
             KUNNR
             LAND1
             NAME1
             ORT01
             PSTLZ
             REGIO
             TELF1
             INTO WA_KNA1
          FROM KNA1
          WHERE KNA1~KUNNR = V_KUNNR.
      ENDSELECT.
      IF NOT WA_KNA1 IS INITIAL.
        TAB-ACTIVETAB = 'TAB1'.
        V_SCREEN = '110'.
      ELSE.
        MESSAGE I003(Z50850MESSAGE).
      ENDIF.
  ENDCASE.
  CASE OK_CODE.
&--CALLS SUBSCREEN  TO DISPLAY CUSTOMER NAME AND NUMBER--
    WHEN 'TAB1'.
      TAB-ACTIVETAB = 'TAB1'.
      V_SCREEN = '110'.
&--CALLS SUBSCREEN TO DISPLAY CUSTOMER PERSONAL DETAILS--
    WHEN 'TAB2'.
      TAB-ACTIVETAB = 'TAB2'.
      V_SCREEN = '120'.
&--CALLS SUBSCREEN TO DISPLAY CUSTOMER BANK DETAILS--
    WHEN 'TAB3'.
      CLEAR WA_KNBK.
      SELECT
             BANKS
             BANKL
             BANKN
             KOINH
             EBPP_ACCNAME
             INTO WA_KNBK
          FROM KNBK
          WHERE KUNNR = WA_KNA1-KUNNR.
      ENDSELECT.
      IF WA_KNBK-BANKN IS INITIAL.
        MESSAGE I003(Z50850MESSAGE).
      ELSE.
        TAB-ACTIVETAB = 'TAB3'.
        V_SCREEN = '130'.
      ENDIF.
    WHEN 'EXIT' OR 'BACK' OR 'CANCEL' OR 'STOP'.
      LEAVE PROGRAM.
  ENDCASE.
ENDMODULE.                 " USER_COMMAND_0100  INPUT
Regards,
kavitha

Similar Messages

  • How to swap fields in screen painter.

    hello gurus,,
    how to swap fields in screen painter.

    Hi
    Go through the link given below :
    http://www.standardware.com/pdf/stdwsp.pdf
    With Regards
    Nikunj Shah

  • How to Get the Debugger Screen in WEB Front end of SRM

    Hi Gurus,
    I have couple of questions for SRM.
    1. How to Get the Debugger Screen in WEB Front end of SRM so i can debug the application which is running in EBP system??
    2. How to set the flag for external debugging (HTTP)??
    3. Using SICF how to set the ITS services ( Like BBPSC01 )for internal ITS so as soon as i place the order it should stop at the break point which i have set in the application.
    Thanks.
    Regards,
    Manoj Tiwari

    Setting up Debugging for Integrated ITS
    Tcode SICF.
    Select service (e.g. default_hostàbcàguiàsapàitsàbbpsc01).
    Change service settings and insert parameter ~GENERATEDYNDPRO=1.
    Find program to debug. E.g. SE93. Enter bbpsc01 à Display and get Program field (SAPLBBP_SC_UI_ITS)
    Execute SE38 and enter program name.
    Turn HTTP Debugging ON. UtilitiesàSettingsàDebugging. Click Actv and username.
    Add HTTP Breakpoint. Display source code and select Utilitiesàbreakpointsàset.
    On “External Debugging” select ‘HTTP Breakpoint’.
    Remember to remove breakpoints, deactivate debugging and remove parameter GENERATEDYNPRO.
    Can run program RSBREAKPOINTS to find which programs you have breakpoints set in.
    Have fun with EBP
    If you have any more questions i would be happy to help you. Send me mail on [email protected]

  • Acrobat X Pro.  How to get tab to show up in Microsoft Office ribbon?

    Acrobat X Pro.  How to get tab to show up in Microsoft Office ribbon?

    Hi ebender888,
    Which Office version are you using?
    If it's Office 2013 then Acrobat 10 pdfmaker is not compatible.
    Please refer: http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html#main_ PDFMaker_compatible_applications
    Regards,
    Rave

  • How to get past gray screen on MacBook?

    How to get past gray screen on MacBook?

    Here are some initial things to try.
    http://support.apple.com/kb/ts2570
    http://lifehacker.com/how-to-troubleshoot-the-four-most-common-oh-sh-t-mac-48708 0511

  • How to get into desktop screen at once when client come into RDP session?

    How to get into desktop screen at once when client come into RDP session?
    When users login into terminal server I would like they see own desktop and open web page of corp portal.
    How to do that?

    Hi
    Hope below links will help
    http://blog.cloud-client.info/2012/10/03/tip-configure-a-keyboard-shortcut-to-minimize-fullscreen-citrix-or-microsoft-rds-sessions-for-a-linux-based-igel-os/
    Also there are some Remote Desktop Services shortcut keys
    http://msdn.microsoft.com/en-us/library/aa383500%28v=vs.85%29.aspx
    Regards,
    Rajesh J S

  • How to get pop-up screen in modulepool

    Hi Guru,
    how to get pop-up screen when press push button from one screen.
    what is the code to do even i selected screen as module dialog box at screen attributes i am getting but normal full screen i am getting. pls tell me how to get pop-up screen when i press push button.
    regards,

    hi,
    write the logic of POP up int he PAI event of the Screen
    case sy-ucomm.
    when 'Push button'.
       Logic for popup button.
    endcase.
    Logic for POPUP :
        CALL FUNCTION 'POPUP_WITH_2_BUTTONS_TO_CHOOSE'
          EXPORTING
            diagnosetext1 = 'The combination of Run Date & Identification'(001)
            diagnosetext2 = 'already exist. Do you want to display ?'(002)
            textline1     = space
            text_option1  = 'YES'(003)
            text_option2  = 'NO'(004)
            titel         = 'Processing selection'(005)
          IMPORTING
            answer        = v_answer.
          CALL FUNCTION 'POPUP_TO_CONFIRM'                      "#EC *
            EXPORTING
              text_question  = 'Message For Confirmation'
              text_button_1  = 'YES'
              text_button_2  = 'NO'
              default_button = '1'
              display_cancel_button = ' '
              start_column   = 25
              start_row      = 6
            IMPORTING
              answer         = v_answer
            EXCEPTIONS
              text_not_found = 1
              OTHERS         = 2.
    Regards,
    Deepthi.

  • HT5422 How to get an better screen-update? The view on the remote Mac is nearly static.

    How to get an better screen-update? The view on the remote Mac is nearly static.

    You can try reducing the bit depth of the screen image  via the slider in the upper-right of the Control window. If that doesn't help, you may just not have a sufficiently fast network connection to correctly handle the data transfer necessary. This is often the case if you're connecting across the Internet. What is your network speed between the administration system and the client?
    Regards.

  • Does anyone know how to get an animated screen saver working

    Hi I have a imac desktop not even a year old.  Does anyone know how to get an animated screen saver working please. Its a gimp screen saver and is it safe to use on my mac? 

    Go to the website from where you got the screensaver from and read its system requirements and instructions for installation. 

  • How to get tabs into a column on left edge of Firefox window?

    How to get tabs into a column on left edge of Firefox window?
    I've looked extensively for the answer but haven't found it yet.

    I found the Tree Style Tab ad-on does this.
    Mike

  • How do you open graphical screen painter

    Hi all-
    I'm using PlatinGUI 6.30r2.  How do I open the graphical screen painter (after going into object navigator, I want to place controls on a screen)?
    I clicked Layout, but get what appears to be a bunch of horizontal lines-- nothing like a screen painter.
    thanks,
    Kevin

    Actually, the GUI provided on the CD is 6.30r4.  After trying to install I got this:
    rpm –Uvh path/PlatinGUI-Linux-6.30-4.i386.rpm
    >./gui
    JAVA=/usr/lib/java/bin/java: Command not found
    PH=/opt/sapgui/6.30rev4/jar: Command not found
    SOI=/opt/staroffice7/program/classes: Command not found
    JAVA: undefined variable
    I read elsewhere on one of these forums that the free GUI on the sneak preview doesn't work so well with the database (and learned this by sad experience myself), so I downloaded and installed an earlier version from the website:
    ftp –d ftp.sap.com
    name: anonymous
    pw: email account
    cd to /pub/sapgui/
    get PlatinGUI-Linux-630r2.jar
    I installed that with java –jar PlatinGUI-Linux-630r2.jar, but I didn't see any prompts about installing specific components, so I have no idea what you are referring to (must be on the software that people pay for).  That is the version I am currently using, and it is working fine except for this graphical screen painter is not coming up.  Now my ABAP book is from 2002, so I'm sure it is included somewhere.  Do you have any suggestions?  Don't worry, you will get your points.
    thanks-

  • How to get torch home screen to just show no apps when menu bar is closed?

    Please bear with me, I'm struggling with how to explain this ha ha!
    On the torch homescreen, you touch the 'all' bar at the bottom to display the full menu. When you touch the bar again it closes the menu of apps.
    When I first got the torch the menu, when closed, displayed just one row of 4 apps (SMS, browser etc) But I must've pressed something unknowingly or changed a setting so it showed no apps at all when i closed the menu. I preferred this as I like the home screen to just show the background on the phone and not look cluttered.
    However it changed back recently and is now showing TWO rows of apps now not even just one! and can't for the life of me figure out how to change it back??
    Thanks to anyone who helps!
    Solved!
    Go to Solution.

    Just touch and drag down to the bottom of the screen. You'll then see just the arrow ^ (You can adjust that way for 0 to 3 rows of icons.) Then, when you tap the bar with the arrow, you'll get your full screen of icons back.

  • HT201274 I have wiped the old persons data and photos etc off my recently purchased ipod touch and now all the display shows is a usb lead and CD, please can someone tell me how to get past this screen so I can transfer my own music

    Please can anyone help, I recently purchased a second hand ipod touch and it had over 4000 photos on it, so to delete them I went to settings and found an option which said something like erase all content and data, I did this and the next morning I tried to turn it on to put my own music on, only to find that the only display on the screen is a usb lead with an arrow pointing to a CD. I cant get past this screen even after plugging it in to my itunes account, its like my computer can not find the ipod.

    Put it in Recovery Mode. If your computer won't recognize your iPod, try another one. How did you wiped the iPod? With iTunes or directly with the settings app?

  • How to get the actual screen size

    Hi,
    I have to get the actual screen size of the cliend in an applet, if i use method
    Dimension dmx = Toolkit.getDefaultToolkit().getScreenSize();
    it does not gives the actual screen size, like the screen size will be different if the application bar ( where we have start button on windows ) is Auto hide, and will be different it is not Auto Hide, or some users ike to keep the application bar on right or left of screen or on top..
    So how do we get the actual display size of screen

    Hi,
    I got how to do if using applet
    in screen object of java script we have methods to get the available width and availabe size
    screen.availWidth
    screen.availHeight
    here is the link for more info
    http://developer.netscape.com/docs/manuals/js/client/jsref/screen.htm
    http://forum.java.sun.com/thread.jsp?thread=275329&forum=57&message=1063410

  • How to get ipod touch screen to work?

    Hi I have an issue getting my Ipod screen to respond to my touch or any period. It seems to only work on the left side of the screen,which means I can't slide it to my app page or even turn it off. I honestly don't know how it happened? It was out in the sun while I was skating and it never worked since. =c PLEASE HELP I don't think I have a warranty on it. =/

    If you restore from a backup, it restore yore settings to the last time you synced to iTunes.  This will restore the latest password, which should now work.

Maybe you are looking for

  • Word & Excel for Mac - any good?

    I took a while to adapt from Word to Pages, but now I'm perfectly happy and the Mac is the best thing ever... whole different planet to microsoft and windoze. However, I've been given Microsoft Office Mac: Home & Student edition as a Christmas presen

  • Call function within rfc

    Hi, i´ve developed an RFC FM and within this FM i use     CALL FUNCTION ' NUMBER_GET_NEXT' in order to get a sequential number each time the FM is called. When this RFC FM is called from XI i get exception 1 (INTERVAL_NOT_FOUND)  Why is this happenin

  • IPad mini wifi problems since Yosemite Upgraded

    SInce upgrading to Yosemite on my iPad 2 Mini, the wifi has slowed massively! Is there a fix? thanks!

  • Notification Detail Page is not displaying

    Hi All, I have a requirement of creating a read only workflow admin responsibility. For that I have followed the below steps. 1. Set 'Workflow Administrator Web Applications' as the Workflow Administrator from administration tab. 2. Create a grant wi

  • Re: msi r7950 twin frozr

    Iam wanting to check what power my graphics card is using was looking at the zelman zm-vpm 1 My 7950 has the 6+8 pcie which I think can use up to about 340 watts is and the zelman only does up to 240w so would I be able to use two of them or does any