How to hide /show any attribute based on LOV ?

i have a pages which have three attribute .which are following -
1-one is LOV
2-input text
3-also input text
if i select some value from LOV i want to hide one input text .how does i achieve this
thanks
Edited by: ADFORCLE on Jul 12, 2011 9:09 AM

if your Jdeveloper version is not 11.1.2, check this
http://www.oracle.com/technetwork/developer-tools/jdev/listbindingvalue-088449.html
>
In JDeveloper 11.1.1.x, an expression like #{bindings.JobId.inputValue} would return the internal list index number when JobId was a list binding. To get the actual JobId attribute value, you needed to use #{bindings.JobId.attributeValue}. In JDeveloper 11.1.2 this is no longer needed, the #{bindings.JobId.inputValue} expression will return the attribute value corresponding with the selected index in the choice list.
>
Edited by: M.Jabr on Jul 11, 2011 9:05 AM

Similar Messages

  • How to hide/show dashboards for user/groups

    Hi,
    Please help on how to hide/show dashboard menu/sub menu to users/groups based on their profile settings.
    thanks in advance.
    regards,
    kumar.

    Hi Jinu,
    1) Do some or all of those subreports span multiple pages?
    2) Do each of the Subreports start on a new page?
    If yes, for both, then here's what you need to do:
    1) Create a formula (@True) with this code:
    shared booleanvar SetStatus:= True
    2) Create another formula (@False) with this code:
    shared booleanvar SetStatus:= False
    Drag and drop the @True formula on the details sections for which you want the Page Footer to be suppressed.
    Similarly, drop the @False formula on the details sections for which you want the Page Footer to show up.
    Then, go to the Section Expert > Select Page Footer c > Click the formula button beside Suppress and use this code:
    shared booleanvar SetStatus;
    -Abhilash

  • How to hide/show chart at runtime

    Hi All,
    Can anyone help me in how to Hide/Show a chart at runtime.
    Thanks & Regards
    K.Srinivas

    Hi
    THere is simple way of doing it. Follow the steps below -
    1. Create 'Radio Button' in another form.
    2. Create 2 buttons in it e.g - 1=Show & 2=Hide.
    3. THen there is option as 'Visibility Condition' on Chart 'Properties'.
    4. Write condition as - IF('Form Tech name'@ST1=="1",true,false)
    here ST1 is tech name of the radio button you can select it in formula option.
    5. Then make 1 or 2 as default value.
    You can change radio button at run time & you can show or hide the chart.
    Let me know if you have any issue.
    Regards
    Sandeep

  • How to Hide/show the columns data while doing Drill down or drill up

    Hi ,
    How to Hide/show the columns data while doing Drill down or drill up in webi report .
    Does it possible BO 3.1 version ?
    Please suggest me on this.
    Thanks & Regards
    Venkat

    While that is not there yet, you can make use of the show when empty yes/no in combination with alerters.
    So I have an alerter applied to every cell of the table.
    When a condition is true (say I drilled down) I just put = "" in every cell, emptying the table,
    because its now empty and doesn't need to show, it wont.
    For the detail table I use the opposite, so when you drilled down it becomes visible...
    Hope this helps all that do not have 40 yet
    Good luck,
    Marianne

  • OS 10.10 how to hide/show a folder with a password using terminal

    In Yosemite 10.10.2 Terminal Can you please tell me how to hide/show with a password then show again on already existing folder created on a system drive and also an external drive. Please provide the path text to folder name "wbfiles". Thank you Winwoodb

    You can drag it from one place on a drive to another.  If you are moving it from one drive to another then it copies it.  If you are moving it on the same drive and are getting that message then not being able to move the folder is the least of your problems.  Free up space immediately because your computer is about to crash and probably lose files.  Then you'll have lots of space.

  • How to hide/show and move screenelements at runtime

    Hi Guys
        Currently, i have a requirment that, in the same screen, when user choose different different option in the dropdown list, there should be different screenelements and table control with different columns showing below it.
    Now, i have two plans below:
    1), hide/show and move position of screen elements and table control at runtime
    2), call different subscreen
    I hope i can take the first way since the second way will modify structure of program ( As it is infotype screen ), any one knows how to implement the first solution?

    Hi,
    I would suggest you to call different subscreens and load them dynamically based on your parameters.Since different subscreen are called your coding and functionality could also be seperated by writing in the PAI and PBO of the correspondiong Screens.
    if you have decided to go by your first method then try the below code.
    a) if it is normal UI elements like text box etc
    LOOP AT SCREEN.
        IF <var> = ' value '.
            screen-invisible = '0'.
            MODIFY SCREEN.
      endif
    ENDLOOP.
    Here <var> refers to the screen field name and value refers to its value.
    b) To hide columns in a Table control.
    DATA cols LIKE LINE OF tc-cols.
      LOOP AT tc-cols INTO cols.
        IF cols-screen-group1 = 'G1'.
          cols-invisible = 'X'. "HIDE THIS COLUMN
          MODIFY tc-cols
          FROM cols
          TRANSPORTING invisible.
        ENDIF.
        CLEAR cols.
      ENDLOOP.
    PS: here TC refers to the name of the table control.
    Lemme know if you face any problems.
    Cheers,
    RK

  • Hide/Show a graph based on button click .

    I have to show a graph based on the values selected in the shuttle . The graph should be drawn only when a button( "Show graph") is clicked . My question is
    1) If the set the button's action to submit, it resets and empties the selected values in the shuttle . How do I prevent that ?
    2) How do I make the graph appear and disappear based on the button click ( Like a toggle button ) ?
    3) As I can draw the graph only from the values selected in the shuttle , the query parsing fails . However , the graph displays when the shuttle get populated with selected values . Is there a way to get around that .
    Thanks for your help .

    There is nothing wrong with your code, so I'd look elsewhere for the problem. Is this a direct copy of what you have on your page?
    :P1_COMBO1 in ('Option 1', 'Option 2')
    And
    :P1_COMBO2 = 'Option Combo 2'And the page item values are exactly as you have in the quoted strings? You might run the page in debug and confirm the page item values are exact.
    Edited by: Bob37 on Dec 6, 2011 2:18 PM

  • How to hide/show main report footer for a sub report ?

    Need to hide main report footer for a sub report(having more than one page and need to hide footer for all those pages).And again make it visible for another sub report which also have more than one page (and do the same to all of its pages)
    I have tried with formula
    WhilePrintingRecords;
    Shared BooleanVar SuppressFooter := True;
    WhilePrintingRecords;
    Shared BooleanVar SuppressFooter := False;
    with this formula main report footer is shown only on last page of sub report where i need it in all pages.
    Any solution??

    Hi Jinu,
    1) Do some or all of those subreports span multiple pages?
    2) Do each of the Subreports start on a new page?
    If yes, for both, then here's what you need to do:
    1) Create a formula (@True) with this code:
    shared booleanvar SetStatus:= True
    2) Create another formula (@False) with this code:
    shared booleanvar SetStatus:= False
    Drag and drop the @True formula on the details sections for which you want the Page Footer to be suppressed.
    Similarly, drop the @False formula on the details sections for which you want the Page Footer to show up.
    Then, go to the Section Expert > Select Page Footer c > Click the formula button beside Suppress and use this code:
    shared booleanvar SetStatus;
    -Abhilash

  • How to hide screen group tab based on account group in XD01/02

    Hi Folks,
    I have added two screen group( custom tabs like 'general data' ) in XD01 screen. Based on the input parameter 'account group' I want to hide(supress) one of the tab. How can I read the account group no?
    Thanks and Regards,
    Kawish.

    Hi,
    Can you try to access the field like below. Just try to access the account group from main program in the method.
    field-symbols: <lf_KTOKD>  type KTOKD,
       data:               L_KTOKD type KTOKD.
    assign ('(SAPFM02D)KNA1-KTOKD') to <LF_KTOKD>.
    if sy-subrc = 0.
         l_ktokd = <LF_KTOKD>.
    endif.

  • How to hide/show a menu item?

    Hi,
    Pls suggest how to do this:
    There is one book( say "one") and one page (say "two") on the portal, which are displayed to user as menu items.
    The book has two pages ( say 'a' and 'b'), which are shown in the menu dropdown of "one". I want to show the menu item "two" only if the user selects 'a' and hide it when select 'b'.
    meny item 'b' is a page with one portlet.
    Pls suggest.
    thanks

    You can implement this with backing files.
    See http://e-docs.bea.com/wlp/docs81/ipcguide/backing.html for further details.
    --Stefan                                                                                                                                                                                                                                                                           

  • How to hide/show a component of the JTabbedpane?

    Hi,
    I am working on a JTabbedPane, which hosts many jtables' panes. At some condition, some of panes should be hidden/shown under the user's action. How can I implement this? There is no such mothed to hide a pane instead of remove it.
    Thanks.

    add the panel to a holding panel set as a cardlayout
    (one side is the panel you 'may' want hidden, the other side a blank panel)
    add the holding panel to the tabbedPane
    if the panel is to be hidden (user action), show the blank panel

  • How to hide/show reports region with radio group selections

    Hi, I have an HTML region with a radio group of two choices (Rpt1 and Rpt2). Also got two other report regions which depend on the radio group selections and by pressing a button it will display records.
    Everything does work perfect BUT say I select Rpt1 and press the report button it will show the records and after that if I select the Rpt2 radio button I still see the result of Rpt1 records. How can I clear or hide the reports regions when I change my radio button selection?
    Thank you
    -iahmadi

    Hi,
    You can create HTML regions that do not need to contain anything at all (use the "No Template" region template to ensure that you don't see a region Title on the page).
    However, in order to get this region to be displayed until the Report button is clicked, you would need to have a hidden page item (called, say, P1_SHOW_REPORT) that has, as a default, 0 as a value. The branch that is triggered by the Report button would then set this item to 1 - so, 0 = hide and 1 = show
    On your page you should have a branch that is conditional on the Report button being clicked. On this branch, set the first "Set these items" to P1_SHOW_REPORT and "With these values" to *1*. You should also have a branch on the page that is unconditional - meaning that it can be triggered by anything that submits the page. Firstly, this branch should have a high Sequence Number (say, 99) and secondly, should should set the value of P1_SHOW_REPORT to *0*. So the Report button sets it to 1 and anything else (which will include the radio button selections) will reset it to 0.
    Now, on your regions you have to change the conditions slightly as we now have two conditions to check - which report has been selected and whether or not the Report button has been clicked.
    This can be done by using a SQL Exists condition of something like:
    SELECT 1 FROM DUAL WHERE :P1_SHOW_REPORT = 1 AND :P1_RADIO = 'ABC'(where ABC is the value for the radio button for the report
    The "blank" region would also have a condition - that would be a simple Item = Expression 1 condition of P1_SHOW_REPORT = 0
    Andy

  • How to hide a section/link based on condition

    Hi All,
    I have three sections in my dashboard page; two of the section contains prompt that the user needs to run before. The Third section contains a link to Run the report. I need to hid the link, Run Report until the users fill the prompt and hit the Go button. How can I achieve this?

    Okay here are some tips for navigating this forum...
    1) If someone offers a suggestion, respond like "yes, it worked" or "no, it didn't work," then explain how it didn't work if possible (Did you get an error message?, unexpected results, etc.)
    2) Even if a solution may not have been exact, if it helped you give you new insight or if someone took the time to develop an answer that helps you understand your problem beter, you can and should award "helpful" points.
    3) If the answer either solves your problem or validates what you thought, mark it as "correct" and acknowledge the providers of hints and solutions. ("Thanks guys for your help," etc.)
    4) Finally close the thread itself.
    Doing this would motivate others to help you in the future when you ask your next question. (It is possible to "watch" a user and never answer their question again, if the poster is rude or ungrateful.)
    My final advice, is Kishore is one of the biggest helpers in this forum, so my recommendation would be not to flame his comments (even mildly) because he is the one who will decide if he will help you again or not. Oh, and Kishore doesn't host this forum. Along with many others in this forum, he just provides solutions and hints, dedicating his time and resources when he can. :)
    Hope this helps.

  • How do i show a button based on the value of another button (value is greater then 0)

    I'm am building a form in indesign, and just want to add a visual icon next to buttons when they are filled out... check mark next to a drop down list... so the list have values and i want the check mark (button) to show only when the value of the drop list is greater then 0... can this be done?... easily?....
    thank you!

    Hey Gilad D,
    its been a while since i have been back to this project…..
    now i have time to dedicate to this to get it done….
    if you don't mind i really could use a little help..
    i want to start again and give you the full scope of what i am trying to do, i don't have any real hard files yet...
    its pretty simple (in theory)..
    So i don't know what you do for work, but i work in an environment that has some pretty lazy sales people,
    so i want to create a pdf that steps them through a bunch of questions that they have to answer...
    my thought was, lets break this out into sections…
    so section one has three questions, if they answer all three, then they get a checkmark and section 2 appears
    which would have a few questions in it… etc….
    there would be some easy cross referencing and excel type calculations,… and a few, if you answer yes then another field gets auto filled..etc….
    can acrobat handle this?… or am i wasting time thinking it can?...
    i primarily work on mac's but we do have a PC with live cycle...
    thoughts?….
    thank you,
    ely

  • How to hide/show a column in reports 10g according to the parameter value

    Hi,
    I want to hide a column in the report according to the parameter value, is it possible?
    For example, there is a parameter called P_TYPE. I want to hide a column called 'BALANCE' if the P_TYPE=0.
    This column is not the last one in the table, so if it is hide then that empty space should be occupied by next column.
    Is it possible means please explain me how to do it?
    Thanks in advance,
    SAN

    Create a format trigger (for both the header and the column item) that returns False on you condition.
    Set the horizontal elasticity to Contract (for both the header and the column item).
    Sometimes Contract doesn't work. Try Variable in that case. This has the disadvantage that the field can also expand.

Maybe you are looking for

  • Tables stored in memory but may be accessed from other sessions

    Dear Oracle experts, it may be a stupid question but I'm searching for the best possibility to create a kind of temporary table which may be accessed from other sessions. Could you provide some hints/ catchwords to speed up my recherches. Thank you v

  • Why wont my MBP read my external HDD?

    I have an '09 MBP running Lion, and a USB EmBrace Bare Docking Station from ACCStation with a 2.5TB 3.5" MediaMax drive in it, and it doesn't work. On the description of the docking station it said specifically that it worked on both USB 2.0 and 3.0,

  • Java.lang.UnsupportedOperationException when AutoRefresh set to Always

    Hi, I am getting above exception (java.lang.UnsupportedOperationException) when I change the "AutoRefresh" property of view object to "Always". The exception comes at: at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:

  • What happened to itunes report a problem support?

    Can someone tell me why Apple changed the easy report a problem off itunes receipts?  Is this a new change that will last or is there something down?  It took me forever to figure out how to send an email or a message to report a problem - this is to

  • Datagrid and page height

    Hi I have a state in my flex application that contains a datagrid recieving data from a RemoteObject. Can anyone tell me how I can adjust the height of my page containing this datagrid in flex as the number of items in my datagrid grows or diminishes