Urgent.... How to close short fall service PO?

Hi All,
I created one Service PO of 1 quantity. And i received 0.80 Quantity of total PO.
Now i am not going to receive further 0.2 Quantity. And i want to complete this PO.
So how i can make it like Delivery Completed PO. Where i will select option for this or what is process for this.
Regards,
Zubin

Hi,
You can actually set the Final Entry Sheet Indicator for the Service Entry sheet that has consumed 0.80 Qty in the ML81N transaction, which will in turn set the Delivery Completed Indicator in the PO.
Hope the above information would be of help to you.
Best Regards,
Vivek Paul

Similar Messages

  • How to close short PO

    Hi all
    pl. tell me how to close short PO
    eg. my PO qty. is 10 . I had received 7. Now I want to close this PO for remaining 3 qty.
    So that in  MRP this item qty. come in demand side not include in supply side

    Hi,
    To short close the PO, select each line item of that PO and tick the delivery complete check box. PO will be treated as completed only after all the items in that PO are marked delivery completed.
    Hope this would be of your help, please reward.
    Regards
    Nikhil

  • How to Close all Oracle services on Win XP?

    While I was trying to install Dev/2k on Win XP, I got a message to close all Oracle services before I proceed with the installation. In Windows NT, I simply open Services folder from the control panel and shut down the desired srvice, but there is no such a thing on Win XP...
    Any input would be helpful.
    Thank you much in advance.

    Go to Control Panel --> Administrative Tools --> Services and find all the service names starting with Oracle and right click to manually stop each one.

  • Urgent - How to call a Web Services from PLSQL - Please help

    Hello,
    I am very much new to WebServices, need to call web services through PLSQL. I have a urgent requirement, where i need to call the web services by passing from some paramters to it and the web services will return a varchar values as 'PASSED' or 'FAILED'.
    Can you please approch me the best way to start with.
    Thanks,
    Srikanth.

    Hi,
    I need to do it from PLSQL API's not from JAVA.
    I have started developing the code through UTIL_HTTP. Getting lots of error.
    Can you please guide me through these error.
    Below is the wsdl and a blcok where i am trying to retrive the value from webservice.
    Hope this will help you.
    Code:
    declare
    soap_request varchar2(30000);
    soap_respond varchar2(30000);
    http_req utl_http.req;
    http_resp utl_http.resp;
    resp XMLType;
    i integer;
    begin
    soap_request:= '<?xml version = "1.0" encoding = "UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:soapCheckRequest1 wsdl:ns1="https://isportal-qa.iss.net/exportcompliancemanager/services/ExportCheckService" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <FirstName xsi:type="xsd:string">saddam</FirstName>
    <LastName xsi:type="xsd:string">hussein</LastName>
              <companyName xsi:type="xsd:string">samueladams</companyName>
              <address1 xsi:type="xsd:string">123 APT</address1>
              <address3 xsi:type="xsd:string">Atlanta</address3>
              <city xsi:type="xsd:string">uk</city>
              <stateOrRegion xsi:type="xsd:string">GA</stateOrRegion>
              <postalCode xsi:type="xsd:string">30338</postalCode>
              <email xsi:type="xsd:string">sj@samueladams</email>
              <isoCountryCode xsi:type="xsd:string">US</isoCountryCode>
              <endUserIP xsi:type="xsd:string">209.134.168.203</endUserIP>
    </ns1:soapCheckRequest1>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    http_req:= utl_http.begin_request
    ( 'http://isportal-qa.iss.net/exportcompliancemanager/services/ExportCheckService'
    , 'POST'
    , 'HTTP/1.1'
    utl_http.set_header(http_req, 'Content-Type', 'text/xml'); -- since we are dealing with plain text in XML documents
    utl_http.set_header(http_req, 'Content-Length', length(soap_request));
    utl_http.set_header(http_req, 'SOAPAction', ''); -- required to specify this is a SOAP communication
    utl_http.write_text(http_req, soap_request);
    http_resp:= utl_http.get_response(http_req);
    DBMS_OUTPUT.PUT_LINE('-------utl_http.get_response---------------------');
    DBMS_OUTPUT.PUT_LINE('http_resp.status_code is :'||http_resp.status_code );
    DBMS_OUTPUT.PUT_LINE('http_resp.reason_phrase is :'||http_resp.reason_phrase);
    DBMS_OUTPUT.PUT_LINE('http_resp.http_version is :'||http_resp.http_version);
    DBMS_OUTPUT.PUT_LINE('http_resp.private_hndl is :'||http_resp.private_hndl);
    DBMS_OUTPUT.PUT_LINE('-------utl_http.get_response----------------------');
    utl_http.read_text(http_resp, soap_respond);
    utl_http.end_response(http_resp);
    resp:= XMLType.createXML(soap_respond);
    resp:= resp.extract('/soap:Envelop/soap:Body/child::node()'
    , 'xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"'
    i:=0;
    loop
    dbms_output.put_line(substr(soap_respond,1+ i*255,250));
    i:= i+1;
    if i*250> length(soap_respond)
    then
    exit;
    end if;
    end loop;
    end;
    Error Message
    http_resp.reason_phrase is :Internal Server Error
    http_resp.http_version is :HTTP/1.1
    http_resp.private_hndl is :0
    -------utl_http.get_response----------------------
    <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><soapenv:Fault><faultco
    apenv:Server.userException</faultcode><faultstring>org.xml.sax.SAXParseException: The prefix &quot;ns1&quot; for element &quot;ns1:soapCheckRequest1&quot; is not bound.</faultstring><detail><ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">atlcms
    2.iss.net</ns1:hostname></detail></soapenv:Fault></soapenv:Body></soapenv:Envelope>
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wsdl:definitions targetNamespace="https://isportal-qa.iss.net/exportcompliancemanager/services/ExportCheckService" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="https://isportal-qa.iss.net/exportcompliancemanager/services/ExportCheckService" xmlns:intf="https://isportal-qa.iss.net/exportcompliancemanager/services/ExportCheckService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <!--
    WSDL created by Apache Axis version: 1.3
    Built on Oct 05, 2005 (05:23:37 EDT)
    -->
    - <wsdl:message name="soapCheckResponse1">
    <wsdl:part name="soapCheckReturn" type="soapenc:string" />
    </wsdl:message>
    - <wsdl:message name="soapCheckRequest1">
    <wsdl:part name="firstName" type="soapenc:string" />
    <wsdl:part name="lastName" type="soapenc:string" />
    <wsdl:part name="companyName" type="soapenc:string" />
    <wsdl:part name="address1" type="soapenc:string" />
    <wsdl:part name="address2" type="soapenc:string" />
    <wsdl:part name="address3" type="soapenc:string" />
    <wsdl:part name="city" type="soapenc:string" />
    <wsdl:part name="stateOrRegion" type="soapenc:string" />
    <wsdl:part name="postalCode" type="soapenc:string" />
    <wsdl:part name="email" type="soapenc:string" />
    <wsdl:part name="phone" type="soapenc:string" />
    <wsdl:part name="isoCountryCode" type="soapenc:string" />
    <wsdl:part name="endUserId" type="soapenc:string" />
    <wsdl:part name="endUserIP" type="soapenc:string" />
    <wsdl:part name="endUserSession" type="soapenc:string" />
    <wsdl:part name="performGovCheck" type="xsd:boolean" />
    <wsdl:part name="sendEmailNotification" type="xsd:boolean" />
    <wsdl:part name="screeningLevelBasedOnSuppliedCountryCode" type="xsd:boolean" />
    <wsdl:part name="screeningLevelBasedOnEndUserIP" type="xsd:boolean" />
    <wsdl:part name="soundexMatch" type="xsd:boolean" />
    </wsdl:message>
    - <wsdl:message name="soapCheckRequest">
    <wsdl:part name="firstName" type="soapenc:string" />
    <wsdl:part name="lastName" type="soapenc:string" />
    <wsdl:part name="companyName" type="soapenc:string" />
    <wsdl:part name="address1" type="soapenc:string" />
    <wsdl:part name="address2" type="soapenc:string" />
    <wsdl:part name="address3" type="soapenc:string" />
    <wsdl:part name="city" type="soapenc:string" />
    <wsdl:part name="stateOrRegion" type="soapenc:string" />
    <wsdl:part name="postalCode" type="soapenc:string" />
    <wsdl:part name="email" type="soapenc:string" />
    <wsdl:part name="phone" type="soapenc:string" />
    <wsdl:part name="isoCountryCode" type="soapenc:string" />
    <wsdl:part name="endUserId" type="soapenc:string" />
    <wsdl:part name="endUserIP" type="soapenc:string" />
    <wsdl:part name="endUserSession" type="soapenc:string" />
    <wsdl:part name="performGovCheck" type="xsd:boolean" />
    <wsdl:part name="sendEmailNotification" type="xsd:boolean" />
    <wsdl:part name="screeningLevelBasedOnEndUserIP" type="xsd:boolean" />
    <wsdl:part name="soundexMatch" type="xsd:boolean" />
    </wsdl:message>
    - <wsdl:message name="soapCheckResponse">
    Thanks and Regard,
    Srikanth

  • How to send short message services(SMS) from PC desktop to Mobile  with the

    sir, i want to know " how we can send the free SMS from PC desktop to Mobiles? this is my project part of final year project and till now i m in confusion. what r the various tools and technologies will be in used for implementing the SMS system. In fact, i m a new user of wireless java. so, pls give ur valuable hands for this topic.

    First of all PC as a "stand-alone" machine does not have ablity to send SMS since there is no necessary hardware in it. You can achive this in two ways: first, connect your mobile (method depends on model) to PC and use it to send SMS. Ofcourse it won't be for free - mobile owner will have to pay for it. Second way involves using so called "SMS gateway" provided by GSM suppliers via internet. Most of them, at least in Poland, are well protected against using by machines.
    This is all I know about it. Hope it helped in some way

  • Urgent PO short fall information

    Hi all,
    Here suppose i create one PO of 10 Quantity. And i received 5 quantity of it.
    Now there is short fall. Vendor is not going to deliver rest 5 quantity.
    Here i want to close PO in Short fall. So i will go to ME22N and in Delivery Tab i will select Delivery Completed.
    So how it will effect for further process. What about rest remaining amount? how it will show in report?
    Regards,
    Zubin.S.Shaikh
    Edited by: zubin shaikh on Feb 6, 2008 11:08 AM

    hi,
    when u short close the po, by delivert completion tick, u r po shall not show in open list of PO's (WE101- selection parameter).
    how ever u can create the GR by mentioning the same PO.
    the best option is to manually reduce the PO qty, or mention the last delivery date in PO, along with short closing be activating the delivery completion tick

  • How to Close Service Purchase Orders

    Dear All,
    Please guide me how to close Service Purchase order if the part services are pending and Net value is not completed or no service entry done.
    But still we need to close the purchase order.
    Is there any manual provision in Service Entry Sheet or Purchase order ?
    Please help.
    Shailesh Panchal

    Hi,
    Activate Delivery Complete Indicator on Service Purchase Orders through configuration.
    SPRO-Materials Management-Purchasing-Purchase Order-Define Screen Layout at Document Level-PT9F-Define Screen Layout at Document Level-Optional
    Now check all the service purchase orders for which you want to close.
    Hope this will help you.
    BR,
    Patil

  • How to send SMS ( Short Message Service ) from java code

    Hi
    How to send SMS ( Short Message Service ) from java code.
    Thanks
    Gaurav

    Do you need to receive SMS? If you need to receive SMS, you will need to host your own GSM device or modem so that people can send you SMS.
    If not, you can just use internet SMS gateways like clickatell as mentioned above will do the work, and post to them by HTTP, XML or email. The cost is about 6-8 cents per SMS. There are cheaper services, but not always reliable. If you need to host your own GSM device, you can use software like http://www.kannel.org (GPL Open Source) or http://www.visualgsm.com. Alternatively, you may obtain a shortcode from your Telco - but these come with monthly subscription of maybe one or two hundreds.
    Regards,
    Joshua
    <SMS Gateway>@Expert

  • How can I get a service for new powerbook 15" 1.67 screen?

    I would like to know how I can get a service for my brand new PB15" screen.
    Today I have read an message on the Korean apple forum that New unit of 15" 1.67 doesn't have any line problem.
    So, I really want to know whether it is true or not.
    If it is, Can I get an exchange for my new 15" 1.67 in India?
    Could you help me Apple?
    I bought it in Korea 15,Nov, 2005 and Now I am in Mumbai India.
    There is a apple international Mumbai in India.
    I have a 1 year world worranty.
    If the new unit doesn't have any line problem, It means that mine has a problem.
    Now I am falling in love with powerbook 15" 1.67 which is my first Mac in my life except line problem.
    How can I get a service for it.
    Please Help me.

    Yes I have read of other reports from people saying theirs are fine. I am really looking forward to purchashing one but I do not want to take a 2000 dollar chance that I might end up with a bad screen. I am still waiting for apple to make an announcement. I have also begun seing reports on some "news like" websites but not really the major ones.

  • How to install the SAPRouter service on a Windows 2003 Server?

    Hi, can someone please either provide me with the instructions or point me to a URL or a SAP note that describes how to install the SAPRouter service on a Windows 2003 32-bit server?
    This is fairly urgent so your assistance here would be much appreciated.
    Many thanks
    Sharon

    I tried this and I get the following error...
    'ntscmgr' is not recognized as an internal or external command, operable program or batch file.
    Any further suggestions?
    S

  • Its very urgent:How to insert data one table to another table

    Hi all,
    i am very new to oaf.
    i have employee_number(per_all_people_f) lov is there.once select the employee number and click on the submit button
    what ever select the employee number it ll move to new_operation_manager in custom table.
    plz help me how to move.
    its very urgent.
    Thanks
    Latha.
    Edited by: Latha on Dec 21, 2011 9:33 PM

    Hi Gyan,
    Sorry, i will not repate.how to close the thread.
    Gyan i have no knowledge on this issue.
    plz help me.and where to mention,data is which table to insert.
    plz send one sample code.
    its very urgent gyan.
    i wrote the am,co codes
    in am:
    public void NewoperationManagerLogic()
    ManagerCustomTableVOImpl vo1=getManagerCustomTableVO1();----> here which vo take
    OADBTransaction oadbt=getOADBTransaction();
    if(!vo1.isPreparedForExecution())
    vo1.executeQuery();
    Row row=vo1.createRow();
    vo1.insertRow(row);
    in Co processrequest:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    ManagerInformationAMImpl am=(ManagerInformationAMImpl)pageContext.getApplicationModule(webBean);
    am.invokeMethod("NewoperationManagerLogic");
    in co processform request:
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    if(pageContext.getParameter("Submit")!=null)
    ManagerInformationAMImpl am=(ManagerInformationAMImpl)pageContext.getApplicationModule(webBean);
    am.getOADBTransaction().commit();
    throw new OAException("Records Saved Sucessfully",OAException.INFORMATION);
    thanks
    latha
    Edited by: Latha on Dec 22, 2011 1:26 AM

  • How to close port 32773 in solaris 9

    Hi
    Need your kindly assistance to close port on solaris 9.
    Have done the rpcinof -p but can't found the port 32773 showing.According to my research, 32773 port is for rpc services.
    root@mcisdev # rpcinfo -p
    program vers proto port service
    100000 4 tcp 111 rpcbind
    100000 3 tcp 111 rpcbind
    100000 2 tcp 111 rpcbind
    100000 4 udp 111 rpcbind
    100000 3 udp 111 rpcbind
    100000 2 udp 111 rpcbind
    100232 10 udp 32779 sadmind
    100229 1 tcp 32775 metad
    100229 2 tcp 32775 metad
    100230 1 tcp 32776 metamhd
    100422 1 tcp 32777
    100068 2 udp 32780
    100068 3 udp 32780
    100068 4 udp 32780
    100068 5 udp 32780
    100011 1 udp 32781 rquotad
    100001 2 udp 32782 rstatd
    100001 3 udp 32782 rstatd
    100001 4 udp 32782 rstatd
    100002 2 udp 32783 rusersd
    100002 3 udp 32783 rusersd
    100002 2 tcp 32778 rusersd
    100002 3 tcp 32778 rusersd
    100008 1 udp 32784 walld
    100012 1 udp 32785 sprayd
    100024 1 udp 32786 status
    100024 1 tcp 32779 status
    100133 1 udp 32786
    100133 1 tcp 32779
    100021 1 udp 4045 nlockmgr
    100021 2 udp 4045 nlockmgr
    100021 3 udp 4045 nlockmgr
    100021 4 udp 4045 nlockmgr
    1289637086 5 tcp 32799
    1289637086 1 tcp 32799
    300598 1 udp 32813
    300598 1 tcp 32827
    805306368 1 udp 32813
    805306368 1 tcp 32827
    100249 1 udp 32814
    100249 1 tcp 32828
    Have done netstat -a | grep 32773
    root@mcisdev # netstat -a | grep -i 32773
    *.32773 Idle
    *.32773 *.* 0 0 49152 0 LISTEN
    Since we don't know the port is tie to which program or services thus we cant comment out anything in /etc/inetd.conf.
    Have do more /etc/services and the port not showing inside this file as well.
    Kindly assist on how to close the port for tcp 32773.
    Your assistance is highly appreciate.
    Thanks
    Regards
    Chew Chen Lai

    I am pretty sure rpc is a standalone daemon, and not managed by inetd. Instead check /etc/init.d/ and /etc/rc*** scripts.
    There may be some services that require rpc- nfs probably requires it (NFS v4 with kerberos authentication might not.) The idmap daemon used by nfs may also require this (not sure of the exact daemon name..)

  • How to close Co.Code in FI

    Hi,
    Can any one explain me how to close a CO.Code and merge with sometoher company code to form a new company.

    Yes it is a service from SAP SLO system landscape optimization
    I think you are asking for merging a co code
    For example if you have a co code aaaa and bbbb and at the end you want only bbbb to be left and all the data from aaaa should be in bbbb
    and there will be no trace of aaaa in your system
    Call SAP SLO service they can do it for you for $$$ they can also do
    1) Change your controlling area
    2) Merge your controlling area
    3) Merge your co code’s
    4) Change your chart of account
    System Optimization
    Modifying your SAP landscape - quickly and reliably
    Best practice solutions
    § System landscape optimization § Restructuring productive SAP systems § Spinning off corporate units § Merging productive SAP systems (R/2 and R/3) § Broad range of industries § Development partner for the SAP migration tools § Commercial and technical expert knowledge from just one supplierRead on
    Restructuring projects
    Every company is subject to changing underlying conditions. Regardless of whether the influences are internal or external, each organizational change makes it necessary to modify IT systems. Amongst other things, changes can result from redefining internal organizational structures, spinning off parts of a company, acquiring other companies, having to harmonize data, or restructuring the IT landscape.
    In live SAP systems, this gives rise to tasks such as the following:
    § Changing numbering systems (e.g. chart of accounts, material numbers, customer numbers, and vendor numbers) or key terms (e.g. the names of company codes, plant, or business areas)
    § Changing structures: combining or separating company codes or controlling areas
    § Combining or separating SAP systems
    We are a partner of SAP SLO (System Landscape Optimization) and would be pleased to share with you our expertise - in terms of both drawing up a concept and technically implementing such restructuring measures in your SAP system.
    Based on the organizational and commercial specifications of our customers, we analyze existing data, pick out suitable conversion tools, and adjust them to meet the specific needs of the project.
    Migration projects
    One of the most important steps towards operating your IT system successfully is to migrate your data quickly and reliably. There is more to this than just transferring legacy data prior to going live with your new IT system. It is also necessary to migrate data during upgrades in SAP systems that are already up and running. SAP SI is one of the most experienced SAP specialists in this field. Our migration experts played a key role in developing the SAP migration tools and have already implemented countless projects successfully.
    We offer you the following services:
    § Data transfer from R/2 and non-SAP systems
    § Concept and management consulting relating to migration
    § Migration consulting in fields relating to SAP
    § Planning and implementation of step-by-step changeovers (coexistence scenarios)
    § Modification of conversion rules to meet customer needs
    § Design and implementation of migration tests in close cooperation with the customer's departments
    Advantages for the customer
    You will enjoy end-to-end consulting services - based on both commercial and technical viewpoints - thanks to the combination of migration consulting and the expertise of SAP SI's industry center. Having already implemented a large number of complex migration and conversion projects, our conversion consultants have a wealth of experience that they can utilize to benefit you. Moreover, you can draw on the services of just one supplier for all aspects of the project - from planning to implementation and going live - allowing you to rest assured that everything will run smoothly throughout.
    SAP SI is the ideal partner to plan and implement individual conversion scenarios for you - so come to us when you need to change over your SAP systems following mergers or restructuring.
    For further details Please Contact
    Christine Hillenbrand at [email protected]
    Phone +49/3 51/48 11-4200
    Hope this helps,
    Regards,
    Ravi
    Please assign points as a way to say thanks

  • How to close Mobile Mouse Server?

    I was doing an update on the App Mobile Mouse Server and when it weas ready to install it indicated I needed to close the App before it could install the update.  The app is not in the dock and I don't know how to close it.  Help Please!!!

    Hi,
    In the field for local server you just type in the local dns name for your calendar server, mail server etc... Also select which port you want publish externally and the the correct port your service is actually using on your lan (Selected under advanced tab). Make sure your mobile access server can resolv your hostnames correctly. It should point to an local ip. If an nslookup shows your public ip, you have to correct your local dns server (This is often called split dns configuration.)
    To access this from outside your LAN you have setup NAT and permit the port you have configure your mobile access server to be the incomming port. How exactly you do that on the airport I am not sure, but I am sure it is explained in the user manual for the airport.
    I found this video about the mobile access server on youtube: http://www.youtube.com/watch?v=_VRgl2bncZU
    Hope this helps.
    Bernt

  • Open ports slow down my internet connection. How to close them? What to do?

    My MacBook Pro has massive problems with internet connectivity. At times the connection is blazingly fast, at times unbelievably slow.
    I've spoken to my internet provider who was able to inform me that my computer opens up 500-700 ports which is probably what's slowing down the network connectivity. When I'm online with the MacBook Pro, the web gets unstable – also for other connected devices like iPad etc.
    The web supporter asked me to run an anti-virus scan which I did – with no results. The problem persists. When my MacBook Pro is not online, there are approximately 15 ports open, when I log on the web that number increases to between 500 and 700.
    Is this normal?
    Can anyone tell me how to solve this issue?
    How do I figure out which application opens these ports? (and how to close them?)
    I tried logging into another user account on the computer and the problem seemed to disappear, indicating that it is caused by something run only on my user account.
    Hope someone can help me..

    Open ports don't slow down your computer. The tech support person you spoke to doesn't know what they are talking about.
    Basically, when you are using a web browser, opening a page means that the browser needs to open a connection for each element in the page (e.g., it needs to grab each picture, CSS, and JavaScript file that the page requires). This could be a couple of dozen, or it could be hundreds (and there's no telling what Flash content on the page will do). The browser tries to mitigate things a bit using a cache (you might check to make sure the cache is turned on, but this is the default setting). However, this is how all browsers work and how the whole system is designed to operate. You cannot "close" any ports, and they don't linger open, they remain open only as long as data is being transferred. This is expected and appropriate behavior.
    The most likely culprit is that you are receiving poor DNS service from your service provider. Every time the computer sees an address like 'http://www.google.com', it needs to send out a request to figure out what numerical address goes with the human-readable name. If the DNS service your system is assigned to use doesn't respond lightning-quick, your experience is going to be very sluggish.
    You might want to add an external DNS service to your list of DNS providers. Go to System Preferences > Network, select the network you are using on the left (Ethernet or AirPort), and click the 'Advanced' button. Click on the 'DNS' tab, then press the '+' button under the left panel. I would add the OpenDNS.com DNS servers. Add the following DNS addresses:
    {quote}
    208.67.222.222
    208.67.220.220
    {quote}
    Click the 'OK' button. And then the 'Apply' button to save the changes.
    That will probably fix the problem. If it doesn't the next most likely issue is either network congestion (e.g., your ISP's network is just too busy; a very common thing for small ISPs and cable Internet service), or the remote site that you are trying to contact is simply not performing so well.

Maybe you are looking for

  • Interactive Report with PL/SQL Function Source

    Is it possible to create interactive report with PL/SQL function source returing a query? If not, has anyone done any work to simulate the interactive reporting feature for a normal report using API?

  • Which is better database audit or database trigger ?

    Hello , Hope everyone is doing well............. I have a doubt , which i have mentioned below ........ Plz help me on this .... Suppose I want to track all the actions that is going to be performed on a table (example -UPDATE), like 1-> which user h

  • Purchase of a Photosmart 470

    How can I find a vendor for pricing and purchase of a Photosmart 470? I cannot find a dealer with this preoduct. HP says it is not available for on-line pruchase! Price and availability?  Similar product: Photsmart A637?

  • Problem in creation an "Experience Definition"

    Hi all. After instaling collaboration and studio, I tried to create an Experience Definition but this error appears: Error Error - An unexpected error occurred when trying to start the Editor. <!--An unexpected error occurred when trying to start the

  • Trouble Launching Music Store

    Hello out there, I have an Emac that's nearly 3 years old and has always operated on the OSX system. I've been struggling with the Music Store all day. I keep getting an error message telling me that this I don't have the program to support the proto