Can somebody explain keyword hierarchies?

IN LR, I have keyword hierarchy:
event
holiday
thanksgiving
christmas
hot air balloon
albuquerque 2006
faribault 2004
and I have images assigned..... Looking at an image, the keyword tags pane may look like thanksgiving>holiday. BUT, it DOESN'T have the whole hierarchy thanksgiving>holiday>event. How come? AND, I may also have assigned albuquerque 2006 to the image. But THAT one may look like (in the whole alphabetical list) albuquerque 2006, xxx, yyy, event, eee>fff, hot air balloon, qqq and so on.......
Can SOMEBODY give me the explanation of what its doing, and HOW to get all this stuff to actually show up as hierarchies? I'm looking on line, in the LR manual, AND in a LR book I've got, and I can't find how this works ANYWHERE..... <strangled scream of annoyance>

From my experience, the only time I get a hierarchy (ie, xxx > yyy) showing up in the Keyword Tags pane is if there are more than one "yyy" keywords in my list. For example, I just created this hierarchy:
AAA
BBB
CCC
AAB
CCC
When I assigned
b CCC
to a photo, I got a pop-up showing the options
b CCC > AAA
and
b CCC > AAB
. Instead of choosing, I deleted
b > AAA
and hit enter. The keyword assigned to the photo was
b CCC > AAA
Next I assigned
b BBB
to the photo, and the new keyword list was
b BBB, CCC > AAA
. When I go to the "Keywords and containing keywords" view, I get
b AAA, BBB, CCC > AAA
(because
b CCC
doesn't fully describe the keyword)
To address your initial question directly, I don't think you will ever see your full hierarchy unless your keyword is only one level deep, and it is a duplicate of another keyword. The only reason you see a hierarchy (>) in the Keyword Tags section is to differentiate two identical keywords.
One more thing, it's typically not advised to use locations as keywords. That's what the Location metadata is for. I suppose if you have multiple levels
i below
the "Location" level (your lakes, for instance) you'll need to create keywords. But for most applications, the Metadata takes care of that, which helps to minimize clutter in your keyword list.

Similar Messages

  • Can somebody explain to me how java and xml are related?

    Hi guys
    im new to java and xml.Been reading a lot regarding java and don't seem to have a problem with it...
    the problem is the xml part...im doing a simple GUI project using swing(online store) and i have to convert it to xml
    I have absolutely NO IDEA why i must convert my java to xml and have no idea how to do that.I been reading on the net that xml is a exten~ markup language and it is better and useful.
    Can somebody explain to me in layman terms
    1)how is java and xml related in?
    2)why do ppl want to convert java to xml when they can just stick to java
    3)what is actually xml...
    4)Do i need a program to create xml like i need jcreater to create java application
    5)How do we actually convert?is there any links that you guys could tell me?
    thank you
    tomleo

    im new to java and xml.Been reading a lot regarding
    java and don't seem to have a problem with it...Okay.
    the problem is the xml part...im doing a simple GUI
    project using swing(online store) and i have to
    o convert it to xmlYou have to? So presumably somebody in a position of authority told you that?
    I have absolutely NO IDEA why i must convert my java
    to xml and have no idea how to do that.I been reading
    on the net that xml is a exten~ markup language and
    it is better and useful.I have no idea either (besides which, it doesn't make sense). But why ask us? Somebody told you to do that, ask them why.
    Sure, XML is useful. But it isn't a programming language so it can't be used as a substitute for Java.
    Can somebody explain to me in layman terms
    1)how is java and xml related in?They aren't related, except perhaps in that they are both used in computers.
    2)why do ppl want to convert java to xml when they
    can just stick to javaThey don't.
    3)what is actually xml...Start here for numerous definitions:
    http://www.google.ca/search?hl=en&lr=&oi=defmore&q=define:XML
    4)Do i need a program to create xml like i need
    jcreater to create java applicationNo, XML is just text. But then Java code is just text too.
    5)How do we actually convert?is there any links that
    you guys could tell me?You don't convert Java to XML. My guess is that because you don't know much about Java or XML, you have misinterpreted something that somebody told you.

  • Can somebody explain how dunning & hold are linked toghter

    In the IMG, i can not find out How dunning are linked with academic hold in the student file and can somebody explain how dunning is linked with academic hold.
    I defined hold type in IMG but i can not find out how to link with hold type with dunnng ?.
    regards,
    jin dal

    Dear Song,
    Answers to your queries are given below:
    Sample function module:
    u2022 Is only used as a template for creating the standard function modules to be carried out
    u2022 Defines the interface that is binding for the standard function modules
    u2022 Describes in its documentation what the underlying event can be used for
    Standard function module:
    Name of application-specific standard function module that can be carried out at a given time.
    The standard function module interface corresponds to the sample function module, which it must match exactly.
    Active function module:
    Function module which is to be called for the specified event.
    If you don't want to take printout then use Functional module 340 as Event 0340 is called when all data is read for a dunning notice.
    You can use standard function module FMCA_DUNNING_READ_ITEMS_0340 for this purpose.
    Hope it will solve your query.
    Warm Regards
    Vinod Kumar

  • Can somebody explain how ABC analysis is done ?

    Hi Experts,
                         Can somebody explain how ABC analysis is done . If I use MC40 transaction there I have 4option but I can use either one of those . For second option , Usage value as number we can directly specify cost and accordingly system will classify materials In A, B and C category .
    I have question on 1st 3 rd and 4 th option . How system will classify materials if These option is used .
    Please explain with examples .
    Points will be rewarded .
    Thanks in advance !
    Neal

    Hi Sir ,
                     Thanks again , I would explain what I have understood .
    MC 40 . Option selected is Usage value with value put are 70 , 20 , and 10 .
    Suppose I have 3 mat in plant
                  Stock         Value
    1) X        100 kg      1000   ( for 1 kg from MM)
    2) Y          20 PC      2300 
    3) Z          30  lt      40000
    Now how would system classify these items ? Will it consider price or only consumption /qty ? or both ?
    Please explain with the same figures . Again the 90 days period you said , is it taken automatically ? because on this T code there is no option for entering time period .
    Neal

  • Can somebody explain what the Radix number is in Character

    I am looking for a good way of converting numbers to characters and I was reading up on the Character API, and they are using this term Radix, and I don't understand what that is all about. Can somebody explain what the radix is for?

    Wait a second I tried this code out and this is the output
    System.err.println(Character.digit('a', 10));and i get a -1, which means "not a valid digit in the specified radix.
    Then I tried other combinations like
    System.err.println(Character.digit('a', 11));
    System.err.println(Character.digit('b', 12));
    System.err.println(Character.digit('c', 13));and they all work, and but with only those sequential characters and numbers. So right now I am very confused as to what this radix, or this function serves. Can somebody explain?

  • Can somebody explain to me how I can detect that an internet connection exists (VB)?

    Can somebody explain to me how I can detect that an internet connection exists (VB)?
    Peter Goossens

    There is no reliable way. Better test whether you can go to where you want to go. And be prepared to support proxies, even the complex ones that require authentication. 
    System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable reports your local connectivity regardless of whether one of your connected networks has Internet access.
    Microsoft's Network Awareness API (the one used in control panel\network and sharing center) use a connection test to a web site setup by Microsoft. But your customers could be behind cooperative firewalls that make this test unusable even when Internet
    access is available though other means (e.g. via a local proxy server). If you want to connect to your own web site, then you can skip that and just connect to your web site instead. Even if you were able to connect to Microsoft's web site there is no guarantee
    your web site would be accessible in the same network.
    Visual C++ MVP

  • Can somebody explain this store procedure

    Hi there
    can somebody explain me this Oracle store procedure, I am not able to figure it out anything from this SP :(
    CREATE OR REPLACE PROCEDURE MyDummySchema.MyDummyStoreProcedure
    (a_created_by_proc SomethingDummy.CREATED_BY_PROC%TYPE)
    as
    BEGIN
    /* Set up your global variables */
    XYZ_FORMAT.g_s_created_by_proc := a_created_by_proc;
    XYZ_FORMAT.g_d_current_time := sysdate;
    XYZ_GENERATEEODQUEUE.XYZ_GENERATEQUEUE;
    XYZ_PROCESSQUEUE.XYZ_PROCESSTRADES;
    XYZ_SYNC_SOMETHING(a_created_by_proc);
    END MyDummyStoreProcedure;

    Here
    XYZ_FORMAT, XYZ_GENERATEEODQUEUE, XYZ_PROCESSQUEUE
    are package names;
    XYZ_SYNC_SOMETHING is another PL/SQL procedure name; the procedure takes one parameter;
    XYZ_FORMAT.g_s_created_by_proc, XYZ_FORMAT.g_d_current_time are global variables defined in the package XYZ_FORMAT, in package definition part of it;
    XYZ_GENERATEEODQUEUE.XYZ_GENERATEQUEUE,
    XYZ_PROCESSQUEUE.XYZ_PROCESSTRADES are stored procedures w/o parameters definned in packages XYZ_GENERATEEODQUEUE and XYZ_PROCESSQUEUE respectively.
    But only the author [hopefully] knows what is the point of all this stuff :)

  • ESCAPE Option can somebody explain it ?

    ESCAPE Option can somebody explain it ?
    Thanks in anticipation
    SDG

    In first SELECT the underscore is intrepreted as any one single character. What if we wanted to search for an underscore specifically. The second example allows us to search specifically for underscore character with LIKE.
    SQL> select table_name from dba_tables where table_name like 'DBMS_%' ;
    TABLE_NAME
    DBMS_ALERT_INFO
    DBMS_LOCK_ALLOCATED
    DBMSALERTINFO
    3 rows selected.
    SQL> select table_name from dba_tables where table_name like 'DBMS\_%' ESCAPE '\' ;
    TABLE_NAME
    DBMS_ALERT_INFO
    DBMS_LOCK_ALLOCATED
    2 rows selected.
    SQL>Sorry Nicolas, your post was not visible at that time.
    Message was edited by:
    Kamal Kishore

  • I bought a bluetooth earpiece to be used with my ipad. But my ipad could not detect the earpiece. My friend's other tablet was able to detect my earpiece. Can somebody explain to me why my ipad could not detect my earpiece.

    I bought a bluetooth earpiece for my ipad but my ipad could not detect the earpiece. Can somebody explain why that is so? I used the piece on my friend's tablet and it could detect the earpiece meaning that it is working. Why my ipad could'n? I want to use it to listen to music or video. I could use the normal wire type earpiece but it is very cumbersome.

    I bought a bluetooth earpiece for my ipad but my ipad could not detect the earpiece. Can somebody explain why that is so? I used the piece on my friend's tablet and it could detect the earpiece meaning that it is working. Why my ipad could'n? I want to use it to listen to music or video. I could use the normal wire type earpiece but it is very cumbersome.

  • Can somebody explain what is LUW ?

    Hi Gurus,
    can somebosy explain me what is LUW(Logical unit of work).
    I went through some book, but i am not able to get the concept.
    can somebody help me out inthis
    Thanks & regards
    Rajesh Meda

    hello Rajesh,
    Did you go this through this:
    http://help.sap.com/saphelp_nw04s/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/content.htm
    Check this out.
    Anyways as you know in SAP the user acting a presentation level tries to read/write data from database using SAP application layer. This entire activity consists of several dialog steps (small activities if you may) and is termed as a LUW. So an SAP LUW consists of several dialog steps which are dependent on each other. Only if all are completed is a LUW executed successfully and in case of any failures entire thing is roll backed and terminated.
    Regards.
    Ruchit.

  • Can somebody explain (connection time)

    Because of broadband problems, I've been keeping intermittent track of my connection times and IP profile.
    Best way is to show you...the first set was 2 days ago at lunchtime.
    11/8/11
    @12:00 noon
    Downstream
    1,408 Kbps
    Upstream
    448 Kbps
    Connection time
    0 days, 7:58:42
    Download speed achieved during the test was - 949 Kbps
     For your connection, the acceptable range of speeds is 200-1000 Kbps.
     Additional Information:
     Your DSL Connection Rate :1408 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
     IP Profile for your line is - 1000 Kbps
    Here's tonight's...
    Download speed achieved during the test was - 683 Kbps
     For your connection, the acceptable range of speeds is 200-1000 Kbps.
     Additional Information:
     Your DSL Connection Rate :1088 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
     IP Profile for your line is - 750 Kbps
    Downstream
    1,088 Kbps
    Upstream
    448 Kbps
    Connection time
    48 days, 5:46:02
    (My bold and red)
    So - can somebody please explain what's going on?
    I have enough trouble understanding why the dratted connection keeps dropping for no apparent reason and at seemingly random intervals.  But this...is....mind boggling.  How can I possibly have been connected for 0 days - and then 2 days later be connected (on the same computer) for 48 days?  I won't bother asking why I only have 750 for a freakin' profile, I know that's likely down to my very unstable connection.  Something I will get back to attempting to sort out when the kids go back to school.  But - if this kind of thing means my modem is on the way out - it's the kind of thing it would be nice to know before I start drilling holes in the wall and buying shielded cable.
    HELP?
    (Oh, and what's with the box jumping up and down while I'm typing this? Or is that because the husband's wifi-ing something now...geez!)
    **Here today....blonde tomorrow**

    fragment_sweep
    0
    zero-length_fragment_size
    0
    small_fragment_size
    0
    fragment_size_overrun
    0
    fragment_overlap
    0
    fragment_out-of-order
    0
    ip_protocol_scan
    0
    tcp_port_scan
    0
    tcp_syn_scan
    0
    stealth_tcp_null_scan
    0
    stealth_tcp_fin_scan
    0
    stealth_tcp_xmas_scan
    0
    stealth_tcp_full_xmas_scan
    0
    stealth_tcp_vecna_scan
    0
    stealth_tcp_syn-fin_scan
    0
    udp_port_scan
    0
    ping_sweep_scan
    0
    tcp_syn_flood
    2
    udp_flood
    0
    ping_flood
    0
    icmp_unreachable_storm
    0
    smurf_broadcast_attack
    0
    smurf_storm_attack
    0
    fraggle_broadcast_attack
    0
    fraggle_storm_attack
    0
    land_attack
    0
    tcp_null_port
    0
    tcp_data_on_syn_segment
    14
    tcp_invalid_urgent_offset
    0
    udp_null_port
    22
    icmp_type_unknown
    0
    icmp_code_unknown
    0
    ip_zero_payload
    0
    tcp_rate_limiting
    0
    udp_rate_limiting
    0
    icmp_rate_limiting
    0
    ip_rate_limiting
    0
    Oh, and while I'm asking stupid questions, I found this.
    huh?  I live very nearly out in the middle of nowhere.  Intrusions?  What - do sheep or passing birds have wi-fi now?  Or is it just protecting my home network from the cars passing by on the 66 at 70+ mph?  You know, just asking out of curiosity (and a strong desire to put off doing more housework...lol).
    **Here today....blonde tomorrow**

  • [SOLVED] Can somebody explain how to connect with BitlBee to Jabber?

    I've read archwiki about bitlbee ssh and irssi setup, but still can't connect. So what I do, as soon as I start "irssi" I enter "/connect im.bitlbee.org", then "/join #bitlbee", then I get into a chatscreen, where I should enter "help commands" or "help" according to wiki , but I don't get any messages, its a chat, so when I enter these commands they are shown just as plain chat messages in the screen.
    Can somebody tell me what am I doing wrong? Cause I feel like a complete idiot.
    Last edited by tasty_minerals (2011-05-15 13:11:53)

    changed my IRC client from "irssi" to "weechat" and all worked like a charm.
    Last edited by tasty_minerals (2011-05-15 13:11:38)

  • Can somebody explain this strange method overloading behavior

    Please check the following code out......
    Snippet 1) compiles while Snippet 2) does not. Can someone explain. Thanks in advance for your help.
    Snippet 1)
    public class AQuestion
    public void method(Object o)
    System.out.println("Object Verion");
    public void method(String s)
    System.out.println("String Version");
    public static void main(String args[])
    AQuestion question = new AQuestion();
    question.method(null);
    // second version of this code.....
    Snippet 2)
    public class AQuestion
    public void method(StringBuffer sb)
    System.out.println("StringBuffer Verion");
    public void method(String s)
    System.out.println("String Version");
    public static void main(String args[])
    AQuestion question = new AQuestion();
    question.method(null);

    foo( SuperClass parm ) {}
    foo( SubClass parm ) {}
    Now somewhere in your code you do this:
    SuperClass myVar = new SubClass();
    foo( myVar );Which one do you want the JVM to call? Well, you want
    it to call the more specific one.
    So it calls foo( SubClass ). But if you sayNo, it doesnt. At compile time the compiler cannot know the complete type of myVar. It can only assure that myVar is of the type SuperClass. And it inserts no dynamic type-checking. And therefore it calls foo(SuperClass).
    It also does that if myVar is null (no dynamic type checking).
    SuperClass myVar = null;
    foo( myVar );
    foo(SuperClass) is called !!!
    foo(null);
    foo(SubClass) is called.
    SuperClass myVar = new SubClass();
    foo( myVar );
    SuperClass myVar = new SuperClass();
    foo( myVar );
    Can you cast myVar as an instance of SuperClass?
    yes.
    Can you cast myVar as an instance of SubClass?
    No.
    This is true of null; null can be cast as SuperClass
    or SubClass.
    No I dont think so. because null doesnt provide any method specified in SuperClass. Thus there can't be done a type cast. Null must be treated specially. It simply fits every class type at compile time.
    If the static (known at compile time) type of a parameter is known (not null) then the method with exactly the same parameter type is called or the one with the most specific parameter type in the line of inheritance of the given parameter - independent from the dynamic (known at runtime) type of the given parameter. If the parameter is null and if there is only one "line of inheritance" then null matches the most specific type by definition. If there are more "lines of inheritance" for the parameters then null would match each most specific type, and thus its not clear which method to use.
    I think this has nothin to do with type casts.

  • Please can somebody explain spaces to me?

    Hi, I have just tried to activate spaces and I've read the description of it etc. but having activated and apparently assigned different applications to different spaces e.g. safari to space 2, iphoto to space 3, I still don't get what the point of it is and what it's supposed to be doing. Please can someone explain in absolutely the most basic terms possible what spaces is supposed to do and how you get it to do it? Is there a video tutorial on this? I thought that perhaps it would split my screen up into four so that I could view all four things at once? All, that seems to happen is that when I select an application a little box of the spaces appears towards the bottom of the middle of the screen and then it disappears. I'm clearly missing something really important here but I don't know what it is. At the moment I can't see what's different to spaces from simply selecting applications normally. Also, when I try to look it up people keep mentioning this expose thing, but I don't understand what that is either.

    I struggled to explain the idea of virtual workspaces for several years and finally hit on the idea of using the example of a house. Each room of a house has a specific purpose, though at times we can make a room serve another purpose. Spaces lets us build a house for our screen and decide what use we'll put to each room. In spaces 1 we might put word processing, Photoshop Elements into spaces 2, Safari into spaces 3, and leave spaces 4 for everything else. When we start up the word processor OS X takes us right into spaces 1 - just as we'd go to the kitchen to cook. If we need to check a source online we start up Safari and OS X takes us into spaces 3. If we want to return to word processing we move back into spaces 1 - how we do that can be set in the spaces preferences, I use control # usually (that is ctrl 1 to move to spaces 1, ctrl 3 to move to spaces 3).
    There are many advantages of spaces including the ability to run many programs with less clutter. I can get an overview of my entire house by pressing a function key (and that has a user preference setup too) and while looking at the overview I can temporary move a program window from one space to another. Not everyone needs spaces but for those of us who run many programs at once, spaces is a very convenient way to organize the desktop.

  • Can somebody explain to me how JSP, servlets, ASP work within Sun's server

    Ok, I'm only beginning to get a grip of how all this works. And I have a lot of questions and confusion.
    1.) The server that comes with J2EE, what is that server? Is it an app server that runs only servlets and JSP, with some Web server stuff so it can output some info? Is it a stripped down version of TomCat? I am having a lot of trouble with the J2EE server (the one that comes with the SDK), and that is why I'm asking, maybe I don't need it. But I really want to learn JSP's, JScripts, and Beans. How else can I go about doing that, other than all out Tomcat.
    2.) Also can I run Servlets on Microsft's IIS on a Windows 2000 machine? Do I need a special API to run servlets, or JSPs?
    So how I see it, and again, I am a newbie at this. Machines that host a website, above all needs a web server. let's say most people use Apache, and they want to run it in Linux, becuase they want to be hackers. So then do they also run Tomcat, or IIS, or Coldfusion, or a million other servers in tandem on the same machine, so that they can handle ASP, JSPs, servlets, .cmf, etc.? or do they separate the app server from the webserver and then do some sort of linking? if somebody can direct me to how all this stuff works, I would greatly greatly appreciate it.

    Sounds like you need to read the J2EE spec as well as
    the servlet and JSP specs. It helps to glance through
    sections you are interested in.
    Ok, I'm only beginning to get a grip of how all this
    works. And I have a lot of questions and confusion.
    I think for a newbie, deploying your jsp's and servlets
    to a J2EE compliant app server can be quite a headache.
    You might want to concentrate on tomcat, which does servlet
    and jsp.
    Some app servers provide a http connector for most common web servers.
    I think tomcat has a IIS connector. In this case IIS would serve static html as well as its own stuff, other things like servlets and jsp go to tomcat. I am unsure about this as I mostly use tomcat in standalone mode. You can run tomcat on windows, as it is written in java.
    >
    2.) Also can I run Servlets on Microsft's IIS on a
    Windows 2000 machine? Do I need a special API to run
    servlets, or JSPs?

