Search by title problems...

Someone please tell me if this is just me, but searching by title seems terribly broken in LR 1.1.
Try searching for Title "is empty" or Title "isn't empty". It behaves for me as if all of my photos have titles when in fact almost none do.
I've also had very strange problems where I change the title of an image and then search for that title and it can't be found. However if I *restart* LR it can then find those images. I have tried syncing the metadata to disk, but that doesn't help.
I'm having a hard time trusting LR with all my work when basic stuff like this doesn't seem to be stable in a 1.1 release.
thanks,
Pat

Hi ,
You can use multiple managed properties in search box to restrict the search results, try the following string format in search box for restricting by "Title" and "Created By" when you click "Search" icon/button from search
box.
Title:"test" AND Author:"john"
Please see more from the following article.
http://msdn.microsoft.com/en-us/library/office/ee558911(v=office.15).aspx
Thanks,
Daniel Yang
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] 
Daniel Yang
TechNet Community Support

Similar Messages

  • Search result pages problem

    When I perform a search on a specific category on these forums, I get the first page of the results. But when I go a next page, I don't get a page with results of my search, but  the results of a search on all categories.

    The problem also arises with a single bowser window:
    1) do a search
    the first results page is correct
    2) clicking next or a page number gives results from all categories
    3) going back to the first page with results and clicking the search button (redo the current search) fixes the problems, now next and the page number links work correct.
    I've traced the problem down to this html:
    <a href="search!execute.jspa?q=sbo&dateRange=last90days&rankBy=10001&start=0"
                                 class="jive-current"
                                 >1</a>
    vs
    <a href="search!execute.jspa?q=sbo&objID=f56&dateRange=last90days&forceEmptySearch=true&rankBy=10001&start=0"
                                 class="jive-current"
                                 >1</a>
    The first is the result of a search on the main sbo forum page: SAP Business One SDK
    while the second is a result of a search done from the search form where you can specify which forum to search, which date range, user id, etc. (this is the form that is displayed above every page with results.
    Both resulting pages look 100% identical, but with the first search, the next pages are wrong. (because objID is missing in the links)
    I think this pretty much explains it. Now it's up to somebody else to fix it

  • Template title problem

    hi i have designed a dreamweaver template which has a main
    content editable region and another region further up which i want
    to include the title in. Therefore this piece of code i made as
    follows:
    <head>
    <link rel="stylesheet" type="text/css"
    href="../admin/Template/style.css" media="screen" />
    <meta http-equiv="content-type"
    content="text/html;charset=utf-8" />
    <meta name="description" content="MING Knowledgebase -
    Administration" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    </head>
    In the page which I want to apply the template to I have
    this:
    <head>
    <meta http-equiv="content-type"
    content="text/html; charset=iso-8859-1" />
    <link href="templates/style.css" rel="stylesheet"
    type="text/css" />
    <title> CMS: Edit Article</title>
    </head>
    Now the problem is that when I try to apply the template I
    get this result in the merged file
    <head>
    <link rel="stylesheet" type="text/css"
    href="Template/style.css" media="screen" />
    <meta http-equiv="content-type"
    content="text/html;charset=utf-8" />
    <meta name="description" content="MING Knowledgebase -
    Administration" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <link href="templates/style.css" rel="stylesheet"
    type="text/css" />
    <!-- InstanceEndEditable -->
    </head>
    For some reason dreamweavver is picking up my link tag and
    not the title tag. If I remove this link tag from the document and
    try to apply the template again the doctitle editable region wont
    show up as a possible place to place content in. What is the
    problem? thanks

    It's a bad practice to apply templates to pages that have
    existing content.
    To be absolutely sure, the very best way is to spawn a blank
    page from the
    template, and copy/paste from the existing page. Then save
    the new page
    over the old one.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "drtanz" <[email protected]> wrote in
    message
    news:[email protected]...
    > hi i have designed a dreamweaver template which has a
    main content
    > editable
    > region and another region further up which i want to
    include the title in.
    > Therefore this piece of code i made as follows:
    >
    > <head>
    > <link rel="stylesheet" type="text/css"
    href="../admin/Template/style.css"
    > media="screen" />
    > <meta http-equiv="content-type"
    content="text/html;charset=utf-8" />
    > <meta name="description" content="MING Knowledgebase
    - Administration" />
    >
    > <!-- TemplateBeginEditable name="doctitle" -->
    > <title>Untitled Document</title>
    > <!-- TemplateEndEditable -->
    > </head>
    >
    > In the page which I want to apply the template to I have
    this:
    >
    > <head>
    > <meta http-equiv="content-type"
    > content="text/html; charset=iso-8859-1" />
    > <link href="templates/style.css" rel="stylesheet"
    type="text/css" />
    > <title> CMS: Edit Article</title>
    > </head>
    >
    > Now the problem is that when I try to apply the template
    I get this result
    > in
    > the merged file
    >
    > <head>
    > <link rel="stylesheet" type="text/css"
    href="Template/style.css"
    > media="screen" />
    > <meta http-equiv="content-type"
    content="text/html;charset=utf-8" />
    > <meta name="description" content="MING Knowledgebase
    - Administration" />
    >
    > <!-- InstanceBeginEditable name="doctitle" -->
    >
    >
    > <link href="templates/style.css" rel="stylesheet"
    type="text/css" />
    >
    > <!-- InstanceEndEditable -->
    > </head>
    >
    > For some reason dreamweavver is picking up my link tag
    and not the title
    > tag.
    > If I remove this link tag from the document and try to
    apply the template
    > again
    > the doctitle editable region wont show up as a possible
    place to place
    > content
    > in. What is the problem? thanks
    >

  • Iphoto file name / title problem

    Trying to figure out why titles are not consistent. Some batches show the .JPG or .CRW extension in the title and some batches do not. What is the cause, and is there a way to force the extension to either display or not for all photos in the library.
    Also, unrelated, I realized that at some point my file numbers got screwed up. Specifically, after the import that ended with MG0718, the next import started with file MG7054. Some 1000 photos later I noticed. I'd like to be able to renumber these. And if I can , I'd then like to get (trick) my camera into saving new photos, starting with maybe MG2000.
    IPHOTO 6.0.6
    Thanks for any help.
    Ron

    rtpeters:
    Welcome to the Apple Discussions. First, you've posted in the iPhoto 08 forum and may not get the responses you'd would in the iPhoto 6 forum.
    As far as numbering is concerned that's a camera issue an I don't know of any way to set a start point in any camera. FWIW here's how I handle file naming:
    1 - I upload to a folder on the desktop.
    2 - date and name the folder: 03/08/08-Temecula Rod Show. This will give me an event with the same title when imported.
    3 - I use R-Name to batch rename the files with the date taken and a brief description: 2008-03-08-TemRodShow-01.jpg.
    4 - import the folder.
    That avoids problems down the line with duplicate file names during exporting. It also gives me excellent chronological sorting and searching.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Formatted search in Title to know BaseRef

    Dear All,
    I have an udf in the Title of delivery Note. My requirement is that I should get the base reference of it in this udf. Means the Sales Order No. I am trying to do it through automatic formatted search but its not happeing.
    I am using the following query as
    SELECT T1.[DocNum]  FROM DLN1 T0 , ORDR T1 WHERE T1.[DocNum] = $[DLN1.baseref]
    What might be wrong in the above one. Kindly advise.
    Regards,
    Kamlesh

    Dear Prasanna,
    Your formatted search is working perfectly when I am using COPY FROM funtion from Delivery to Sales Order. But when I am doing from Sales Order as COPY TO Delivery then the formatted search field in the delivery is not getting populated.
    I have also made the approval as per my requirement but the problem is that if the user does the Sales Order and uses copy to Delivery then approval is not checking due to non populated of the udf field but when doing Delivery and using Copy from then as the udf is having the base ref nomber hence its working fine.
    Please let me know how can I make it possible that if from Sales Order copy to is done to delivery then the udf would get the base ref number.
    Thanks for giving your inputs and would appreciate if you kindly get me out of it.
    Regards,
    Kamlesh

  • Search Service Application problems after upgrading from Foundation to Enterprise edition of SharePoint 2013

    Hi all. I have been searching for days for a solution to a problem I am having with SP2013 Enterprise edition.
    We recently upgraded from SP2013 Foundation to SP2013 Enterprise. After the upgrade, the search services are no longer working and we are receiving many application log entries indicating the following:
    Application Server Administration job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance (ea2019ef-bb9e-4efe-85ee-5d2307406f31).
    Reason: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    Technical Support Details:
    System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.Office.Server.Search.Administration.SearchServiceInstance.Synchronize()
       at Microsoft.Office.Server.Administration.ApplicationServerJob.ProvisionLocalSharedServiceInstances(Boolean isAdministrationServiceJob)
    as well as:
    Application Server Administration job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance (ea2019ef-bb9e-4efe-85ee-5d2307406f31).
    Reason: The object you are trying to create already exists. Try again using a different name.  
    Technical Support Details:
    System.Runtime.InteropServices.COMException (0x80040D02): The object you are trying to create already exists. Try again using a different name.  
       at Microsoft.Office.Server.Search.Administration.SearchServiceInstance.Synchronize()
       at Microsoft.Office.Server.Administration.ApplicationServerJob.ProvisionLocalSharedServiceInstances(Boolean isAdministrationServiceJob)
    I have tried to remove the search service application and recreate it, and even though the SharePoint Central Administration states that it was created successfully, I am still getting the same errors in the log. If I go to the Search Service Application
    Search Administration page, the "System Status" shows the following message:
    The search service is not able to connect to the machine that hosts the administration component. Verify that the administration component '0359af35-0982-4ede-8838-b1d390e915bf' in search application 'Search Service Application' is in a good state and
    try again
    Additionally, under the "Search Application Topology" section, it states "Unable to retrieve topology component health states. This may be because the admin component is not up and running" which I assume is normal if the admin is not
    running.
    Does anyone know how I can resolve this problem? 
    Thanks!

    Hi Joaquin,
    According to your description, the error occurred when you re-created the Search Service Application.
    Based on the error message, I recommend to verify the things below:
       1. Check if the association between the Search Service Application proxy and the web application is configured.
    Please go to Central Administration > Application Management > Configured service application associations > Click Default to see if the Search Service application is checked.
       2. Change the app pool for the Search Service Application to SharePoint Web Services Default in the properties of the Search Service Application.
    Please go to Central Administration > Application Management > Manage service applications > Highlight the Search Service Application > Click Properties in the ribbon > Change
    the two app pool to SharePoint Web Services Default: App Pool For Search Admin Web Service and Application Pool for Search Query and Site Settings Web Service.
        3. Run PS command to check if the search admin timer job is enabled: Get-SPTimerJob
    job-application-server-admin-service | fl. If it is not enabled, use PS command to enabled it and then reset Internet Information Services: Enable-SPTimerJob job-application-server-admin-service.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Third-Party Authentication: Search User identity problem

    I have installed OpenSSO agent on my SGD server. I have followed this doc: http://wikis.sun.com/display/SecureGlobalDesktop/HOWTO+Use+OpenSSO+With+SGD
    Everything works except the part where the SGD server tries to map the username with the Local+LDAP repository
    I have enabled the Third-Party Authentication and selected the option: "Search the User Identity in the LDAP Repository and use the closest matching LDAP Profile from the Local Repository"
    I have also kept the already working System Authentication (Active Directory) enabled
    I have 2 problems:
    1 - If the user does not exist in local directory (but exists in the active directory) the user is not automatically logged (the login screen of sgd appears).
    In the log file (catalina.out) I have an "Invalid credentials" message.
    The user is then able to log on manually.
    2 - If the user exists in both directories (local and Active Directory) the user is automatically logged-in but the profile is not the same. (the application list is different and the client settings are reset)
    I have checked the open session on the Administration console and I see a difference in the case of the User identity.
    If I log manually I will see "DC=COM / DC=DOMAIN / CN=User Name (LDAP)" (this is the right user)
    If I log with opensso I will see "DC=com / DC=domain / CN=User Name (LDAP)"
    I can log on with both at the same time, SGD seems to consider it like two different users.
    Thanks

    Hi,
    You need to create at least one high level "LDAP Profile" user profile in the SGS ENS.
    Regards,
    Arno Staal
    Divider B.V.

  • Sequel Search Server Behaviors Problem

    This code was made with php-msql server behaviors - recordset
    pull down's....
    I have a form to search for firstname or lastname or both but
    I'm not getting the right results
    SELECT * FROM phonebook WHERE firstname LIKE %s and lastname
    LIKE %s
    problem 1 - if I have NOTHING in the form then *all* records
    get returned
    I guess the problem is with blank form fields?
    Q: How can I fix this?
    full query below...

    still curious about this - thanks in advance

  • Search Box css problem in Ensemble2 with Win Xp

    Hi guys,
    I've notice a problem in style of search box in ensemble example. When the search box get the focus, the blue selection has not round corner as you can see here:
    http://justpaste.it/1h61
    This problem is present also in Windows Xp sp3. Why there is this difference between Win 7 and WIn xp?
    Thanks very much!

    Have some performance issues on Windows XP, too.
    I am using d3d prism settings to render on Windows 7 and XP. On Windows 7 everything working fine.
    On Windows XP it is slow and sometimes flickering.
    I didn't find a solution.
    1) Tried to start the application with other prism settings like -Dprism.order=d2d and OpenGL.
    2) I changed the 3d graphic settings that made it better, but didn't solve the issue.
    Someone knows the difference of rendering the javafx application in Windows 7 and XP (DirectX 11, DirectX9.0c)?

  • Ultra Search Portlet Configuration Problem

    Guten Tag,
    we are using OracleAS 10g Rel. 2 Portal. I've registered the Provider for Ultra Search.
    Now I understand that I have to add a data source in the OC4J_Portal configuration file "data-sources.xml"
    I want to make Ultra Search crawl and search our Portal.
    So I need to create a news Instance with the following entries (also for the data-sources.xml):
    - username and password are the Oracle Ultra Search instance owner's database user name and password.
    where do I find these info? It all has been done automatically by the RepCa when installing the IASPortal... ?- database_host is the host name of the back end database computer.
    is this the URL of our portal server (with or without /pls/portal/)?- oracle_port is the port to the user's Oracle Database.
    the standard Port of the Oracle Listener (1521)?- oracle_sid is the SID of the user's Oracle Database.
    Where do I get the SID of Portal DB after Installation?Thx,
    Gerhard

    Hi echee!
    I don't know what happened in the weekend, but now the Ultra Search portlet doesn't throws any exception.
    It seems works correctly.
    Maybe the servers was restarted or the sheduled crawler recovered something in the indexed data.
    I'm totally surprised.
    I checked the log files, but I didn't find any failure message.
    Now I must build a new Search Portlet for our portal, and I will contact you, if the problem returns.
    Csaba.

  • IPhone spotlight doesn't search job titles for contacts

    I think this is so strange that you can't find a contact in your iPhone by searching for job title. Is there a way to turn this on somehow? Some setting I'm missing?
    I'm imagining the bathroom sink springing a major leak:
    "Honey! Grab the iPhone and call the plumber!"
    "What's his name?"
    "I can't remember right now! There's water spraying everywhere! Just search for plumber and you'll find him..."
    Not gonna find him. Enjoy your leak.
    Seems like a strange oversight. Spotlight on the computer at least brings up a couple of matches.
    Weird. No?

    Obviously the more fields that are searched the slower the search will be, but I would really like it to search all fields even if it does take longer...
    My 10 year old Handspring Prism smartphone did it
    What fields to search could be a selectable feature within the OS.
    I've submitted a suggestion as well...

  • Search Portal Roles problem

    Hi,
    I have a problem enabling the portal roles search. I have followed this guide:
    http://help.sap.com/saphelp_nw04/helpdata/en/b2/d59a4271c80a31e10000000a1550b0/frameset.htm
    The problem is that when i enable the portalRolesSearch in the index managemant service search does not work at all. I get the following error when trying to search:
    Error during search occurred - com.sapportals.wcm.WcmException
    Does anyone know what the problem might be?
    Regards Thomas

    Hello!
    We get the same error. We are on Ep 6 SPS 15. Did you get any other information on this issue or have you opened an OSS call yet?
    Regards, Christian

  • Motion title problem

    Hi, I create final scroll subtitles in my DVCPRO50 PAL anamorphic project. In previous projects I allways create final subtitles with using Video Generators->Boris->Title Crawl. Now I need insert some logo in to subtitles. I try create it using Motion 4, but quality of final subtitles created in Motion 4 in comparison with subtitles create using Title Crawl generator is wery bad. Scroll text is wery flicking and blur. I'm checked it on CRT TV monitor and Apple Cinema Display.
    Thanks for response JS

    Welcome to the discussions...
    First of all, final delivery format is critical to evaluating the quality of your subtitles.
    There are many reasons for soft edges on titles, you would do well to search the forum.
    Mark Spencer has an excellent write up online on soft edged Motion projects in FCP. If you search his website: http://applemotion.net for words like blurry or soft, you should find it.
    Finally, make sure your field order matches your final cut pro sequence's field dominance. That can cause a 50% reduction in resolution/quality.
    post back,

  • Reuse_alv_grid_display TITLE problem after refresh

    All,
    I have a alv report using fm reuse_alv_grid_display. While calling initially this fm i am passing the grid tile in I_GRID_TITLE parameter. its displaying in grid, then after user click on the app toolbar button , i am doing some filteration , then coming back to grid the TITLE is missing in display
    Any Info .  below is the code snipet
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program             = sy-repid
         i_callback_pf_status_set       = 'F_PF_STATUS_SET'
         i_callback_user_command        = gc_user_com
         i_grid_title                   = gv_gtitle "<< passing initially
    then in User_command i am filering some values on the basis of button clicked (Button placed in app toolbar)
    FORM f_user_command USING p_ucomm    LIKE sy-ucomm
                              p_selfield TYPE slis_selfield .
        WHEN '&EXP'.
          perform f_expand.
          p_selfield-refresh = 'X'.  "<<<----- refresh the grid
      code for f_expand
    form f_expand.
        CALL FUNCTION 'REUSE_ALV_GRID_LAYOUT_INFO_GET'  " Getting current layout
          IMPORTING
            es_layout      = ls_layout
            et_filter      = lt_filter
            es_grid_scroll = ls_grid_scroll
            es_print       = ls_print
          EXCEPTIONS
            OTHERS         = 1.
    " Here doing some filteration. ie append some values to IT_FILTER table for enabling then filter
        perform f_set_fltr_val_exp using lt_filter[].
        ls_layout-colwidth_optimize = gc_x.
        read table gt_sfieldcat into gv_fieldcat
                          with key fieldname = 'REGIO'.
        if sy-subrc eq 0.
          gv_fieldcat-no_out = ' '.
          modify gt_sfieldcat from gv_fieldcat index sy-tabix.
        endif.
    * Set the grid title to include the parameters and the report type
      CONCATENATE text-027 p_bukrs text-028 p_perio
                  text-029 p_gjahr
             INTO gv_gtitle SEPARATED BY space.
        CALL FUNCTION 'REUSE_ALV_GRID_LAYOUT_INFO_SET'
          EXPORTING
            is_layout      = ls_layout
            it_fieldcat    = gt_sfieldcat
            it_sort        = gt_sort
            it_filter      = lt_filter
            is_grid_scroll = ls_grid_scroll
            is_print       = ls_print
          EXCEPTIONS
            OTHERS         = 0.
    endform.                    " F_expand

    Hi All,
    Thanks for your replies.  I have done all that has been said.  My problem is that when the user double clicks on the ALV without pressing the sort button in the ALV display, the index provided in the user-command subroutine is the same as the index of the record in the internal table.  But, when the user sorts dynamically when the ALV is displayed and then double clicks, the index of the record provided by ALV is different from the index of that record in the internal table.
    For example, when the ALV grid is shown a record is in the 1st row, and when the user double clicks now, the index of this record provided is 1 which is same as the index in the internal table.
    But, after the user sorts in the display, if this record moves to the 5th row, the index provided by ALV will become 5, but, actually the index in the internal table is still 1.
    Hope I have clarified my problem.
    Thanks,
    Sridhar

  • X6 How to Search Music Titles?

    I seem to recall I could search on my 5800 for titles or anything in a song using a Search option in the music library. I do not see this function in the X6 (20.2.005). When I scroll the titles, large letters of the alphabet are displayed, but with 600+ titles, this is clumsy. Is this feature there? If not, it should be.
    Thx

    Same issue is there in new 5800 update v52. After update they have taken away the functionality of find song in music player. It really sucks to find a single song in about 1000+ in my case.

Maybe you are looking for