Limited search results

OS X v 10.4.3 and Mail v2.0.5. It seems that when I do a search, I only get the last few days results. This is rediculous. When I do a search, either I want ALL results, or I want to control the results I get. Does Apple Mail give me that choice? If so, where is it? If not...WHY THE *&%#% NOT?
I've tried both Spotlight and Apple mail's searches. BOTH of them only give me the results from the last few days. H-E-L-L-O...that doesn't help me when the message I'm looking for is 4 months old!!!!!
Any ideas??
I don't recall this being a problem before I upgraded the v10.4.3. Is this just another example of Apple drop in product quality testing that I have witnessed over the last three years?

Hi,
Did you eventually find a solution ?
Well, I found one after losing some hair so I'd like to share for anyone who ends up on this post:
Just add the following to your query:
ParentLink=https://site.sharepoint.com/sites/projects*
What it says is: the site's parent link must be projets, so that excludes "Projet 1 Photos" since its parent site is Projet 1.
Et voilà mon ptit pote.
Patrick
Patrick Beauperin

Similar Messages

  • Youtube app - limited search results

    When searching for YouTube videos within the YouTube app, I get fewer results a lot of the time, particularly when searching for "official" music videos. My example: search for "la roux in for the kill" on the YouTube site (either on your desktop or on Safari on the iPhone). The top result is the official video posted by "polydor". Click on it and it plays in the iPhone YouTube app. The same search in the YouTube app misses out this result.
    The same problem was raised [here|http://discussions.apple.com/thread.jspa?messageID=9853961&#9853961] but the answer doesn't apply to this issue. I can view the official La Roux video in the YouTube app, I just can't search for it there.
    As it seems to happen mostly to music videos, is it something to do with the access the record labels want to grant?

    Hi
    Have you figured it out yet?  It took me a minute to figure out, you need to swipte until you hear
    until it says the name of the app and gives app developer and rating then when you wipe again it will say the price, when I swipe to the right after that, it moves to the next app. This is on ios 7, I believe it worked differently on ios 6 and below.  I wish there a way to change the search results into a list view.
    Hope this helps
    Thanks
    NumberMuncher

  • Limiting search results to show results based off of entry in a catgory.

    I am working of someones previous search query, and now the company wants it to be more limited to what is viewed.  I have multiple users in a database and each user has a state assigned to them. I do not want the user when doing a search, to have the results comeback and show all results for every state. The States are defined in the database category as follows. IL, IA, FL, NV.  There will never be anything in this category but these. Below is the code that I am trying to modify to limit the result to the specific state they are using. This is current page for searching in IA. What do I need to change so it will search all search terms, but limit the results to only show for that state.  Thanks in advance.
    <?php require_once('../Connections/forms.php'); ?>
    <?php include('inc_auth.php') ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_subcat3 = "-1";
    if (isset($_GET['Category'])) {
      $colname_subcat3 = (get_magic_quotes_gpc()) ? $_GET['Category'] : addslashes($_GET['Category']);
    $colname1_subcat3 = "-1";
    if (isset($_GET['SubCat1'])) {
      $colname1_subcat3 = (get_magic_quotes_gpc()) ? $_GET['SubCat1'] : addslashes($_GET['SubCat1']);
    $colname2_subcat3 = "-1";
    if (isset($_GET['SubCat2'])) {
      $colname2_subcat3 = (get_magic_quotes_gpc()) ? $_GET['SubCat2'] : addslashes($_GET['SubCat2']);
    $colname3_subcat3 = "-1";
    if (isset($_GET['SubCat3'])) {
      $colname3_subcat3 = (get_magic_quotes_gpc()) ? $_GET['SubCat3'] : addslashes($_GET['SubCat3']);
    mysql_select_db($database_forms, $forms);
    $query_subcat3 = sprintf("SELECT * FROM `forms` WHERE Category = %s and SubCat1 = %s and SubCat2 = %s and SubCat3 = %s ORDER BY Description ASC", GetSQLValueString($colname_subcat3, "text"),GetSQLValueString($colname1_subcat3, "text"),GetSQLValueString($colname2_subcat3, "text"),GetSQLValueString($colname3_subcat3, "text"));
    $subcat3 = mysql_query($query_subcat3, $forms) or die(mysql_error());
    $row_subcat3 = mysql_fetch_assoc($subcat3);
    $totalRows_subcat3 = mysql_num_rows($subcat3);
    $colname_category = "-1";
    if (isset($_GET['Category'])) {
      $colname_category = (get_magic_quotes_gpc()) ? $_GET['Category'] : addslashes($_GET['Category']);
    mysql_select_db($database_forms, $forms);
    $query_category = sprintf("SELECT * FROM `forms` WHERE Category = %s ", GetSQLValueString($colname_category, "text"));
    $category = mysql_query($query_category, $forms) or die(mysql_error());
    $row_category = mysql_fetch_assoc($category);
    $totalRows_category = mysql_num_rows($category);
    $colname_subcat1 = "-1";
    if (isset($_GET['Category'])) {
      $colname_subcat1 = (get_magic_quotes_gpc()) ? $_GET['Category'] : addslashes($_GET['Category']);
    $colname1_subcat1 = "-1";
    if (isset($_GET['SubCat1'])) {
      $colname1_subcat1 = (get_magic_quotes_gpc()) ? $_GET['SubCat1'] : addslashes($_GET['SubCat1']);
    mysql_select_db($database_forms, $forms);
    $query_subcat1 = sprintf("SELECT * FROM `forms` WHERE Category = %s and SubCat1 = %s ORDER BY Description ASC", GetSQLValueString($colname_subcat1, "text"),GetSQLValueString($colname1_subcat1, "text"));
    $subcat1 = mysql_query($query_subcat1, $forms) or die(mysql_error());
    $row_subcat1 = mysql_fetch_assoc($subcat1);
    $totalRows_subcat1 = mysql_num_rows($subcat1);
    $colname_subcat2 = "-1";
    if (isset($_GET['Category'])) {
      $colname_subcat2 = (get_magic_quotes_gpc()) ? $_GET['Category'] : addslashes($_GET['Category']);
    $colname1_subcat2 = "-1";
    if (isset($_GET['SubCat1'])) {
      $colname1_subcat2 = (get_magic_quotes_gpc()) ? $_GET['SubCat1'] : addslashes($_GET['SubCat1']);
    $colname2_subcat2 = "-1";
    if (isset($_GET['SubCat2'])) {
      $colname2_subcat2 = (get_magic_quotes_gpc()) ? $_GET['SubCat2'] : addslashes($_GET['SubCat2']);
    mysql_select_db($database_forms, $forms);
    $query_subcat2 = sprintf("SELECT * FROM `forms` WHERE Category = %s and SubCat1 = %s and SubCat2 = %s ORDER BY Description ASC", GetSQLValueString($colname_subcat2, "text"),GetSQLValueString($colname1_subcat2, "text"),GetSQLValueString($colname2_subcat2, "text"));
    $subcat2 = mysql_query($query_subcat2, $forms) or die(mysql_error());
    $row_subcat2 = mysql_fetch_assoc($subcat2);
    $totalRows_subcat2 = mysql_num_rows($subcat2);
    $colname_subcat4 = "-1";
    if (isset($_POST['searchbox'])) {
      $colname_subcat4 = (get_magic_quotes_gpc()) ? $_POST['searchbox'] : addslashes($_POST['searchbox']);
    $colname6_subcat4 = "-1";
    if (isset($_POST['searchbox'])) {
      $colname6_subcat4 = (get_magic_quotes_gpc()) ? $_POST['searchbox'] : addslashes($_POST['searchbox']);
    $colname1_subcat4 = "-1";
    if (isset($_POST['searchbox'])) {
      $colname1_subcat4 = (get_magic_quotes_gpc()) ? $_POST['searchbox'] : addslashes($_POST['searchbox']);
    $colname2_subcat4 = "-1";
    if (isset($_POST['searchbox'])) {
      $colname2_subcat4 = (get_magic_quotes_gpc()) ? $_POST['searchbox'] : addslashes($_POST['searchbox']);
    $colname3_subcat4 = "-1";
    if (isset($_POST['searchbox'])) {
      $colname3_subcat4 = (get_magic_quotes_gpc()) ? $_POST['searchbox'] : addslashes($_POST['searchbox']);
    $colname4_subcat4 = "-1";
    if (isset($_POST['searchbox'])) {
      $colname4_subcat4 = (get_magic_quotes_gpc()) ? $_POST['searchbox'] : addslashes($_POST['searchbox']);
    $colname5_subcat4 = "-1";
    if (isset($_POST['searchbox'])) {
      $colname5_subcat4 = (get_magic_quotes_gpc()) ? $_POST['searchbox'] : addslashes($_POST['searchbox']);
    mysql_select_db($database_forms, $forms);
    $query_subcat4 = sprintf("SELECT * FROM `forms` WHERE Title LIKE CONCAT('%%', %s, '%%') or Description LIKE CONCAT('%%', %s, '%%') or Category LIKE CONCAT('%%', %s, '%%') or SubCat1 LIKE CONCAT('%%', %s, '%%') or SubCat2 LIKE CONCAT('%%', %s, '%%') or SubCat3 LIKE CONCAT('%%', %s, '%%') or Keywords LIKE CONCAT('%%', %s, '%%') ORDER BY Description ASC", GetSQLValueString($colname_subcat4, "text"),GetSQLValueString($colname1_subcat4, "text"),GetSQLValueString($colname2_subcat4, "text"),GetSQLValueString($colname3_subcat4, "text"),GetSQLValueString($colname4_subcat4, "text"),GetSQLValueString($colname5_subcat4, "text"),GetSQLValueString($colname6_subcat4, "text"));
    $subcat4 = mysql_query($query_subcat4, $forms) or die(mysql_error());
    $row_subcat4 = mysql_fetch_assoc($subcat4);
    $totalRows_subcat4 = mysql_num_rows($subcat4);
    // date format function
    function makeStamp($theString) {
      if (ereg("([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})", $theString, $strReg)) {
        $theStamp = mktime($strReg[4],$strReg[5],$strReg[6],$strReg[2],$strReg[3],$strReg[1]);
      } else if (ereg("([0-9]{4})-([0-9]{2})-([0-9]{2})", $theString, $strReg)) {
        $theStamp = mktime(0,0,0,$strReg[2],$strReg[3],$strReg[1]);
      } else if (ereg("([0-9]{2}):([0-9]{2}):([0-9]{2})", $theString, $strReg)) {
        $theStamp = mktime($strReg[1],$strReg[2],$strReg[3],0,0,0);
      return $theStamp;
    function makeDateTime($theString, $theFormat) {
      $theDate=date($theFormat, makeStamp($theString));
      return $theDate;
    // end date format function
    ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <?php include('inc_titleia.php') ?>
    <link href="styles.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <div id="banneria"></div>
    <div id="container">
        <div id="left">
    <?php include('inc_formselectoria.php') ?>
        </div> <!-- end left -->
        <div id="right">
    <?php if ($totalRows_subcat4 == 0) { // Show if recordset empty ?>
      <p class="largebold">Sorry.Not found.</p>
    <?php } // Show if recordset empty ?>
    <?php if ($totalRows_subcat4 > 0) { // Show if recordset not empty ?>
      <p class="largebold"></p>
          <?php do { ?>
    <a href="../members/uploads/<?php echo $row_subcat4['File']; ?>">        <div id="subleft">Download <br>
      <br>
    </div>
                <div id="subcenter"><?php echo $row_subcat4['Title']; ?><br>
                  <?php echo $row_subcat4['Description']; ?></div>
                <div id="subright">Updated <?php echo makeDateTime($row_subcat4['Date'], 'm/d/Y'); ?></div>        </a>    <div id="clear">        </div>
            <hr><?php } while ($row_subcat4 = mysql_fetch_assoc($subcat4)); ?>
      <?php } // Show if recordset not empty ?>
          </div><!-- end right -->
      <div id="clear">        </div>
    </div><!-- end container -->
    </body>
    </html>
    <?php
    mysql_free_result($subcat3);
    mysql_free_result($category);
    mysql_free_result($subcat1);
    mysql_free_result($subcat2);
    mysql_free_result($subcat4);
    ?>

    >The search box being used allows the users to enter any phrase and the
    >search script searches against all these tables for keywords, form numbers, names, etc
    Does the form have a single search field?
    >My problem is. Lets say I am logged in using the state IA...
    Assuming that the 'form' table has a state field, you just need to include that in the WHERE clause. You can either get that when you log in, by retrieving it from the user table, or, by joining the two tables together in the query. The latter assumes that there is a relationship between user and form.
    But again, I suggest as a first step to clean up the mess that you already have. The person that created this did not understand what they were doing.

  • How to limit search results to a single web

    This is probably an easy one to figure out, but I wonder what the best way would be to limit search results from a single web - do you create a content source for that or is there a better way, one which you can configure for multiple search site collections?

    Hi,
    In SharePoint 2013, we can create content resource for Search Service Application, site collection and site as below:
    http://technet.microsoft.com/en-us/library/jj683115(v=office.15).aspx
    If you are using Search related web part, you could create content resource in site collection and build query to path=http://webapplication*. Then configure web part to use the specific content resource. Please check the link below, the link is for creating
    content resource in SSA, you could go to site settings > site collection > search result sources.
    http://techmikael.blogspot.com/2013/04/limiting-search-results-in-sharepoint.html
    However, I’d recommend you using property filter to limit search results to one web application. Please try the steps below:
    Build your query.
    Basics > query text, input path:http://sp:26* (this limit search results to web application sp:26)
    Click test query and see if it return results.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Is it possible to have multiple search results page using one Search Enterprise Center site?

    Hi,
    We're using SharePoint 2013 and I'm trying to modify the search results page for one site collection. By default, it uses the search results page from the parent site which is the search center being used by default for the web application. I need to make
    sure that the site collection will only retrieve search results within the site collection (search everything has to be disabled). I found a way but I had to create another search center site to accomplish this, otherwise, it will affect the search center
    site of all other site collections on the web app.
    Now is it possible to have multiple search results page using one Search Enterprise Center site?

    Hi,
    According to your description, you want to retrieve the search results within the site collection.
    As a workaround, you can create a custom result source for the site collection and you will retrieve the search result within the site collection.
    More information about how to create result source in SharePoint 2013, please refer to :
    http://technet.microsoft.com/en-us/library/jj683115(v=office.15).aspx
    http://techmikael.blogspot.com/2013/04/limiting-search-results-in-sharepoint.html
    Best regards

  • Limiting the search results in MSA/BP-Search

    Hello;
    We are trying to limit the search results in MSA/BP-Search. We want to limit the number of BP's listed but do not know what code to write in MAS. May you please help us?
    Best Regards,
    Erkan Kaya
    SAP CRM Consultant

    Hi,
    What is your ATG version?
    Regards,
    Jai

  • I'm having trouble with something that redirects Google search results when I use Firefox on my PC. It's called the 'going on earth' virus. Do you have a fix that could rectify the vulnerability in your software?

    I'm having trouble with a virus or something which affects Google search results when I use Firefox on my PC ...
    When I search a topic gives me pages of links as normal, but when I click on a link, the page is hijacked to a site called 'www.goingonearth.com' ...
    I've done a separate search and found that other users are affected, but there doesn't seem to be a clear-cut solution ... (Norton, McAfee and Kaspersky don't seem to be able to detect/fix it).
    I'd like to continue using the Firefox/Google combination (nb: the hijack virus also affects IE but not Safari) - do you have a patch/fix that could rectify the vulnerability in your software?
    thanks

    ''' "... vulnerability in your software?" ''' <br />
    And it affects IE, too? Ya probably picked up some malware and you blame it on Firefox.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

  • When I click on a result of a Google search and then go that web site, the Back button on the toolbar is grayed out and I cannot return to the search results.

    When using FF3.6 and making a Google search, when I click on a result and then go that web site, the Back button on the toolbar is grayed out and I cannot return to the search results without going to History. This does not happen all the time; about 1/2 of the time.
    This problem is not limited to Google, but occurs with other sites as well.

    If you are talking about searches from - http://www.google.com/ - are you logged into a Google account all the time? If so, check your "Search Settings" from the "gear" in the upper-right corner of that Google search page and see if you have '''Open search results in a new browser window.''' check-marked, at the bottom of that preferences page. When that is check-marked and you have Tab options in Firefox set to '''Open new windows in a new tab instead''', you will get search results always opening in a new tab instead of the same tab. As to why that works different for "sponsored links" I don't know, I haven't seen the "sponsored links" for years now, I have a GM script that blocks those advertisements.

  • Can't access the search results I get on Finder after the system is updated to Mavericks.

    Hi there guys, how are you?
    I work everyday with my 21.5' iMac and it had OS Lion before I updated to Mavericks last month. As I work with lots of files, I have also a 1TB Lacie external drive pluged into it via firewire and I constantly access these files. After I updated though, I'm experiencing a strange problem. Everytime I search for a file on Finder, all the results that come up can't be edited or even selected. This is driving me crazy because I must open another tab and go all the way through the file I want as I can't select any file from the searches. All the search results come up written in gray color and with a empty circle on its left side. I can't even click on them! For better explanation, here is a picture of what happens:
    Before the update, I used to normally access every result the search came up to.
    I have another iMac here in the network with Mavericks too and all the searches returns with selectable and editable results. Can anyone help me with this, I am having a really hard time here as I am losing much much time. Thanks a lot and sorry for the bad english!

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • How to limit the number of search results returned by oracle text

    Hello All,
    I am running an oracle text search which returned the following error to my java program.
    ORA-20000: Oracle Text error:
    DRG-51030: wildcard query expansion resulted in too many terms
    #### ORA-29902: Fehler bei der Ausführung von Routine ODCIIndexStart()
    ORA-20000: Oracle Text error:
    DRG-51030: wildcard query expansion resulted in too many terms
    java.sql.SQLException: ORA-29902: Fehler bei der Ausführung von Routine ODCIIndexStart()
    ORA-20000: Oracle Text error:
    DRG-51030: wildcard query expansion resulted in too many terms
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:169)
    When i looked up the net, one suggestion that was given is to narrow the wildcard query, which i cannot in my search page. Hence I am left with the only alternative of limiting the number of results returned by oracle text search query.
    Please let me know how to limit the number of search results returned by oracle text so that this error can be avoided.
    Thanks in advance
    krk

    Hi,
    If not set explicitly, the default value for WILDCARD_MAXTERMS is 5000. This is set as a wordlist preference. This means that if your wildcard query matches more than 5000 terms the message is returned. Exceeding that would give the user a lot to sift through.
    My suggestion: trap the error and return a meaningful message to the user indicating that the search needs to be refined. Although it is possible to increase the number of terms before hitting maxterms (increase wildcard_maxterms preference value for your wordlist), 5000 records is generally too much for a user to deal with anyway. The search is not a good one since it is not restricting rows adequately. If it happens frequently, get the query log and see the terms that are being searched that generate this message. It may be necessary to add one or more words to a stoplist if they are too generic.
    Example: The word mortgage might be a great search term for a local business directory. It might be a terrible search term for a national directory of mortgage lenders though (since 99% of them have the term in their name). In the case of the national directory, that term would be a candidate for inclusion in the stoplist.
    Also remember that full terms do not need a wildcard. Search for "car %" is not necessary and will give you the error you mentioned. A search for "car" will yield the results you need even if it is only part of a bigger sentence because everything is based on the token. You may already know all of this, but without an example query I figured I'd mention it to be sure.
    As for limiting the results - the best way to do that is to allow the user to limit the results through their query. This will ensure accurate and more meaningful results for them.
    -Ron

  • SharePoint 2010 Content from top level site hidden from search results on subsite.

    Hi Everyone,
    The issue I am having is that when a group of people are in there site, we'll call it site B, and they hit the search function, they only get results from site B and subsites of site B, but nothing from the top level site, site A. does anyone know of anyway
    to get results from site A when searching in site B? This would really help me out a lot.
    Thanks!
    Best regards, Mike

    Hi Mike,
    According to your description, my understanding is that you want to display the content in top level site in search results page when doing search in subsites.
    By default, the search scope is set to This Site in all sites, so the search scope in subsites is limited to the subsites.
    I recommend to create a Search Center and then edit the Search settings in the top level site settings, please refer to the image below:
    Thanks,
    Victoria
    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]
    Victoria Xia
    TechNet Community Support

  • How to display search results in content area

    Hi
                 How can I display search results in the content area as seen in sdn.
    Thanks in advance.

    Hi,
    http://help.sap.com/saphelp_nw70/helpdata/en/cc/f4e77ddef1244380b06fee5f8b892a/frameset.htm you find the relevant guidelines.
    You can filter the PCD object setting the Search Layout Set of your Searc Iview.
    In System Admin > System Configuration > Content Management > User Interface > Settings > Layout Set and duplicate the "SearchResultLayoutSet" layout set.
    Then you have to duplicate its Collection Renderer "StandardSearchResultRenderer".
    In its property "Resource Types to be Filtered" set as value "-http://sap.com/xmlns/pcd/app/iview".
    Then assign the new Collection Renderer to the new Layout Set and that's it!
    Now if yuor Search Iview uses this new Layout Set, when you search a PCD object the iviews will not be shown!
    (or)
    In the entry "Predefined Properties" of the search options set, you will need to enter "resourcetype(value=http://sap.com/xmlns/pcd/app/page/default)" if you want the search to be limited to resources defined as pages. Leave out /default if you dont want the end user to be able to change the filter.
    If you want the parameter reflected in the URL, you can find information about how to do it here: /message/280371#280371 [original link is broken]
    Check and try either ways.
    Regards,
    Ponneswari A.

  • In Itunes 12 is there a way to view search results in the playlist view rather than the drop down menu?

    When searching for a song title, an artist etc in Itunes 12 it shows the results via a tiny consolidated drop down menu, however in previous version of Itunes search results would be displayed in the main playlist view. I seriously dislike the search drop down view because A) it only shows limited results B) It shows artwork C) It is confusing when trying to search your playlist when you are trying to organize your library.
    If anyone knows a way to change the search view preference please let me know how or advise me on how to suggest to Apple that they change it back or give people the option to choose which search result view they would like to use.
    Thanks.

    If you disable the Search Entire Library option (available in the dropdown to the left of the search box) iTunes 12 will not show the search results in a dropdown but will immediately go to a filtered version of your current view.  With the Search Entire Library option enabled, you can still get to this filtered view by clicking on the first entry in the drop down, which will say "Show <search string> in Library" or "Show <search string> in <playlist>" depending on where you start the search from.
    There are some inconsistencies in the search behavior, most notably that where you have the Search Entire Library option enabled and search within a playlist the dropdown will show all matches in you complete library (whether in your playlist or not), whereas the first entry in the dropdown just takes you to the filtered playlist view.
    You can use https://www.apple.com/feedback/itunesapp.html to provide input to developers about bugs, enhancement requests, etc.

  • Finder Search Results DATE CREATED / 10.5=MOST USELESS O.S. OF ALL TIME?

    Please Please Please tell me there's still a way to turn on the view options in finder search windows/results to display a files "Date Created" / "Date Modified" / "Size" etc. (basically all the options we have in a finder list view window).
    Seriously, if we are limited to Name/Kind/Last Opened with no way to see, at the very least, Date Created/Modified in the search results Mac OS 10.5 has just become useless to meet my needs. I mean totally and entirely useless. I mean sell my iMac and buy a windows box so I can find my files useless.
    Just tell me there's a way to turn on ALL the view options.
    <Edited by Moderator: Please See Terms of Use>

    There does not seem to be any way to restore Finder's behavior and options for search as it was in Tiger etc. Leopard's Finder view options aren't even allowed any longer in search windows (go to View->Options to get a frustrating message about it).
    There seems to be NO 3rd party utility to allow real-time file search and display/sort results by size -- obviously noone wrote it, since Finder used to be able to do that - until Leopard, that is.
    If this is a bug it's a pretty big and obvious one. I've reported it on bugreporter.apple.com (I guess others have done the same).
    If it were to be considered a "feature" in Leopard, it'd be one of the most limiting ones in 10.5 - this one and the Dock's Stacks are pretty high on the list of useless "new features" in Leopard. John Siracusa wrote in his excellent review about these and others (at http://arstechnica.com/reviews/os/mac-os-x-10-5.ars/12) :
    "+Not only does the Leopard Finder take no bold steps towards a brave new world of file management, it even further distances itself from a coherent incarnation of established file management paradigms. The changes in Leopard do indicate that Apple has taken a renewed interest in improving the Finder, but motion is not the same thing as progress. For where I'm sitting, it looks like one step forward, two steps back.+"
    Speaking as someone who's been developing software on Mac OS X since pre-Aqua Mac OS X Server 1.0 days, I sadly have to agree...

  • No search results from "Open" dialogue box

    In Mavericks OS 10.9.4, I get no search results when searching from an open dialogue box, i.e. open file from within Photoshop or some other program.  Searching from within Finder works fine.  Anyone else seeing this?  Any solutions?
    Mac Pro 2014
    Mavericks OS 10.9.4

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe modeand log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

Maybe you are looking for

  • Layers won't collapse or open

    Illustrator running very slowly, problem with layers. Nothing happens when clicking on triangles to open and collapse layers. Can turn them on and off by clicking the eye. Can also create new layers and delete things. What should I do? Working in win

  • Video transfer from Lumia 520 to PC

    How do I transfer video files from my Lumia 520 onto my computer without a cable or what do I do after uploading on Skydrive ?

  • How do I place a Vcard in adobe muse program.

    I have a .vcf file. My client wants to place the v cards for all of there employees on there new website I am designing. I am using Muse to design there website. Thanks

  • OSB not adding SOAP-ENV:encodingStyle attribute, invoke fails

    Hi, I have a WSDL that when inspected by XMLSpy, creates the following payload. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001

  • Ss there any new versions of safari in the works

    hi just curious if apple has any newer version planed and if so when is expected to go public beta?