Hierarchical keyword selection not showing

In LR 2.1 I have some hierarchical keywords. For example:
location
arizona
grand canyon
In Bridge, if I assign "grand canyon" I can set a preference to tell it to automatically select the parents... SO, in my list of keywords for the image I have "grand canyon, arizona, location".
In LR, when I do this it doesn't appear to do the same thing... If I assign "grand canyon", arizona doesn't get a check, it gets a dash, as does location. And in the list of keywords for my image, only "grand canyon" shows up... Is there a preference somewhere (as in Bridge) for me to have the parents selected and show up as selected?
Part 2: SOME hierarchical keywords show up as a hierarchy in the keyword list for the image - something like "grand canyon > arizona, location". Why do SOME entries in the hierarchy show up with the ">" and others in the same hierarchy don't? Shouldn't it be "grand canyon > arizona > location" or at worst "grand canyon > arizona", arizona > location" or some such?

I've tried all three settings for the keywords, and as near as I can tell none of them provide any form of hierarchical display. The "Will Export" just seems to force a straight alphabetical list. Which I think is exactly the opposite of what I'm after.
Is there some way to keep the font from changing when I switch to Will Export? The font gets small, REALLY small.

Similar Messages

  • Why are keywords are not showing ....

    Why are keywords are not showing, all other functions and metadata seem fine

    LarryHN - Thanks for jerking me back to reality. I've been using iPhoto since 2001, I have over 14,000 images in the file, I use facial recognition, Places, folders, keywords and Events (did I leave anything out?).   I installed Lion a couple months ago, I'm running iPhoto '11, version 9.2.1 and I'm not getting any error messages. When I click on View, Keywords I expect to see little boxes under each image with one or more Keywords in it.  If I click on View, Info I can see the keywords in the sidebar but they never appear in the main window.

  • Tool Selection Not Showing Up Properly????

    Hey Guys,
    i really need your advice. For some reason the tools in my photoshop are not showing up correctly on the cursor when they are selected. For example, normally when you click the brush tool, the cursor changes into a circle which shows you the size of your brush, but for some reason, all i am getting is a little " + "
    Have i changed a setting somewhere? Does anybody know how i can get the cursor to go back to the way it should be. I just want it to be a circle when the brush is selected so i can see the size of my brush.
    Your help will be very much appreciated.
    Andy MacDonald

    Thank you Dave, that sorted it.
    Just shows there really are simple explanations for things doesnt it. i cant beleive i didnt notice that. Thanks anyways mate, ive learnt something new today!!!
    Andy

  • Sap m select not showing all values from gateway

    Hello Experts,
    This is the code for my select:
    var SelectCondType = new sap.m.Select("SelectCondType", {
       width : "200px"
       var oItemSelectTemplate1 = new sap.ui.core.Item({ 
                 key : "{ID}", 
                 text : "{Name}" 
      var sServiceUrl = "blablabla.com:8000/sap/opu/odata/sap/YXM_GWS_BART_SRV";
      var oModel = new sap.ui.model.odata.ODataModel(sServiceUrl, false,
      "user", "pass");
      SelectCondType.setModel(oModel);
      SelectCondType.bindAggregation("items","/cond_type",oItemSelectTemplate1);
    The select is showing around 50 (didn't really count em) items while there are like 500 in the gateway...
    Any Ideas ?
    Kind Regards,
    Bart

    Nevermind,
    awiedemann.com • SAPUI5 / oData / JSON model - set size limit
    Kind Regards,
    Bart

  • G/L Account selection not showing in form settings of A/P invoice

    HI Experts,
                       Pl tell me How to select G/L selection in Form settings of A/p Invoice,this feature available in case of Sales.
    Rgds
    Sudhir Pawar

    sir,
         Thanks for reply but if u check in SAP B1 2007B PL_40, G/L selection not given in Form settings of any purchase document.client wants G/L selection for the purpose of locations accounting.so pl tell me how to get G/L selection ,is there other way?
    Rgds,
    Sudhir Pawar

  • Data selection not showing in Planning book

    Hi everybody,
                We were using one info cube on APO side and so from cube the data will be shown in the APO planning book..
    Now we modifed the cube on APO by adding new infosource and new mappings from BW side with data marts.. I can see the data is successful loaded to cube, but the slection it self is not showing.. i dont see anything related to cube and so i couldnt run the planning book.. My point is data is available in cube bu planning book now have no data...it is not showing any data..
    thanks
    arya

    There might be few things you should probably check
    1) In the planning object structure just activate the POB. through the context menu.
    2) I think you might have assigned the Infocube into the Planning areas as Infocube Fed key figures. Make sure that all the characteristics remain the same. There might be inconsistency between the char of the new Cube and the already existing PA.
    3) Create time series to the PA or perform initialization of the PA.
    4) Try creating a CVC manually and see if it allows to create.
    Atleast now you should be able to see the key figures in the Planning Area.
    Let me know if it works.

  • "SUM" keyword does not show results in query manager

    Im using the sql keyword sum in my query which displays sum of doctotal for all sales order created by a particular sales employee.. but it is just showing the doctotal row wise. Is there sum limitations on the sql syntax that can be used?
    Also is it possible to show the sum of doctotals without callin it at row level,as we are printing redundant data. Im not using PLD as the requirement is just to show the result of the query.
    Please help
    Regards
    Aris

    Try the query as
    select sum(t.total) from
    SELECT T0.DocNum, T0.DocTotal,T0.DocTotal - T0.VatSum, T0.DocDate, Sum(T0.DocTotal) as Total,Sum(T0.DocTotal - T0.VatSum) as withoutTax FROM ORDR T0 INNER JOIN OSLP T1 ON T0.SlpCode = T1.SlpCode
    WHERE T1.SlpName ='Rajesh Nair' and T1.SlpCode -1
    GROUP BY T0.DocNum, T0.DocDate, T0.VatSum, T0.DocTotal
    ) t
    or in one query at the end as sum as
    SELECT T0.DocNum, T0.DocTotal,T0.DocTotal - T0.VatSum, T0.DocDate, Sum(T0.DocTotal) as Total,Sum(T0.DocTotal - T0.VatSum) as withoutTax FROM ORDR T0 INNER JOIN OSLP T1 ON T0.SlpCode = T1.SlpCode
    WHERE T1.SlpName ='Rajesh Nair' and T1.SlpCode -1
    GROUP BY T0.DocNum, T0.DocDate, T0.VatSum, T0.DocTotal
    UNION
    select null, null, null, null, sum(t.total), null from
    SELECT T0.DocNum, T0.DocTotal,T0.DocTotal - T0.VatSum, T0.DocDate, Sum(T0.DocTotal) as Total,Sum(T0.DocTotal - T0.VatSum) as withoutTax FROM ORDR T0 INNER JOIN OSLP T1 ON T0.SlpCode = T1.SlpCode
    WHERE T1.SlpName ='Rajesh Nair' and T1.SlpCode -1
    GROUP BY T0.DocNum, T0.DocDate, T0.VatSum, T0.DocTotal
    ) t

  • Navigational Attribute Filter value selection not showing full name

    Hi Experts,
    We are having Navigational Attribute TM Responsible. We have created variable in BEX for it. When we are searching for value selection for this in RSRT, its showing only last name and key part. But If I dont pass any values, and display the result its showing full name. Please find the screen shots.
    Customer needs full name to be available for selection in filter in above picture 1.
    Please suggest what needs to be done.
    Thanks,
    Govind

    Hi All,
    The issue is resolved. Making display as Long text at Infoobject level and at Query display level was not working. Hence I tried to change the display at Multiprovider level as shown below. This fixed the issue.
    Right click Navigational attribute -> Provider specific properties
    Made the display as Long text.
    This setting resolved the problem.
    Thanks for help and replies.
    Thanks,
    Govind

  • Help selection not showing on menubar

    Hello, I have just updated the Firefox browser on my PC and on the menubar at the top the 'Help' selection is missing. All that is showing is 'File - Edit - View - Bookmarks - Tools'.
    Why is 'Help' missing, and how can this be restored?

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • "SAP Systems" selection not showing in SAPinst welcome screen

    I recently purchased a NetWeaver Development subscription and am following the installation guide for SAP NetWeaver 2004s SR3 ABAP+Java on Windows with MS SQL Server. However, in the Welcome menu of SAPinst under the NetWeaver selection, I am not seeing the "SAP Systems" selection  as it is described in section 4.3 "Installing a SAP system using SAPinst". I only see the selections "Standalone Engines", "Optional Standalone Units", and "Software Life-Cycle Options". Could someone please tell me how I can install a "Central System" on a Windows 2003 Server? Thanks.

    Hi and thank you very much for quick reply...
    We have also concluded that the note suddently is "gone"?
    So the deal is to install a SR2 and then upgrade...Lucky i still have SR2 installs...
    I wonder what the solution would be if we didn't still had the install files for SR2. And what is the official
    reaction from SAP when installing SR2 win 32 bit for a customer, since the customer do not currently supports 64bit?
    I have tried to talk the customer intto 64 bit, but no luck so fare  
    On the other hand if they have a large environment running WM ware, then it can be a big job to upgrade!
    Thank you very much...

  • Keywords are not showing up on photos

    After going to great length to assign keywords to my entire photo library, I burned all the photos onto iPhoto DVDs in preparation for my computer getting a new hard drive installed.
    After new hard drive was installed, I reinstalled iPhoto 4.0.3 and uploaded all my photos from the DVDs. I noticed that my keywords pane had reverted to the default keywords (because I hadn't backed up my plist file for this), so I added all my keywords back into the pane (and deleted the defaults I didn't need).
    Now there are only three keywords (out of a possible 12 or so) that are showing up. Favorite, Vacation and 4H.
    Why aren't the others showing up??? Is all my hard work lost?
    Sandy

    Unless you really know what you're doing, the only way to preserve keyword associations is to preserve the entire iPhoto Library folder. Had you burned the entire iPhoto Library folder to disk, your new installation would have only required that you drag the iPhoto Library folder from the disk to the new Pictures folder and launch iPhoto.

  • IPod Nano skips album selection, not showing some songs

    Hello,
    recently I tried to use my ipod with winamp since it offers support for ipod, but since then, when I select any artist with an album and singles it ignores the singles, skipping directly to the songs in the album, and I really can't listen to that singles through the "artist>album>song" selection, but patiently I can find then togheter with all the other songs, by selecting directly "songs>all" in the menu...
    How may I fix this?
    thanks a lot!

    Right after I posted, I found another topic that basically answered my question.

  • Hierarchical tree not showing

    Hi, My hierarchical tree is not showing on the form, I have the following situation;
    I have a table with the parent and child coloumns, I have created a Record_Group using a query that I have tested in PL/SQL it works
    select 1, level, form_name
    from iso_forms
    connect by prior form_name=action
    start with action is null
    The rsult is
    1 LEVEL FORM_NAME
    1 1 Edit
    1 2 Holder
    1 2 Isotopes
    1 2 Laboratories
    1 2 Personal
    1 2 Incident
    1 2 Equipment
    1 2 Over Exposure
    1 2 Archive
    1 1 Print
    1 1 Queries
    11 rows selected.
    I have set in the properties of the tree to use the Record_Group that has this query, but when I run the form I only see a blank square where the tree should be showing.
    Can anyone tell me what I am doing wrong?
    Thank you
    Michael

    a control block is one not based on a table/view/procedure . check the block's query data source name. its must be blank.
    I suggest you create a procedure where you create the record_group using
    CREATE_GROUP_FROM_QUERY,populate_group and ftree.set_tree_property
    Here is my code that I i used to populate my tree .it works:
    PROCEDURE populate_the_tree IS
    grp recordgroup;
    error_number number;
    grpname varchar2(20) :='rg_group';
    tree_id item :=find_item('ctrl.tree');
    grp_qry2 varchar2(500) :='select -1,level,ename,null,empno from emp start with mgr is null connect by prior empno=mgr';
    begin
         grp := find_group(grpname);
         if not id_null(grp)
              then delete_group(grp);
         end if;
    --     grp := create_group_from_query(grpname,grp_qry1||grp_qry2);
         grp := create_group_from_query(grpname,grp_qry2);
         error_number:=populate_group(grpname);
         if error_number <> 0
              then message('Error while populating tree');
              raise form_trigger_failure;
         end if;
         ftree.set_tree_property(tree_id,ftree.record_group,grp);
    END;
    Message was edited by:
    lewismak2000

  • Keywords not showing

    My keywords are not showing in the thumbnail gallery view of iPhoto6. When I check "Keywords" from the View menu a blank space appears below each thumbnail, which is what they should do do accomodate listing the keyword, but there are no keywords there. I thought my font color might be the same as the background but it's not. Anyone know what the fix is?

    Hi Jim,
    i don't know what the problem is either. Try deleting the Preference file and then redo your views and preferences in iPhoto and see if it helps.
    Preference file
    iMac 800 512, iBook 700 640   Mac OS X (10.4.4)   AE, Canon i9900, Canon LIDE30, Canon S2, iPod 3gen, shuffle

  • PDF pictures not showing

    I've exported a keynote to pdf in order to share with people and so far have feedback from one windows user that some photo's are not showing for them whereas all is fine on my imac.
    It turns out that keynote pic's that are masked are selectively not showing for this person- again, the exact same pdf file is fine for me. I went into the adobe reader settings for this person and the settings (default) are just like my adobe settings... no settings need changing that I can see (i.e. pictures turned off or such...
    One other bit of info... the person sees a shadow or outline of where the masked photo would be... but the slide background is showing. And again the pdf looks just fine on my computer???
    Any suggestions other than having to go thru my presentation and redoing photo's so no masking...
    thanks
    actually I'm doing a demo of keynote 09 maybe I'll try pdf for that to see if any different...

    Hi Robert,
    It is true Acrobat Pro can flatten layers. I just exported a Keynote file to PDF containing masked images and there was only one layer generated. Can you confirm you file has more than one layer? You can do this in Adobe reader with the View> Navigation Panels> Layers Menu item. Transparency is a separate issue.
    Flattening layers and flattening transparency are two different things.
    Flattening Layers makes 1 layer. Flattening transparency removes the alpha or transparency value assigned to objects by rendering the overall effect of multiple overlapping objects and blending modes into a single pixel-image like a tiff and replacing the objects (largely – sometimes line-work gets left) in the file. This is used in print world because high-end image image setters have no way to interpret transperency that illustration programs (and Keynote) can generate in there PDF files.
    Which is a long way to saying if you save in a PDF format prior to transparency PDF 1.5 and below I think?? you'll get rid of transperency from your file. Thhere are also newer PDF/X standards used in print industry but I have no experience of them.
    Print from Preview application to a PDF would probably flatten a file. I get options for various PDF formats in my print dialogues but you may not because I have additional software installed that may be generating them. Sounds like the update did the trick anywho.

Maybe you are looking for