How to not display certain items based upon certain criteria (Edit Form)

I have a Edit form which was created from an interactive report I generated.
There are 10 item fields which are listed which can be changed.
Sometimes I want to see just 9 of the fields on the form based on what the value is of another field in the record.
When I display the fields on the Interactive report I can filter this out by using a case statement, but how
do I do this with the edit form as the query is not there.
Thanks for your time in advance,
Anon

Use Conditions to control whether the item appears or not.
In the item definition is a Conditions section where a large number of different types of condition can be used to determine whether the item is rendered. These include comparisons of the value of the item, or another item, items being null, and a lot of other options. Conditions are widely used throughout APEX—sometimes in subtle or noninuitive ways—so it's worthwhile studying how they're used.

Similar Messages

  • IPhone will not display calendar items more than one day in advance.

    iPhone will not display calendar items more than one day in advance. 
    I used to have a droid and loved the calendar on the main screen that used to show me the next few appointments coming up - so far I have only figured out how to put in to show for next day or 2 days or etc....
    is there any way to show tomorrow and next few days in notification, or is there a good app out there that will greet me. dont have 4s to ask just a 4
    i used google calendar and they all show up in calendar but REALLY need the functionality to see what is coming up, kind of like what you see in outlook or any other email program.
    please help out this noob.

    Is this what you're doing:
    OS X Yosemite: Recover your entire system

  • How to not display nodes in a tree if Oracle roles are NOT used?

    How to not display nodes in a tree if Oracle roles are NOT used?
    We don't use Oracle DB roles to grant users access to Forms from the menu. We use a template and role system of our own. Basically a few tables with templates and roles.
    We want to convert our normal Forms menu to a tree menu and one of our key requirements is that when the tree is populated ONLY nodes with programs (i.e. forms) he has been granted to execute is shown.
    Since we don't use Oracle Roles how to do this in a tree?
    I created a function to show/hide LEAF nodes, BUT problem is that there are sub-menu nodes showing even if the leaf-nodes under it has not being displayed. My function has suppressed it.
    My tree query is like this:
    SELECT
         t.status, LEVEL, t.label, t.icon, t.node VALUE
    FROM
         tma_tree_menu t
    WHERE
    tma_authenticate_sys_chk_role(USER, t.node) = 1
    CONNECT BY
         PRIOR t.node = t.master
    START WITH
         t.MASTER IS NULL
    ORDER SIBLINGS BY
    t.position
    The tma_authenticate_sys_chk_role will return 1 only if the user has access to the form under that node.
    I tried the FTree functions in Forms but even that has nothing.
    Any help would be greatly appreciated.
    Edited by: Channa on Mar 17, 2010 6:49 AM

    Would you share the source code? I guess what I need is how exactly you retreive the user credentials from the DB table and set that boolean variable.
    and then how to condition it in UIX?

  • How to not display the messageField in an IconItemRenderer

    Hello,
    how to not display the messageField in an IconItemRenderer, just display labelField and icon.
    Thanks

    If you're using JavaFX 8 you can use the following in an external style sheet:
    .table-view .column-header-background {
      -fx-pref-height : 0 ;
    If you're using JavaFX 2.2, the -fx-pref-height attribute is not available in css, so I think you have to resort to a lookup:
    final Region tableHeader = (Region)table.lookup(".column-header-background");
        tableHeader.setPrefHeight(0);
    As always, I feel obliged to point out that I don't really like lookups. Sometimes they seem to be the only way, though.

  • USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    Greetings;
    This seems to an ongoing issue (see related discussion link).  We've been experiencing the same update lag since last Friday.  The new additions to the Collection appear and are accessible in both the iPad and iPhone applications, but even though they additions appear in "Quick View", the material doesn't appear in the Collection itself.  Apple is aware of the issue and is investigating.  All the best...
    Syd Rodocker
    Tennessee State Department of Education
    https://discussions.apple.com/message/15461971#15461971

  • Discussion Forum does not display the items in Answered question ,Unanswered question views.

    Hi All,
    Discussion Forum does not display the items in Answered question ,Unanswered question views. Please find the below screen
    what is the difference between Answered and unanswered view?
    I have marked  the discussion as question .
    have replied for the question those discussion are visible in Unanswered view and the answered view is showings as no item to show.
    Below screenshot is answered questions view.
    Can you please help on this .
    Thanks in advance ,
    Sunitha

    The discussion in which at least one of the replies is marked as "Best Reply" will show in the "Answered Questions" section.
    Blog | SharePoint Learnings CodePlex Tools |
    Export Version History To Excel |
    Autocomplete Lookup Field

  • How do you display an item value based on other items?

    Item C's value depends on item A and B. If both A&B are null then C should display null , if A is null but B is not null then display 'Ok', everthing else display ' problem';
    3 items on page 5
    item A: name p5_A, display as text (saves state). source type is a dabase column
    item B: name P5_B, display as text (saves state). source type is a databbase column
    item C: name P5_C, display as text (based on PLsql doest not save state), source type pl/sql anonymous block ? like the following
    if :P5_A is null and :P5_B is null then :P5_C is null; else if :P5_A is null and :P5_B is not null then :P5_C := 'OK'; else :P5_C := 'Problem'; end if;
    Can someone tell me what did I do wrong on these stements unde apex? Thanks a bunch.
    Tai

    Alternatively, you could do a add a computation for that item - same source as mentioned in the previous reply, but each will work.
    Also, in your anonymous block, you have:
    if :P5_A is null and :P5_B is null then :P5_C is null; else if :P5_A is null and :P5_B is not null then :P5_C := 'OK'; else :P5_C := 'Problem'; end if;should probably be
    if :P5_A is null and :P5_B is null then :P5_C := null; elsif :P5_A is null and :P5_B is not null then :P5_C := 'OK'; else :P5_C := 'Problem'; end if;so instead of :P5_C is null , assign it a null - :P5_C := null. Also, else if in pl/sql is written as: elsif
    Edited by: tr3nton on Jan 19, 2010 3:03 PM

  • How to conditional display Report Region based on number of rows returned

    I have a page with two Report Regions.
    One Region should display if the Query returns 0-1000 rows. The other should display if the same Query returns more than 1000 rows.
    The only way I can figure out how to do this is have ANOTHER query in the conditions field for each Region to Select count(*) from etc.
    I know there is a #TOTAL_ROWS# value but that is only available after the Region is displayed. Is there some other built-in variable that can be used to put in the Conditions field or is doing duplicate SQL queries the only way?
    Any help would be appreciated.

    Rather than running your query 4 times (by embedding it in your condition), you can have a region that is not displayed, with a hidden item, and set the value of the item in a before header computation to the count of your query. Now you can conditionally display based upon the value of that item.
    -- Sharon

  • How to make a value changed based upon values selected in dropdown menu

    Hi,
    I am making my first Dreamweaver website using Dreamweaver CS6 on a windows 8 PC.
    I am trying to make a website where the user selects different criteria; in this example an ipod's model, condition and size from three seperate dropdown selections (similar to www.itrado.co.uk) and then based upon these selections a value for their ipod is shown. However i cannot work out how to display a value which remains on the same page and changes based upon the values which have been selected from the dropdown boxes. I was planning on creating a database and then creating a simple code which retrieves the value from the database which corresponds to the three selected values, however i am not sure how to go about doing this.
    Any help would be greatly appreciated.
    Many Thanks,
    Henry

    You need scripts for this. Try this jQuery tutorial
    http://anthonygthomas.com/2010/03/14/display-form-fields-based-on-selection-using-jquery/
    Nancy O.

  • ICal does not display all items in month view

    Hi,
    in month view, iCal displays ... to show that some items are not displayed. However, this happens many times when there is ample space to display the item, and even happens when there is only one item!
    Does anybody know how to force iCal to show as many as possible items?
    Thanks...

    Hey, thank you.
    But how do I change the font and its size?
    I tried....
    Thanks,
    Janos

  • FS10N - Not displaying line items for Archiving document

    Hi Experts,
    When we are double clicking on the FS10N accont display balance report to get line item reprot, it is not displaying archived document data. We have also deleted secondary indexes for those archived document.
    We are able to get same report while using FBL3N with Archive info structure loaded with data.
    Please suggest how to do FS10N archive enabled?
    Thanks,
    SamirV.

    Hi Samir,
    You should look at the following SAP notes and implement the corrections:
    792515
    776164
    and 831568 (if you use business areas)
    Regards,
    Eli

  • Display an image based upon condition A

    I am displaying layers based upon windows username. If User B, then Layer B. If Username A, then Layer A. etc. Do you see that is compatible with Acrobat Reader 9? It would appear as if the OCG methods will not work as Reader doesn't support the setIntent OCG object Maybe with another function like backgrounds or watermarks?
    The only thing the layer contains is a picture. Can we get the pictures to display using another method other then OCG?
    Please advise.

    You can place a picture as a button icon. You can also show/hide buttons with JavaScript.
    George

  • Display list items based on another list item

    Hi All
                I want to display the list item based on another list item, but its not working.
    This is my code:
    /*WHEN-NEW-FORM-INSTANCE*/---Its working.
    DECLARE
       rg_district   recordgroup;
       rg_name       VARCHAR2 (40) := 'district';
       vtemp         NUMBER;
    BEGIN
       rg_district := FIND_GROUP (rg_name);
       IF ID_NULL (rg_district)
       THEN
          rg_district :=
             CREATE_GROUP_FROM_QUERY (rg_name,
                                      'select dist,dist from district_mas'
          vtemp := POPULATE_GROUP (rg_district);
          POPULATE_LIST ('BLOCK3.DISTRICT', rg_name);
       END IF;
       END;
    */WHEN-LIST-CHANGED*/---Not working. Cannot populate the list based on the List
       DECLARE
       rg_branch   recordgroup;
       rg_name1     VARCHAR2 (1000) := 'branch';
       vtemp       NUMBER;
    BEGIN
       rg_branch := FIND_GROUP (rg_name1);
       IF NOT ID_NULL (rg_branch)
       THEN
          DELETE_GROUP (rg_name1);
          rg_branch :=
             CREATE_GROUP_FROM_QUERY
                ('rg_branch',
                    'SELECT branch FROM dist_branch WHERE district IN (SELECT DIST FROM DISTRICT_MAS WHERE DISTRICT ='
                 || :BLOCK3.DISTRICT
          vtemp := POPULATE_GROUP (rg_branch);
          POPULATE_LIST ('BLOCK3.BRANCH', rg_branch);
       END IF;
       END;
    Table:
    CREATE TABLE DISTRICT_MAS
      DIST  VARCHAR2(100 CHAR)
    CREATE TABLE DIST_BRANCH
      DISTRICT  VARCHAR2(100 CHAR),
      BRANCH    VARCHAR2(100 CHAR)
    Values:
    insert into district_mas values('chennai');
    insert into district_mas values('coimbatore');
    insert into dist_branch values('chennai','chennai_north');
    insert into dist_branch values('coimbatore','Podanur');
    Regards
    Shagar M

    Hmm, not tested.
    try this..
    --*/WHEN-LIST-CHANGED*/
       DECLARE
       rg_branch       recordgroup;
       rg_name1     VARCHAR2 (1000) := 'branch';
       vtemp        NUMBER;
       QT            VARCHAR2(10) :='''';
    BEGIN
       rg_branch := FIND_GROUP (rg_name1);
       IF NOT ID_NULL (rg_branch)
       THEN
          DELETE_GROUP (rg_name1);
          rg_branch :=
             CREATE_GROUP_FROM_QUERY
                ('rg_branch',
                    'SELECT branch FROM dist_branch WHERE district IN (SELECT DIST FROM DISTRICT_MAS WHERE DISTRICT ='
                 || QT||:BLOCK3.DISTRICT||QT||')'
          vtemp := POPULATE_GROUP (rg_branch);
          POPULATE_LIST ('BLOCK3.BRANCH', rg_branch);
       END IF;
    END;
    Hope this works..
    Hamid

  • List not displaying all items

    I have several lists that are dynamically populated with data
    depending on what they selected in the previous list. So the user
    clicks on the first list and the database is queried and the
    results eventually become the dataprovider for the second list and
    so on for the rest of the lists. I have this working, but there are
    some items that are not displayed properly. I have blank spaces in
    my lists. If i debug and select one of the empty spaces and look at
    the selectedItem I can see what is supposed to be in the list, and
    if i restore the size of my window then maximize it all items are
    displayed properly. I am thinking that i need to redraw my list at
    some point, but I am not sure how to do that. Does anyone have any
    ideas? Thank you in advance, Michael

    I'm having very similar problems with List as well. I assign
    an ArrayCollection as the dataprovider and some of the labels show
    up and some don't. As I scroll up and down the list different rows
    will disappear and re-appear. When I debug the data is all there.
    I've run into the same problem using other people's code as
    well.
    Seems like some sort of redraw problem, but this doesn't make
    sense to me and I don't know what to do to fix it.

  • How to not display radio buttons in the select many shuttle component

    Hi all,
    af:selectManyShuttle is a true nice component.
    For business / UI ergo reasons I've decided to not display the radio buttons before each item. There's no option to do that.
    Is it possible ? How ?
    Regards
    Luc-

    Let say there are three ways:
    1. You can use skinning mechanism,
    2. You can include css file in .jspx page and then use it.
    3. You can write css directly in .jspx page.
    For skinning read documentation. For two other ways here is example code that should be inside metaContainer facet of document tag.
    <f:verbatim>
      <!-- CSS directly in jspx page -->
      <style type="text/css">
        .myClass{
          background-color: #8888FF;
      </style>
      <!-- Include css file in jspx page -->
      <link href="css/incStyle.css" rel="stylesheet" type="text/css" />
    </f:verbatim>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Canon EOS Movie Plugin-E1 not recognized in Final Cut Pro 10.0.7

    Canon EOS Movie Plugin-E1 not recognized in Final Cut Pro 10.0.7 I just installed the new version of final cut pro 10 and the canon plugin-E1 version 1.4 for the canon 5D mk III but after starting final cut pro I can not find the Log and transfer but

  • Shure Earphones (SE115m+) Microphone Not Working with OS X 10.6.6

    Since I upgraded my MacBook Pro to OS X 10.6.6 the microphone on my Shure Earphones no longer works, or is even detected in the Sound preferences. (Worked flawlessly with OS X 10.5.x). Kind of surprising since they sell them at the Apple store specif

  • What is the ^FC meaning in script

    Hi gurus, what is the meaning of ^ in change editor so please tell me what is it? Regards Raj

  • JDev ADF Demo Site Not Working

    I am keep trying to access adf demo page http://jdevadf.oracle.com/adffacesdemo/faces/components/index.jspx No Response from Application Web Server There was no response from the application web server for the page you requested. Please notify the si

  • How to schedule imports using MDIS

    Dear MDM experts, Pls let me know if there is a way to schedule MDIS for imports rather than have it do it  24/7,e.g. need MDIS to work only at 6 pm everyday. Pls let me know what parametr influences that. Thanks. Ashish