To hide or display subscreen

HI
I have a requirement like first in main screen three check boxes and a button should be displayed . If i check any of the check box and click on the pushbutton  the related subscreen in the main screen should be displayed.please help.
Edited by: pradeep2008 on May 5, 2010 8:11 AM

Hi Pradeep,
1. Create a Pushbutton or set a PF status.
2. u can create input fields without a subscreen.
3. u can code to hide the input fields by using
     LOOP at Screen.
        case screen-fieldname.
           when <fieldname1> or <fieldname2>..
              Screen-Invisible = 1.
              Screen-active = 0.
         endcase.
     ENDLOOP.
4. when u press the button.
i. Catch the Ok code
ii. Unhide the input fields.
     LOOP at Screen.
        case screen-fieldname.
           when <fieldname1> or <fieldname2>..
              Screen-Invisible = 0.
              Screen-active = 1.
         endcase.
     ENDLOOP.
Regards,
Raj.

Similar Messages

  • Hide or display Implementation Tab in object the PACKAGE

    Hi!
    How I can hide or display a "Implementation Tab" in object the PACKAGE for other users?
    OWB 11.1.0.7.0
    Thanks!
    Edited by: user12277289 on 7/12/2009 6:20

    You can wrap your code if you dont want anyone to see it.

  • Hide and Display submit button on the Simple search page.

    Heading 1: h1 Hide and Display submit button on the Simple search page.
    I'm trying to set the enabled property of the submit button on the simple search page. The business case is to disable the button if the VO has not returned any rows.
    The Submit button is on the page button bar.
    regards
    Abhi

    Hi,
    I have already added this in my ProcessRequest, the issue I am facing is it the submit button is disabled while I load >the page which is fine. but when I do a search and the query returns rows still the submit button is disabled.---Will nt reuired SPEL here..
    ---On go button click setsession value.
    Follow below steps:
    CO PR:*
    OASubmitButtonBean continueBtn=(OASubmitButtonBean)flowLayout.findChildRecursive("continueBtn");
    if(continueBtn != null && "D".equals(oapagecontext.getSessionValue("Flag"))
    continueBtn.setDisabled(false);
    else if(continueBtn != null )
    continueBtn.setDisabled(true);
    CO PFR:_
    if(pageContext.getParameter("Go") != null)
    oapagecontext.putSessionValue("Flag","D");
    Regards
    Meher Irk
    Edited by: Meher Irk on Mar 22, 2011 7:48 PM
    Edited by: Meher Irk on Mar 22, 2011 7:48 PM

  • BI WAD 3.5 - Command to hide oder display a structure member

    hi,
    i'm looking for a dataprovider command to hide oder display a specific data cell of my key figures structure (structure_member). I already check the web api reference 3.5 but i couldn't find any solution.
    thanks for your help
    best regards,
    pascal

    Hi,
    check
    http://help.sap.com/saphelp_nw04/helpdata/en/59/edfe395dd76846e10000000a114084/frameset.htm
    Heike

  • Check boxes to hide or display multiple subforms

    I have been using radio buttons to display subforms individually. Now I need to have multiple subforms displayed based on check boxes, but I have never done this before. Any help would be greatly appreciated. Just FYI, I used the following for the radio buttons:
    if(this.rawValue==1)
    WaterSysImpSF.presence="visible";
    else
    WaterSysImpSF.presence="hidden";
    etc...
    Thanks.

    Hi Pradeep,
    1. Create a Pushbutton or set a PF status.
    2. u can create input fields without a subscreen.
    3. u can code to hide the input fields by using
         LOOP at Screen.
            case screen-fieldname.
               when <fieldname1> or <fieldname2>..
                  Screen-Invisible = 1.
                  Screen-active = 0.
             endcase.
         ENDLOOP.
    4. when u press the button.
    i. Catch the Ok code
    ii. Unhide the input fields.
         LOOP at Screen.
            case screen-fieldname.
               when <fieldname1> or <fieldname2>..
                  Screen-Invisible = 0.
                  Screen-active = 1.
             endcase.
         ENDLOOP.
    Regards,
    Raj.

  • How to hide image displays for lightbox

    Using DW, I have a lightbox display.  Here is the page:
    Example page
    As you'll see, if you click on the photo, it opens up into a lightbox.  My colleague wants to have 10 photos open up in the lightbox but they do not want all of those photos to have thumbnails on the page.  In other words, they want one single photo, you click on it, and then see all 10 photos in the lightbox.
    If I put all of the img code for all 10 images on the page then all 10 images will also show up on the page.  So I have to somehow "hide" the images so that the small version of the photos do not show up on the page but will show up in the lightbox.
    Sorry if this sounds confusing and hope someone can help.  Thanks.

    Deaf Mike wrote:
    I've never seen it either as it already existed on the site and I actually just discovered it.
    Here's another example
    When you arrive at the above, click on the turtle and you'll see how several photos are in the lightbox.  Then close the light box and scroll down and click on those + symbols.  See those other images in the other sections?  Somehow the code is pulling those photos into the lightbox too.
    I want to do the same thing but the key is there will be no + symbols on the page - just one turtle photo and when you click on the turtle, all of the other photos appear in the light box.  Another thing I'm thinking about doing is having one turtle photo and then 10 1 pixel by 1 pixel invisible image down at the bottom of the page then have 10 of them and then the h ref for each are the larger photos - that way when you click on the turtle, the code will pull in the 1X1's large photos into the light box.
    Well that would be pretty easy just do as 'Per' suggested in the previous post and hide the 'thumbnails' you don't want on the page:
    Create a rule in your css - something like:
    .hide_thumbs {display:none;}
    So typically a set of light box images might look like the code below. (when clicked they open in a lightbox and that lightbox usually has an option to display the other images in that particular gallery by clicking through them, rather than clicking on them individually).
    <a href="turtle.jpg"><img src="turtleThumb.jpg" alt="turtle"></a>
    <a href="whale.jpg"><img src="whaleThumb.jpg" alt="whale"></a>
    <a href="dolphin.jpg"><img src="dolphinThumb.jpg" alt="Dolphin"></a>
    <a href="tuna.jpg"><img src="tunnaThumb.jpg" alt="Tunna"></a>
    If you add a class="hide_thumbs" the ones you don't want to show get the display: none; property BUT they should still be available in the lightbox to click through.
    <a href="turtle.jpg"><img src="turtleThumb.jpg" alt="turtle"></a>
    <a href="whale.jpg" class="hide_thumbs"><img src="whaleThumb.jpg" alt="Whale"></a>
    <a href="dolphin.jpg" class="hide_thumbs"><img src="dolphinThumb.jpg" alt="Dolphin"></a>
    <a href="tuna.jpg" class="hide_thumbs"><img src="tunnaThumb.jpg" alt="Tuna"></a>

  • How to hide the display of  my text in oracle forms

    Oracle Forms 6i
    Hai All
    My question is how to disable my Text.
    I have created a forms for weight management here when the user opens the forms I dont want to show my text and textitem before filling some fields.
    I have have set the text item by Set_item_property display False and how can set the text display false
    Thanks & Regards
    srikkanth.M

    You cannot do any operation on forms label
    other way is to use non-database Display items to show you text.... or if you are looking to hide the prompts of text fields then you can set it to null or hide the text item completely

  • The possibility to hide for displaying a user status in work order

    Hello gurus,
    I have following issue:
    It is possible to hide only for displaying a user status in a work order when it's active?
    br,
    Laurentiu

    See my [recent post|https://forums.sdn.sap.com/click.jspa?searchID=25309331&messageID=7376021] which references user-exit STATTEXT.
    PeteA

  • How to hide currency ($) display in Report Designer

    Hi Reporting experts,
    My query has amounts in keyfigure structure. When I use WAD or run directly from the query the display of $ sign is showing only on the top row, but when I use the same query in the report designer the $ is showing on every cell. How to avoid displaying the $ in RD.
    Thanks for your help.

    Ram,
        Create a formula and use the function NODIM(<your KF>) and hide you KF column which shows the $ sign. This would suppress the $ sign.
    Hope this helps...

  • Screen exit to display subscreen

    Hi every body,
    i'm programming a screen exit, to display User subscreen for notification header. (user exit QQMA0001)
    i added my own fields in QMEL table as include structure, i crete the screen 100 as empty screen.
    the problem is that fields dont appear on the screen.
    Please help!
    A+
    Ihsen ABROUG

    already done, i create the screen 100,
    but i see in spro that the screen must be created as an empty subscreen.
    i just create the screen in my cmod project by double clicking on screen 100 as an empty subscreen and i activate.
    although i dont need the 2 function exits, i activated them by creating the two zz includes!
    but still not working.
    do you think i must create on the screen painter the fields!

  • HIde BEX Display Header

    Hi ,
    Appreciate if anyone could help me with this.
    Is there any way we can hide the Query results header (Free characteristic,rows).
    I want to see only the results of query. I tried to refresh it in workbook and right click to delete the header but it doesnt permit. The bex interactive function only allow me to refresh or drill down.
    I want to save this as workbook and whenever refresh the query, it should never display the header values.
    Thank you.

    Thanks a lot. i manage to have a reference excel sheet in workbook and populated the data.
    appreciate all your help

  • How do I hide the display of empty dynamic fields in a PHP query

    I need help, I've spent the whole day on this, and I'm not getting any further.
    I am creating a simple blog, where articles can be added via a form in dreamweaver that uploads data to a mysql database.
    I have the following fields in the database:
    "title", "text", "image" "link" (and datestamp)
    The text, image and link fields can be left blank, so I have set their attribute to NULL, i.e. can be NULL
    to display this data, I have created a page and added a recordset that reads as follows:
    SELECT niklas.`date`, niklas.title, niklas.text, niklas.image, niklas.link
    FROM niklas
    the problem is some of the articles will only have text, some will have text and image, some only image.
    When I view the page, it shows me the images that are there, but when there is no image in that particular record, the page shows a blue question mark instead.
    What i want to do, is show only what is not null
    I cannot use the WHERE command, as this completley omits an entire record, if the one field is empty.
    Another problem I have is the link, as these are added through the form, and then stored in the mysql database, how do I display them dynamically so that they are active links to external web pages?
    I'm very new to this, and rather a slow learner, so simple help is really needed!
    please please help!! I'm really struggling and have deadlines fast approaching!
    Thank you in advance!
    xxx

    Determine the condition of the data where it's displayed on the page using if/else. Here's an example for the thumbnail:
    <?php
    // Show IF thumbnail is NULL
    if ($row_profile['thumbnail'] == "") {
    ?>
    <img src="image_not_found.gif" alt="No Profile Image Available">
    <?php
    // else show the thumbnail
    } else { ?>
    <img src="<?php echo $row_profile['thumbnail']; ?>" alt="<?php echo $row_profile['thumbnail']; ?>">
    <?php }
    // end if thumbnail is present
    ?>
    Do the same technique for any area that may or may not have data.
    Create a dynamic link like this:
    <a href="<?php echo $row_profile['website']; ?>"><?php echo $row_profile['thumbnail']; ?></a>

  • How can i hide and display columns dynamically

    Hi,
    Is such a thing possible in BeX.?????
    Following is the reqiurement.
    Number of columns with the forecast values are to be from Forecast 1&2 till the month before the chosen selection. In order for us to calculate the variance, you should have 2 forecast values. 
    If March is chosen please show Forecast 1& 11, Forecast 2&10
    If April is chosen please show Forecast 1& 11, Forecast 2&10, Forecast 3&9.
    If November is chosen please show Forecast 1& 11, Forecast 2&10, Forecast 3&9, Forecast 4&8, Forecast 5&7…………..Forecast 10&2.
    Please guide how can this be achieved.
    Regards,
    Rathy

    Hi,
    well at least you can use some vba macros to achieve that. Best would be to have a static query embedded in a workbook and a sheet where the results are displayed as copies from the query via a macro.
    regards
    Siggi

  • Hide Document Display option

    How do I remove the Document Display options from Display Options Editor window?

    You would need to do a view override in the DisplayOpt code to not display that section. com.plumtree.portalpages.browsing.portalsettings.displayoptions.DisplayOptView. There is sample code and documentation on the DevCenter describing how to do a View Override.
    -- Don

  • Object Model - cl_salv_hierseq_table Check box hide and Display

    I am making use of Object model for creating the hierseq ALV.
    I have added a checkbox to my ALV by making use of
    gr_selections = gr_table->get_selections( level = 1 ).
    gr_selections->set_selection_mode(cl_salv_selections=>if_salv_c_selection_mode~multiple ).
    As u can make out by the Value Level = 1 the checkbox is at the header level.
    1.) My query is that i want to Enable the checkbox for some header level records and and Disable some header level records based on a condition.
    2.) Second query is that I want to read records from the alv in which the checkbox is checked..
    Kindly answer.
    Thanks,
    Nikhil Juneja

    Hi aRs.  You need to use the class CL_SALV_SELECTIONS for this.  See here,  
    DATA: gt_parent TYPE TABLE OF scarr.
    DATA: gt_child TYPE TABLE OF sflight.
    DATA: gr_table  TYPE REF TO cl_salv_hierseq_table.
    DATA: gr_selections TYPE REF TO cl_salv_selections.
    DATA: lt_binding TYPE salv_t_hierseq_binding.
    DATA: ls_binding TYPE salv_s_hierseq_binding.
    SELECT * FROM scarr INTO CORRESPONDING FIELDS OF TABLE gt_parent.
    SELECT * FROM sflight INTO CORRESPONDING FIELDS OF TABLE gt_child.
    ls_binding-master = 'CARRID'.
    ls_binding-slave  = 'CARRID'.
    APPEND ls_binding TO lt_binding.
    CALL METHOD cl_salv_hierseq_table=>factory
      EXPORTING
        t_binding_level1_level2 = lt_binding
      IMPORTING
        r_hierseq               = gr_table
      CHANGING
        t_table_level1          = gt_parent
        t_table_level2          = gt_child.
    gr_selections = gr_table->get_selections( level = 1 ).
    gr_selections->set_selection_mode( cl_salv_selections=>if_salv_c_selection_mode~multiple ).
    gr_table->display( ).
    This will give you the checkboxes in the parent level, you still need to write the code to get the selected rows.
    Regards.
    Rich Heilman

