Deleted Po's not in search results POWL

Hi All,
I have a question,..
We are on SRM 7.02 and when I want to search for PO's which are deleted (status deleted) in POWL I don't get any search results. Is it a standard behaviour deleted PO's don't show up in search results?
The deleted PO's I can find in SRM backend/ECC.
thanks for replies,
Joost

Hi Sharad,
Yes I know. But when I mark the PO item as deleted and refresh the powl it is dissappearing from the search results,
Regards,
Joost

Similar Messages

  • Altavista will not display search results

    altavista us will not display search results. altavista canada works fine. On us site results will display in no style page but not in basic page style. The page comes up blank. This may have been caused by delta search. I think I have rid my computer of delta? Reloaded firefox. I use norton 360 and have run registry clean up and virus scans. Also cleaned explorer. In explorer the u.s. altavista works ok that is why I think it something to do with firefox and delta search showed up at the same time unwanted and forced a change on my home page. Have cleared computer of what delta files I could find my have something in the registry but I would not know what to look for or to do with. I am running xp

    In a round about way you solved my problem cor-el ! At the end of standard diagnostic there was mention of malware so I ran malwarebytes before running profile manager. malwarebytes found 21 items some in the registry. deleted these items and tried altavista us again and to my surprise it is working ok now.I thought norton 360 would catch such things but I guess it doesn't ! will keep and run a malware program from now on. thank you for your help.

  • Database not returning search results

    I am a complete newbie to mySQL and php, but I have managed to create a database in Dreamweaver. It seems (using 'seems' broadly) I have done everything correctly, following step-by-step instruction from the Dreamweaver help website. But when I load everything to my server and search, the table comes up with no results in it. I had put two entries into my database on phpMyAdmin; the search shows up fine when I test the recordset in Dreamweaver, but when it's online and I search, it's just a blank table on the results page.
    I have exhausted search terms on the web trying to figure this out. I thought maybe something was wrong with the connections folder, but it is located where it says it is. Maybe someone here can help. Pasting the code below:
    <?php require_once('Connections/ppi_database.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $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;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_Recordset1 = 10;
    $pageNum_Recordset1 = 0;
    if (isset($_GET['pageNum_Recordset1'])) {
      $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
    $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
    $colname_Recordset1 = "-1";
    if (isset($_GET['form1'])) {
      $colname_Recordset1 = $_GET['form1'];
    mysql_select_db($database_ppi_database, $ppi_database);
    $query_Recordset1 = sprintf("SELECT * FROM ppiguests WHERE name LIKE %s ORDER BY name ASC", GetSQLValueString("%" . $colname_Recordset1 . "%", "text"));
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $ppi_database) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    if (isset($_GET['totalRows_Recordset1'])) {
      $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
    } else {
      $all_Recordset1 = mysql_query($query_Recordset1);
      $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
    $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
    $queryString_Recordset1 = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_Recordset1") == false &&
            stristr($param, "totalRows_Recordset1") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_Recordset1 = "&" . htmlentities(implode("&", $newParams));
    $queryString_Recordset1 = sprintf("&totalRows_Recordset1=%d%s", $totalRows_Recordset1, $queryString_Recordset1);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table border="1" align="center">
      <tr>
        <td>name</td>
        <td>date of stay</td>
        <td>room</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><a href="detail.php?recordID=<?php echo $row_Recordset1['name']; ?>"> <?php echo $row_Recordset1['name']; ?>  </a></td>
          <td><?php echo $row_Recordset1['date of stay']; ?>  </td>
          <td><?php echo $row_Recordset1['room']; ?>  </td>
        </tr>
        <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
    </table>
    <br />
    <table border="0">
      <tr>
        <td><?php if ($pageNum_Recordset1 > 0) { // Show if not first page ?>
            <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, 0, $queryString_Recordset1); ?>">First</a>
            <?php } // Show if not first page ?></td>
        <td><?php if ($pageNum_Recordset1 > 0) { // Show if not first page ?>
            <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, max(0, $pageNum_Recordset1 - 1), $queryString_Recordset1); ?>">Previous</a>
            <?php } // Show if not first page ?></td>
        <td><?php if ($pageNum_Recordset1 < $totalPages_Recordset1) { // Show if not last page ?>
            <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, min($totalPages_Recordset1, $pageNum_Recordset1 + 1), $queryString_Recordset1); ?>">Next</a>
            <?php } // Show if not last page ?></td>
        <td><?php if ($pageNum_Recordset1 < $totalPages_Recordset1) { // Show if not last page ?>
            <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, $totalPages_Recordset1, $queryString_Recordset1); ?>">Last</a>
            <?php } // Show if not last page ?></td>
      </tr>
    </table>
    Records <?php echo ($startRow_Recordset1 + 1) ?> to <?php echo min($startRow_Recordset1 + $maxRows_Recordset1, $totalRows_Recordset1) ?> of <?php echo $totalRows_Recordset1 ?>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>

    I hope this answers your question.
    It doesn't answer my question but it still helps me determine your level of knowledge.
    For your search results page code the php is processing data that's sent via URL parameter. That's what the snippet you provided is saying:
    $colname_Recordset1 = "-1";
    if (isset($_GET['form1'])) {
      $colname_Recordset1 = $_GET['form1'];
    That says that if a URL parameter for form1 is set then set the value of the parameter to the variable for processing in your query. That's why I asked where your search form code is. You explained your search from briefly, but didn't provide a code. For search page you need a form to send the URL parameter 'form1' to the search results page. Use something like this on search page for your form:
    <form action="results_page.php" method="GET">
    <input type="text" name="form1">
    <input type="submit" value="Search">
    The action of the form should point to your search results page to process the data into a query and display the results. GET method of a form will send the "name" data of each form element as a URL parameter. So if you searched for entered text on your search form then when you click submit the URL will look like: www.your-domain.com/result_page.php?form1=entered%20text
    Your script will take data form URL parameter and process the data in your query. That should get you going in the right direction.

  • Custom Search does not return search results

    I created a custom search application and another aaplication for choosing different pages from a list of values.
    When I add both of these applications in the same page with search on the top and the other application on the bottom, everything works fine. But if I add search on the bottom and the other application on the top, I get a page not found for search results.
    any idea why this is happening?
    note: I took the html code from the standard search to create the custom search application.
    Thanks.

    It was a minor coding issue. Problem solved.

  • RoboHelp 10 FlashHelp not returning search results

    Hello All,
      I have been using Robohelp for some time now going all the way back to RH7. Currently using RoboHelp 10. I just created a RH10 Flashhelp project and I am having problems with the search results. Here is what I get.
    After Producing FlashHelp and opening localling to test search I get the following
    IE 9: Search works correctlly
    Firefox 26.0: Search returns no results immediately, no long progress of searching almost instant return of no results.
    Chrome: same as Firefox.
    Hosting on IIS 6 Windows 2003 server R2 with Service Pack 2
    IE9: No search results
    Chorme: No search results
    Firefox: No search results
    Does anyone know of possible browser or RoboHelp generation settings that may cause this.
    Thank You,
    Anthony Padgett

    Hi Anthony
    As you are producing FlashHelp, (well, assuming you are based on this being the FlashHelp forum and all) I might suspect looking at the Flash Player installed on your system. Note that IE, Firefox and Chrome implement the Flash Player differently. So it's entirely possible to have perhaps version 8 of the Flash Player on IE and version 12 in Firefox. Not sure if Chrome is special or if it uses the same player as FF or IE.
    But that's where I'd begin looking.
    Additionally, it might also depend on whether you are viewing the help content off your local C drive or whether you are testing after uploading to a web server.
    Cheers... Rick

  • Custom Metadata is not in Search Result result set

    Hello. I have created a custom metadata xDAMAuthor. I have used it in a rule for check-in profile. Also have check-in a content by filling this field. Now the search form has this metadata as one of its field and I can search by using this field, also the search result returns the aforesaid content which I have checked-in. When I am looking into the SOAP format of the GET_SEARCH_RESULTS then that metadata is not there in the row of the SearchResults resultset. But if I see the SOAP format of the DOC_INFO of that content the DOC_INFO resultset contains that metadata. How can I solve the problem?
    Note: In the Admin Applet->Configuration Manager->Information Fields, Enable for Search Index is checked for this metadata.
    Thanks.

    the search result returns the aforesaid content which I have checked-in
    And do you see you metadata in the results? I guess you don't. Unless you followed http://docs.oracle.com/cd/E23943_01/doc.1111/e10797/c03_finding_files.htm#CIHEFHAI and created a custom search result template.
    I am sure that GET_SEARCH_RESULTS have all the metadata from returned items somewhere (probably in a result set), but I'm not sure what's returned - it could be very well the row as you see in the browser. Therefore, you might tried to use your custom search result template in your call (in fact, I think for a user always the default one is used).
    Should be easy to give it a try.

  • Netflix on Apple TV not showing search results

    Hey, a few months ago the Netflix search function on my Apple TV stopped working. I do the search in the search box, but the area on the right, where the search results are supposed to show, remains black. I have restarted, signed in and out of Netflix, tried all I can think of with no results. This is only a Neflix on Apple TV issue, as all other Apple TV apps have the search function working fine.
    Please help!

    I had this exact problem and finally thought to check online at the Apple forums here for an answer. This came up after looking at one or two other questions in the search.
    I'm happy to say that the restore of the Apple TV worked. Search in NetFlix on the Apple TV now shows results.
    My Apple TV is the latest generation I think, have had it for almost two years. It was already upgraded to the latest Apple TV software. I'm guessing that a bug snuck in at some point over the years and over multiple software updates.
    Upon restore, I noticed a feature I didn't realize existed, which is that you can start using the Bluetooth in your iPhone or iPad to immediately help with Apple TV setup. You need Bluetooth on and to place the device near/on the Apple TV. This is a feature I know I've seen many commenters request, but apparently not realize this was possible? Or maybe this is a new feature in the latest software update?

  • ITunes Store not displaying search results on my Mac Mini

    Over the past couple weeks I've noticed problems with search results not displaying in the iTunes Store on my Mac Mini.  I do not have this problem on my Macbook Air or other Apple devices.  I can enter an artist such "Coldplay" and all I get are audiobooks and podcasts.  When I enter this same search on my Macbook, I get all the expected results--songs, albums, etc.  I am running OS X 10.9 on both machines (with iTunes version 11.1.2).

    Hi there kushfromgbr,
    You may find the information in the article below helpful.
    About SyncServices
    http://support.apple.com/kb/HT5847
    OS X Mavericks
    OS X Mavericks v10.9 and later do not use SyncServices. Instead, Mavericks supports sharing your information using several network-based and cloud-based solutions. If you want to sync your information across multiple devices and computers, you should use one or more of these methods. These include iCloud, CardDAV servers, CalDAV servers, and servers that utilize the Exchange ActiveSync protocol.
    If you would like more information about setting up iCloud on your devices you can take a look at the article below.
    iCloud: Set up iCloud on your devices
    http://support.apple.com/kb/PH2609
    -Griff W. 

  • MSS- Team- EmpInfo- General Info- EMPSearch is not displaying Search Result

    Hello All,
    Currently we are using MSS BP 1.3.1 & SAP_MSS 600 SP16...
    I am going to the navigation MSS->Team->EmpInfo->General Info->Employee Search [Under Employee Selection Dropdown i am selecting Employee Serach Option], here i am getting the view with lastname, fistname, Personal No:, Even i am using any of the Search Critiria like Serach With LName,FName And PerNo:, No Employee Search result is Displaying Simply No Data Found Message is coming.
    To active this EMp search in MSS do i need configure any steps from SPRO. Any Steps from Portal Front.
    To display Team Calender , i configured IGS, what else i need to do to get Team Calender iview in Team Under MSS.
    Please list out the steps and provide some help to fix the issue.
    Thanks & Regards
    Adapag

    Bala,
    Thanks for ur response, Debug in the Sense we need to Maintain any parameters in the Employee Search Parameters w.r.t MSS in the Particular Method or What?
    I checked in the SPRO--> Integration with other mySAP Components -->Business Packages > Manager self Services (mySAPERP)>Object and Data Provider--> Define Object Selection / Group Parameters for OBJ Search / Define Rules for Object Selection..
    Here we need to create any rule and pass those Group Parameters into that???
    I told my ABAPers to debug those two methods, apart from that any HR side SPRO Configuration pending?
    Please reply me and list out the Steps, Where and What exact config need to do from SPRO apart from that Debugging????
    Thanks in Advance
    Adapag

  • Search button not displaying search results

    I have created a page where you enter a string and click a search button and it will display the file that contains that string. It works on one page but not any of the other pages I have created. I went to dkubiceck page and copied the code for the search button there.
    This is the code I used to run the query to bring up the document information:
    select score(1) relevance, filename,transcript_id,
    dbms_lob.getlength("trans_document") "trans_document"
    from transcript_documents
    where contains (trans_document, :P20_SEARCH, 1) > 0
    order by 1 desc
    I can run the script in sql workshop and it returns information but I can't get the page to display anything so I think it has something to do with the search button. Does it have something to do with the button request. I have the request as go which is what the Oracle Text for APEX tutorial indicates. I am at a loss as to why it is working in one place and not in another. HELP!!!!!!!

    I used the Using Oracle Application Express to Build
    Oracle Text Web Applications An Oracle White Paper documentation to create this button. The instructions to create the button is below.
    http://www.oracle.com/technology/products/database/application_express/pdf/apex_text_application_v1.6.pdf
    To create a button to submit the search:
    1. Under Buttons, click the create icon ().
    2. For Region, select Search Terms(s).
    3. For Task, select Create a button displayed among this region’s items.
    4. For Button Name, enter P1_FIND.
    5. For Label, enter Find.
    6. For Button Style, select HTML Button.
    Run your page using the run page icon () and your development username and password. Your page should look similar to the following figure.
    This was the instructions to create the query region:
    To create a query region:
    1. Navigate back to the Page Definition for the Search page. You can do this by using the edit links at the bottom of the running page, Edit Page 1.
    2. Under Regions, click the create icon ().
    3. For Region Type, select Report.
    4. For Report Implementation, select SQL Report.
    5. For Title, enter Results.
    Using Oracle Application Express to Build Oracle Text Web Applications Page 9
    6. Enter the following SQL query:
    select score(1) relevance, doc_title, doc_url
    from htmldb_documentation
    where CONTAINS (doc_url, :P1_SEARCH, 1) > 0
    order by 1 desc
    7. For Display Conditions, for Condition Type, select Value of Item in Expression 1 is NOT NULL.
    8. For Expression 1, enter P1_SEARCH.
    This condition specifies to only display the Results region if a term is entered as a search criterion.
    Run the page and enter a search criterion for Term(s). Your results should look similar to the following figure.
    Figure 2.0
    The only thing I added to the query above is a dbms_doc.getlength statement to be able to open a link to the document.
    The first 2 times I created this on a page it worked just fine. But now no matter what conputer or schema or application I create this button in it won't display the results. I can admit that I have no experience creating a button with a different request than what comes up in the wizard. And the documentation that I found on creating buttons was of no help.
    I have not made any changes to anything in the wizard so can someone guide me as to how to create a button that will allow me to search a document using Oracle Text as described above

  • Amazon search results do not display properly as of Firefox 33.0

    Hello,
    This one is a bit strange. Lately, I've noticed that many (but not all) search results on Amazon display only eight items per page, even though the Amazon site believes it is showing me 48 results. It is as if the rest of the results are hidden behind the "next page" control.
    To reproduce:
    1) go to amazon.com.
    2) In the search bar, enter a search term that will get lots of results. For example "sweaters women"
    3) On the resulting page, go to the side menu, and choose a sub category - for example, "Women's sweaters".
    4) Look at the resulting page. It will tell you "1-48 of 37,824 results ..." but you will (or at least, *I*) only see eight items -- two rows of four. Directly underneath the second row is the grey bar that shows the pages and the "previous" and "next" links. Underneath *that* is a very large white space, which looks about the right size to contain the remaining rows of results -- but they are not there.
    Do you see what I'm seeing? It's strange, and it just started a short time ago. I'm only now really looking into it, and IE and Safari both show me the search results as I expect.
    I am running Windows 7 and Firefox 33.0.
    Thanks for looking.

    No problems here.
    I do see 48 results as 12 row of each 4 results.
    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Podcast Search results not showing all episodes

    I'm new to podcasting & our podcast isn't showing up properly.
    When you look at our podcast in the search results, only one episode shows up.
    There are three episodes total, but they show up only if you subscribe to the podcast.
    Is there a way for the search results to show all of our episodes?
    Our iTunes link is http://itunes.apple.com/us/podcast/the-hills-fellowship/id448179201
    Our RSS feed is http://sermon.net/rss/client/thehillsfellowship
    Please help if you can!
    Also, they were uploaded last week...so it's been enough time for them to be processed & show up.

    I'm afraid I can't give you a comforting answer.
    The feed at the URL you quote contains the tag
    <itunes:new-feed-url>http://sermon.net/rss/thehillsfellowship/main</itunes:new-feed-url>
    so the feed iTunes is now using is
    http://sermon.net/rss/thehillsfellowship/main
    and that is the one you should be updating - though in fact they are almost identical and it's possible that the method you are using updates them both.
    The feed at http://sermon.net/rss/thehillsfellowship/main is valid and I can't see anything wrong with it. As you say, it can be subscribed to and shows all three episodes: but the Store page (and thus the search results) show only the first episode.
    The Store should have updated by now: it's not unknown for the Store to get stuck and fail to update for several weeks: usually it eventually updates and I have no idea why it does this. It doesn't happen often, but I have seen the occasional complaint.
    However there is another issue which may be relevant: although the date of the latest episode is July 17th, the feed was updated today:
    <lastBuildDate>Mon, 15 Aug 2011 16:11:23 GMT</lastBuildDate>
    <pubDate>Mon, 15 Aug 2011 16:11:23 GMT</pubDate>
    This raises the possibility that there was something wrong with the feed before (hence the failure to update) but that whatever you've done today cleared it. That would indeed result in the three episodes showing on subscribing but not in the Store - it would take a couple of days or so to catch up.
    If that is the case the Store should update in a day or two. If not, then it might update at some future date or it might not: I can't explain that.
    I should at least give it two or three days and see what happens. Check the Store page using the link you gave, not the Search results as these often lag behind.
    If you don't get a result after several days you could try iTunes Support, but I have to tell you that they don't have a good record for helpfulness and the chances are you won't get anywhere with them.  Go to http://www.apple.com/support/itunes/ - click on 'Other iTunes Store Features' in the list and then on 'Podcasts'. You will see a link to either 'Express Lane', which will guide you eventually to some contact options, or you may see a link to email them.

  • Google search is not search results

    Google search is not showing search results, earlier it used to show.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • CRM Search Results Problem

    Hello ,
    I am facing one problem from past 3 days. in my SAP CRM System one user  can not see search results in CRP100 Inbox Search. CRM - Inbox search shows "no results found" when other users doing the same search get 17 pages of results.
    Please give me the desirable solution for my problem.
    Thanks in advance

    Hi Raju,
    In inbox search criteria, please clear all the search fields. Also check the Quick Search fields too. If still its not coming then it is a authorization issue. Check with your security consultant.
    You also can check it from ST01 transaction. It is same as ST05 SQL trace.
    Thanks
    Subhankar

  • I get zero search results even for items I know are at the store. Anyone else getting this behavior?

    On two different machines, one running Snow Leopard, the other running Yosemite, iTunes does not display search results for most searches, including items that I know are at the store. I'm just wondering if anyone else has experienced anything similar?

    Yes.  I find that I have to revise my search several times to finally find what I want.  If I can't find it under the artist, I might find it under the title of the song, or some variation of the title.  It seems to be more common with older songs or movies.  This has been true even before the current update.  Case in point, recently I couldn't find a song I wanted under the artist's listing.  I searched under the name of the song, and not only found the song, but also some albums that hadn't been listed under the artist in my first search results.

