How to make a tabstrip visible and invisible again?

Hi
I have a GUI with Fields, Texts, Checkboxes, Radio buttons, a Button and of
course a tabstrip with 7 tabs.
Before I want to show some data in the tabs of the tabstrip, I have to fill the fields, check a radio button and checkboxes. After filled all entries needed, I will start
the preparation of the data with clicking on the button.
Before the click on the button the tabstrip has to be invisible. After the preparation
of the data I will make the tabstrip with its tabs visible.
All this is in the same dynpro (e.g. 0100). I don't build it together with to dynpros.
I tried with LOOP AT SCREEN ... ENDLOOP, but the tabstrip does not appear.
The only attribute accessable is "activetab".
How to make that happen?
Thanks for your help
Frowin

Hi
Suppose you have 3 screen:
- 1 main screen (100)
- 2 subscreen    (101, 102)
In the subscreen 101 you need to design your tabstrip (so you need to move your tabstrip from main screen), the subscreen 102 has to be empty.
In the PBO of screen 100:
PROCESS PBO.
MODULE SET_SUBSCREEN.
CALL SUBSCREEN SUBAREA INCLUDING V_REPID V_SCREEN.
In the module SET_SUBSCREEN, you insert the code you need to choose the right subscreen:
IF _SHOW = 'X'.
  V_SCREEN = '0101'.
ELSE.
  V_SCREEN = '0102'.
ENDIF.
The flag _SHOW is setted in PAI after pressing the button:
MODULE USER_COMMAND.
    CASE OK_CODE.
       WHEN 'SHOW'. _SHOW = 'X'.
Max
Edited by: max bianchi on Jan 9, 2008 5:03 PM