Maybe you are looking for

  • Can't Create OC4J Instance

    Hi, Oracle Application Server 10.1.3.3.0 While creating new OC4J instance we got the following error: "Creation of OC4J instance "App" failed due to the error: Caught exception calling invoke on oc4j:name=Singleton,type=OpmnConfig" Any ideas ? Thanks

  • Help menu disconnects Elements 8

    Hi, rather than suffer with the problem I decided to find out what I can do about it, and hope you can help me. I have Elements 8 on mac. When I click on HELP and the drop down menu shows up, I click on one of the subjects and the program disconnects

  • Dashboard Prompt clears box

    Hi all. I have an issue using the Multiselect prompt in a dashboard, imagine that you create a prompt over a column with more than 500 distincts values, then in a dashboard you want to select all the values except one. So in the dashboard you open th

  • How many days did it take to get MB from Apple Online

    so im planning to buy a white mb from apple online store, it says 5-7 days to deliver, but i have read some users to wait up to 14 days to get a MB delivered. How many days did it take since you placed the order, and got your MB delivered? thanks!

  • Image Capture over a network

    Hi All Seeing there's no discussion page for Image Capture I thought this would be the next best place to ask. I can't seem to save directly to my NSA drive using Image Capture. Am I missing something or is this correct. Thanks In Advance Tim