Maybe you are looking for

  • How can I move select photos from my mac to my macbook air?

    I would like to know the best, quickest, easiest way to move photos from my Mac to my macbook air?  I have tried Migration Assistant--was going to take 4 hours and I don't want to share all files, just photos.  I also went into System Pref. on each c

  • Can we generate a report on Audit History? (CRM 2011)

    Hi, I can see the Audit view in the database but every record is holding only Old value . No idear from where crm is pulling up the new value? Can any one please let me know the solution? Thanks.

  • Showing subscribed/unsubscribed podcasts in list view

    With past iTunes in List view I could quickly see to the right of the Podcast name, to what I am subscribed. Equally important I could note a desirable podcast that is currently unsubscribed. I do not see an easy way to do this with the current iTune

  • Can't install ACR presets on my Mac?

    I downloaded some presets for Camera Raw here: http://www.ewcouture.com/news-musings/2010/9/13/wynona-robisons-awesome-free-adobe-camera- raw-settings.html I can't find the path on my Mac to install them to! I get as far as Library/Application Suppor

  • Demand Planning Implementation Questionaire to the Business

    Hi All: We are about to implement Demand Planning SCM 5.0 for one of our businesses.  As a part of requirements gathering, I am supposed to prepare a questionaire that business would fill in.  Does anyone have any document on this that you would not