Maybe you are looking for

  • Photosmart 6520 e Windows 7 printer says it is connected to network, but will not print.

    I've followed all suggestions in troubleshooting both from manual and on line.  Shut off firewall, unplugged, plugged waited.  Nothing changes.  All printouts from the printer say connected, but will not print and computer detection of the printer sa

  • How can i heal a "transparent" area in an LR-created pano?

    When I shoot handheld pano's, there are usually "missing" areas in the sky or ground because of my handheld sloppiness.  In theory, these can often be fixed with the healing or cloning brush if the sky or ground is reasonably consistent.  Using PTGui

  • How to set default option to open to full spread in window

    Re: InDesign CC I have an IDCC book where each chapter resides in its own .indd file. When I open the file, the spread is offset. It's mostly just the lower right corner of a page that is displayed. To correct this, I manually go to View and select F

  • Unable to send mail to some addresses after move to Leopard

    I am not sure, whether I am in the right forum with my question. If not, please tell me where I should go. I am traveling a lot for work and have clients in many countries. Since 2004, I have been using Mac laptops and have not encountered any proble

  • Customer Exit for Delivery address

    Hi Gurus, Our Client Requirement: At Present they are carrying out Import of materials in Single plant (P190). In future they want to do Import PO for remaining plants in the Purchase Organisation (P191,P192,P193,P190). But they have Import licence f