Similar Messages

  • How to make an effect stop and start again?

    How do I make an effect start stop and than start again?
    I'm trying to blur faces (I finally figured out how to do that---copy the video to a 2nd layer and use the mosiac and crop effects) but how do I make the effect only appear when the face is in the screen as multiple times throughout the video clip the subjects face goes off camera.  In the effect controls window it doesn't give me an option to add a blank keyframe.
    Any advice on how to have this effect start/stop multiple times in one clip??
    Thanks

    If the effect isn't keyable, try keyframing the transparency of the copy with the effects on it.

  • How to make Visible and Invisible using a Button?

    hi!... I've a Text3D using Oriented3D object and I would like to know how to make it visible and invisible by clicking a button.
    I know there is a function, setVisible() in RenderingAttributes, which can be set by the object's Appearance.
    Since I want to use a button to change the object's appearance, I need to change it in the button's actionPerformed function, but it has thrown an exception:
    "Shape3D: no capability to set appearance".
    I'd tried using those setCapability flags... but still nothing...
    Could someone help me please?...
    Thanks

    When you create Shape3D, setAppearance to it and
    setCapability(ALLOW_APPEARANCE_READ).
    For the Appearance, you should setCapability(
    ALLOW_RENDERING_ATTRIBUTES_READ).
    For the RenderingAttributes, you should setCapability(
    ALLOW_VISIBLE_WRITE).
    So in the button event handler,
    shape.getAppearance().getRenderingAttributes().setVisible(true/false).
    Now you can control the visiblity of Text3D

  • How to set scrollbar to visible or invisible?

    Dear all,
    How to set scrollbar to visible or invisible?
    Thanks

    Duncan's answer will solve your problem
    but how will you display scrollbar thru stacked canvas if your block is already in one stacked or tab page canvas
    so better to create an item set its background color exactly same as your canvas and make bevel property to null and keep that item where you are displaying scrollbar
    and set its visible property to true or false based on your requirement

  • How to make the library visible IN AN EXTERNAL disk?

    Hello.
    Searched this forum (found about 25 identical questions and answers "how to make the library visible").
    I turned mine and it is constantly visible now.
    Before installing Lion made a bootable image.
    When I connect the external HD, I see it in the Finder side bar, click on users>myname and the library folder doesn't show up.
    Tried the 3 ways to make it visible but they all bring back and show the Lion's library on my MBP, not the one in the external HD.
    Any ideas?
    (BTW, I am just an "amateur user", not too heavy, so just, please take in consideration that if you explain to me slowly I will understand quicly)...
    Thanks in advance.
    Saul

    Thank you Baltwo.
    Don't I know you from CCC? (If judging from your answer I do, always hit the nail in the head)...
    Yes, I guess I used the wrong terminology. Anyway, I did a bootable disk/image/clone, however it's called, with CCC (Carbon Copy Cloner), which BTW I am using for at least 3 years and saved several times my behind.
    So, if I understood you right, you mean booting from my external HD and make the library visible (I don't remember if the clone was made after installing Lion or still while in Snow L, but will check).
    I'll try and update here if it worked.
    Thanks again and have a good evening.
    Saul

  • Can you explain me clearly how to make company code visible in cost center

    can you explain me clearly how to make company code visible in cost center master data using tcode kmlv

    Hi,
    There is no way to activate the company code field. If your Controlling Area and Company Code have one to one Assignment, then Company code is defaulted from the Controlling Area. However, if multiple Company Codes are assigned to one Controlling Area, then Company Code becomes a mandatory field in the Cost Center master data
    Also, in case you have multiple company codes assigned to one controlling area, please check the setting of the Controlling Area in Configuration and see if have selected "Cross Company Code Cost Accounting" . Also, check if you have assigned all the company codes to the controlling area
    Regards
    Mahendra

  • How to do Single Column Visble and Invisible

    Hi All,
    I tried following code for doing Column visible and invisible. But in this when i click single columne all values invisible. I want when i again click on that Column i want to bind previuse value.
    Means i have taken one Matrix and in that Matrix of first column i taken ChooseFromList and on this i fill second column also. When i click on second column it invisible. I want when i click again i want bind that value which i got on ChooseFromList.
    I tried hardcode value "X". That line commented in code.
    Can anybody suggest me how to do it ? How to get again that value ?
    Code is,
    If pVal.ColUID = "V_0" Then
                    For i = 0 To matrix.RowCount - 2
                        If matrix.Columns.Item("V_0").Cells.Item(i + 1).Specific.Value = "" Then
                            '   matrix.Columns.Item("V_0").Cells.Item(i + 1).Specific.Value = "X"
                        Else
                            matrix.Columns.Item("V_0").Cells.Item(i + 1).Specific.Value = ""
                        End If
                    Next
                End If

    Hi,
    I guess i understood now.. Plz bind all ur cols in the matrix u can take a look at the following code snippent to bind the cols
    oForm.DataSources.UserDataSources.Add("Usr1", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 50)
    objMatrix = oForm.Items.Item("matIndent").Specific
    oCol = objMatrix.Columns.Item("V_20")
    oCol.DataBind.SetBound(True, "", "Usr1")
    oForm.DataSources.UserDataSources.Add("Usr2", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 50)
    objMatrix = oForm.Items.Item("matIndent").Specific
    oCol = objMatrix.Columns.Item("V_21")
    oCol.DataBind.SetBound(True, "", "Usr2")
    Execute this code after the form is loaded. (U can use the load Event or if the form is loaded with the Menu u can also use the menu event.)
    Hope it helps,
    Vasu Natari.

  • I want make my button visible or invisible on click of button

    Hi All
    I want make my button visible or invisible on click of button.
    Regards
    Kirankumar M

    HI Kiran,
    Your Question:
    onclick button should be visible and on second click it should become invisible.
    Answer:
    In your View
    1.Add Two button using Apply Template--actionButton
      So two buttons will get added to the view
    2.Create an attribute in View Context say buttonset of type com.sap.ide.webdynpro.uielementdefinitions.Visibility
    Bind the visible property of second button to buttonset attribute
    This attribute is  to set visibility
    Also create a booloean attribute bool in the View context
    3.In DoInit method
    wdContext.currentContextElement().setBool(true);
    So that both buttons are visible in View initially
    4.In First button event handler onActionButton()
    call second button eventhandler onActionButton_0()
    public void onActionButton(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionButton(ServerEvent)
           onActionButton_0(wdEvent);
        //@@end
    Here onActionButton_0() is like one method which is actually making second button visible or invisible based on boolean value bool=true /bool=false
    5. Write the following code in onActionButton_0() to perform the actual action
        if(wdContext.currentContextElement().getBool()==true){
                wdContext.currentContextElement().setButtonset(WDVisibility.NONE);
                wdContext.currentContextElement().setBool(false);
    else{
           wdContext.currentContextElement().setButtonset(WDVisibility.VISIBLE);
                      wdContext.currentContextElement().setBool(true);
    6.Now build and deploy ans run your application.
    It works..
    Nice Question..
    I was excited trying this...
    Hope it helps You
    Regards,
    Archana
    Edited by: Archana CTS on Mar 19, 2009 2:08 PM

  • How to make Transperant container visible , invisble by code

    Dear experts ,
    I want make transaperant container visible or invisible based some boolean value .
    I have gone thr' class    CL_WD_UIELEMENT and CL_WD_TRANSPARENT_CONTAINER. I have found method SET_VISIBLE .
    Let suppose name of my transperant container TC_COSTCENTER .Please let me know what code I have to write . Where should I write ?
    I am writing it code in WD_INIT as this process is based on value that I get on boolean value which tell decide visibility of Transperant container.
    Waiting for reply . Urgetly .
    Points will be given surely .
    Cheers
    Parry

    Hi Parry,
    The dynamic programming way is follows:
    you need to first get a reference to the root element 'ROOTUIELEMENTCONTAINER' from the view reference available within the wddomodifyview method. the variable returned is of type cl_w_uielement_container. you can use the method get_root_element( ) of the interface if_wd_view for this purpose.
    next get a reference to the transparent container by using the method get_child of the class cl_wd_uielement_container( using the variable returned from the prevoius call) and cast it to a variable of the class cl_wd_transparent_container. to this method you need to pass the id of your transparent container.
    Once you have the reference you can use the method set_visible( ) to make the container visible or invisible at runtime.
    However you need to be careful about the placement of this code within the wddomodifyview method because it would get executed every time. Thus the best way is to store the reference to view in a component controller the first time and later on use this attribute anywhere within your component.
    Regards,
    Shweta

  • How to make an checkbox editable and uneditable within a single alv output.

    Hi,
    How to make an checkbox editable and uneditable within a single alv output depending on condition.
    I have used Reuse_alv_grid_display.
    In my output every checkbox is editable. i have used edit = 'X'.
    I want editable checkbox for correct value and uneditable checkbox for incorrect value in a single alv

    >
    Mukilansap wrote:
    > I want editable checkbox for correct value and uneditable checkbox for incorrect value in a single alv
    Use alv styles to achieve this, set the style for each record before displaying the ALV. Structure LVC_S_STYL.
    Take a look at the example BCALV_EDIT_02, it is OOPS based, but check how the style table is filled.
    regards,
    Advait

  • How to make google come up and not yahoo when i click anew tab

    how to make google come up and not yahoo when i click a new tab
    == This happened ==
    Every time Firefox opened
    == today

    You can use 1 of these add-ons
    [https://addons.mozilla.org/en-us/firefox/addon/newtaburl/?src=search
    NewTabURL ]
    [https://addons.mozilla.org/en-us/firefox/addon/new-tab-homepage/?src=search New Tab Homepage]
    with NewTabUrl you have more options
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Adobe Captivate 7 Project How to make Rollover cations, audio, and video work in HTML format?

    Adobe Captivate 7 Project How to make Rollover cations, audio, and video work in HTML format?

    Honestly, I don't even know why this is an option. The conversion to Flash is completely unusable.
    I have exported some things to Flash, and since I program in Flash all the time I was able to manipulate to work to some degree. Most text captions are built with multiple elements and completely fall apart.
    Sorry, I can't be of more help.

  • How to make images fade in and out

    how to make images fade in and out continuously

    HI,
    The Ken Burns effects can do this nicely. Available in the iLife suite of software.
    iLife 06 minimum requirements:
    http://support.apple.com/kb/HT2675
    iLife 06 - Amazon
    Carolyn

  • When you change PC how to make connection with iphone and new PC

    when you change PC how to make connection with iphone and new PC

    Yes, you can do it the same as any other database. The code would be similar.
    I'd also suggest you not to use the JDBC ODBC bridge for connection. There are other drivers available for that.
    Regards
    xH4x0r

  • How to make custom binary module and add to powershell?

    How to make custom binary module and add to powershell?
    I wish to add 'Microsoft.SharePoint.Client.dll' in powershell as binary module so I can use its intellisense.

    Hi Biraj,
    I replied to this in other thread
    https://social.technet.microsoft.com/Forums/en-US/a13c9cc8-7d53-46b5-b5bb-65404db2d347/how-to-make-intellisense-enable-in-powershell-in-csom-for-sharepoint-online?forum=sharepointdevelopment
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

Maybe you are looking for