Please Help --Export to excel time out issue

500 Connection timed out
Hi Friends,
We have a query which runs about 3 minutes on web and  brings bach 54000 rows  , but when the user tries to export to excel It give timeout error as below.
Connection timed out (-5)
Error: -5
Version: 6020
Component: ICM
Module: icxxthr_mt.c
Line: 2467
Server: tepas0_abc_00
Detail: Connection to partner timed out
Please help me out.
Thanks a lot!

Hi,
Check the info here:
https://forums.sdn.sap.com/click.jspa?searchID=5203764&messageID=959490
There are also a lot of other threads on time out issue...
Hope this helps...

Similar Messages

  • Dear Apple, Have you fixed the 'Time out' issue with airport? It now happens to me 2-3 times a day for the past 6 months. Answers please.

    Dear Apple, Have you fixed the 'Time out' issue with airport? It now happens to me 2-3 times a day for the past 6 months. Answers please.

    We're not Apple - these boards are user-to-user.
    Your profile says 10.7.3 - try applying the 10.7.5 combo update.

  • How to avoid Time out issues in Datapump?

    Hi All,
    Iam loading one of our schema from stage to test server using datapump expdp and impdp.Its size is around 332GB.
    My Oracle server instance is on unix server rwlq52l1 and iam connecting to oracle from my client instance(rwxq04l1).
    iam running the expdp and impdp command from Oracle client using the below commands.
    expdp pa_venky/********@qdssih30 schemas=EVPO directory=PA_IMPORT_DUMP dumpfile=EVPO_Test.dmp CONTENT=all include=table
    impdp pa_venky/********@qdsrih30 schemas=EVPO directory=PA_IMPORT_DUMP dumpfile=EVPO_Test.dmp CONTENT=all include=table table_exists_action=replace
    Here export is completed and import is struck at below index building.After some time iam seeing below time out in log files
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX.
    Error:-
    VERSION INFORMATION:
    TNS for Linux: Version 11.1.0.7.0 - Production
    Unix Domain Socket IPC NT Protocol Adaptor for Linux: Version 11.1.0.7.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    TCP/IP NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    Time: 13-JAN-2012 12:34:31
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNS:operation timed out
    ns secondary err code: 12560
    nt main err code: 505
    TNS-00505: Operation timed out
    nt secondary err code: 110
    nt OS err code: 0
    Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=170.217.82.86)(PORT=65069))
    The above ip address is my unix client system(rwxq04l1) ip.
    How to see oracle client system port number?
    Please suggest me how to avoid this time out issues.Seems this time out is between oracle server and client.
    Thanks,
    Venkat Vadlamudi.

    Don't run from the client ... run from the server
    or
    if running from a client use the built-in DBMS_DATAPUMP package's API.
    http://www.morganslibrary.org/reference/pkgs/dbms_datapump.html

  • SOAP ADAPTER TIME OUT ISSUE

    We are getting the data from sql server into PI through Soap adapter.
    Till day before yesterday everything is running fine .But now it has started giving us the below error.
    there were no changes done in the interface.
    I am not able to see any error in the runtime workbench ,communication channel monitoring, message monitoring.
    This below error is giving in sql server.
    Can any PI expert explain or provide me a solution to solve this issue.
    Msg 6522, Level 16, State 1, Procedure sp_PI_WS_Backflush_Production_V2, Line 0
    A .NET Framework error occurred during execution of user-defined routine or aggregate "sp_PI_WS_Backflush_Production_V2":
    System.Net.WebException: The operation has timed out
    System.Net.WebException:
       at System.Net.HttpWebRequest.GetRequestStream()
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at PI_WS_Backflush_Production_V2.Backflush_OB_Sync_SIService.Backflush_OB_Sync_SI(BackflushRequest_DT BackflushRequest_MT)
       at PI_WS_Backflush_Production_V2.StoredProcedures.Backflush_Production_V2(String PalletNumber, String StockKeepingUnit, String ProductionPlant, String BatchNumber, DateTime ProductionDate, String Quantity, String UnitOfMeasure, String Destination, String& uState, String SAPUser, String SAPPassword)

    Time out issue could be due to the long running process in your SQL server. please check the SQL server for its performance and also check the number of http worker threads on the SQL server side where the SOAP adapter makes the call and get the request back.

  • Time out issues

    I have a program which will retrieve the accounting information, the result as like as T-code F.19, but when i execute the program it will caused time out issue, I have not idea how to solve it. Could you help. Here is the source code which cause time out. Thank!
       select * from bsis
          into corresponding FIELDS OF table it_bsis
          where bukrs in so_bukrs and
                budat in so_budat and
                augdt = '00000000' and
                dmbtr ne 0.
        loop at it_bsis.
          select single * from bseg
             where bukrs = it_bsis-bukrs and
                   belnr = it_bsis-belnr and
                   gjahr = it_bsis-gjahr and
                   buzei = it_bsis-buzei and
                   ebeln in so_ebeln and
                   matnr in so_matnr and
                   hkont in so_hkont.
          if sy-subrc = 0.
              MOVE-CORRESPONDING BSEG TO BSIS_TAB.
              BSIS_TAB-WAERS = it_bsis-WAERS.
              BSIS_TAB-BUDAT = it_bsis-BUDAT.
              BSIS_TAB-BLART = it_bsis-BLART.
              IF it_BSIS-SHKZG = 'H'.
                BSIS_TAB-DMBTR = 0 - BSEG-DMBTR.
                BSIS_TAB-DMBE2 = 0 - BSEG-DMBE2.
                BSIS_TAB-DMBE3 = 0 - BSEG-DMBE3.
                BSIS_TAB-WRBTR = 0 - BSEG-WRBTR.
              ENDIF.
              APPEND BSIS_TAB.
          endif.
        endloop.

    Avoid selecting BSEG within the it_bsis loop. BSIS will have huge data and when you do data selection for BSEG inside this loop things will only worsen.
    My points:
    BSIS:
    1. Avoid 'INTO CORESSPONDING FIELDS OF" during the bsis table fetch. Instead define your target structure with the required fields and select only those fields from the BSIS table.
    2. Make sure that only "Key fields" are used in your filter (where condition) for this BSIS table fetch.
    3. I presume your company code in selection (so_bukrs) is a mandatory field. If not suggest for mandatory option.
    BSEG:
    To avoid selection of BSEG inside the bsis loop do the following.
    1. Sort it_bsis by  bukrs belnr gjahr buzei.
    2. Move the contents of it_bsis into a temporary table of same structure, say it_bsis_tmp.
    3. delete adjacent duplicates from it_bsis_tmp comparing bukrs belnr gjahr buzei.
    4. Now use the below selection:
       select <fields required from bseg>
         from bseg
         into table it_bseg
         for all entries in it_bsis_tmp
    where bukrs = it_bsis_tmp-bukrs and
    belnr = it_bsis_tmp-belnr and
    gjahr = it_bsis_tmp-gjahr and
    buzei = it_bsis_tmp-buzei and
    ebeln in so_ebeln and
    matnr in so_matnr and
    hkont in so_hkont.
    if sy-subrc eq 0.
      sort it_bseg by bukrs belnr gjahr buzei.
    endif.
    5. Modify your loop construct as below:
    loop at it_bsis.
      read table it_bseg into wa_bseg with key bukrs = it_bsis-bukrs
                                                                  belnr = it_bsis-belnr
                                                                  gjahr = it_bsis-gjahr
                                                                  buzei = it_bsis-buzei
                                                                  binary search transporting <required fields>.
    if sy-subrc eq 0.
       move the required fields from wa_bseg to your BSIS_TAB.
      BSIS_TAB-WAERS = it_bsis-WAERS.
    BSIS_TAB-BUDAT = it_bsis-BUDAT.
    BSIS_TAB-BLART = it_bsis-BLART.
    IF it_BSIS-SHKZG = 'H'.
    BSIS_TAB-DMBTR = wa_BSEG-DMBTR * -1.
    BSIS_TAB-DMBE2 = wa_BSEG-DMBE2 * -1.
    BSIS_TAB-DMBE3 = wa_BSEG-DMBE3 * -1.
    BSIS_TAB-WRBTR = wa_BSEG-WRBTR * -1.
    ENDIF.
    APPEND BSIS_TAB.
    endif.
    endloop.

  • Windows Handheld application Time out issues.

    How to Handle Windows Handheld Application idle time out issues.

    For your reference I found something interesting stuff:
    http://www.hjgode.de/wp/2011/07/04/wm-6-5-remote-desktop-client-disconnects-after-10-minutes/comment-page-1/
    and a blog:http://blogs.msdn.com/b/raffael/archive/2009/09/11/remote-desktop-mobile-rdp-client-disconnects-after-10-minutes-of-inactivity.aspx
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • HT1689 i have my daughters iphone 3, i want to use it as an i-pod, but it keeps receiving messages from some her friends is there a way to stop this from happening, please help, my phone is maxed out and would really like the storage for music, thanks

    i have my daughters iphone 3, i want to use it as an i-pod, but it keeps receiving messages from some her friends is there a way to stop this from happening, please help, my phone is maxed out and would really like the storage for music, thanks

    It sounds like it still has her information on it, so it might be efficient to navigate to Settings, then General, then Reset, then Erase All Content and Settings. You can then set up the phone again, using your information. This way the phone will be yours, officially, and her data and information will be removed.

  • 7 Hours left :(! I hate Java Forte SO MUCH. Please help! Not much time

    7 Hours left :(! I hate Java Forte SO MUCH. Please help! Not much time
    Ok I first Installed Java Forte cause I had to a Course and the teacher gave us an Exe which was 62 MB on a Disc and i ran it and put Java Forte On My Computer. I also put a JDK program on my computer through a Java book(Got a CD with it).I could do my Java at home but there was a massive problem. I am using Windows XP and if i used java, My Computer would never shut down cause java would always be running. So this got frustrating and i decided to uninstall it.(Also the Java Plug in decided to stop my java Yahoo chat on IE).When i uninstalled it, I am not sure if i deleted the folder, Did it through control panel(Add/Remove), Or use the uninstaller, I didnt think there was an uninstaller.
    Anyway there was still some jc.java and java Web Start folders and J2SDK folder on my HDD.
    A while later I get a big Java Assignment to do, I decide to install the Java again on my Computer, I go ahead and click the exe, It takes me to an intall place, I wait, Wait impatiently for 1 hour, It just froze on the install screen. I also tryed it on my old PC which had java, It froze But before it frose it said i already had it installed (Which it wasnt anymore). So i though maybe its the CD or something. So my friend gives me his CD and i try, Yet again it stayed like that for 2 hours. I was so frustrated. I ended up Going to control panel and removed the java Web Start and deleted the J2sdk FOlder and deleted the java Plug in from where it locates it.
    I then decide to install Java again but this time it takes me to the uninstaller? Why did it try to install from this exe but after i deleted stuff both CD's Mine and my Friends take to to the uninstaller? Well anyway i decided to Uninstall it like it said"Java Forte 3 and Some other little thing" Then i waited and it said Uninstall Complete. I double click the exe on the CD again and it takes me to the uninstaller again? I was like WTF? How do i install Java? Its just the biggest pain? Why is it taking me there instead of the actuall installer?
    Also I dislike other java programs as 1, You cant Execute the code cause its only HTML compatible and or you need the JDK files accosiated with the JCreator which i cant Understand.
    Also i got Jreal and it actually worked, But there is no uninstaller for it and it has no Removeal in the Control panel? Whats up with that? Also its good how it works. But for some reason it doesnt accept the code properly as the buttons and labels just appear everywhere and stay there even if i change forms and are messed up compared to when i run it on Java Forte at School.
    Also i have a Major Problem with Jreal as it states everytime i run an Applet "Start Applet is not Initialized?" And it shows a Blank applet? Whats up with this? I got no Errors and i think it said Exit Statement:1. But It worked before then i tryed it and it does this all the time for all my Java Program Applets. So I have no idea. It really frustrates me as it was working and i did no changes to the code and it wont let me test any more :(! Why is this happenning to me?
    Please help me in the best way you can, I dont have much time, 7 Hours to be Precise to do it in!
    Please if you can help me with any problems about installing or evening trying to be able to run Jcreator(Dont understand How to link it with JDK) or any good Java Programs to download that are easy to use(I dont have enough time to read). I couldnt understand CoffeeCup as it was HTML only? and only could run as a Web Page! But any help on Any of these problems that i suffer including Jreal How to Uninstall? Plus Mainly trying to get Java Forte Runnign as that was the only one that was properly showed the correct format of my Coding Applet.

    Awww :(

  • Time out issues in globe transaction

    Hi experts,
    I have one issue that is ,...A variant ran several times in the past for monthly requirements for CAT updates is now timing out no matter how short of length of time report is set to run.
    Users are using the variants  like CAT_HCN_SLP, CAT_IF, and CAT_HCN  and populating the field "Date of Usage Decision" with a range from 15 days to as short as 1 day - and continuously having time out issues.
    This report is necessary for CAT downloads for regulatory complaince and needs to be utilized by the end of the month if not sooner.
    Thanks in Advance
    Hari

    Hi John,
    I dont know what transaction are you talking about...
    But if it is TIME_OUT.... you need to check for any OSS Notes available for this problem.
    If not send a product error message to SAP.
    There cannot be anyother solution,,,, if it is time_out.
    go ahead.

  • Please help to set the time zone in a porper way

    Dear Folks please help to set the time zone in a porper way
    select sessiontimezone from dual;
    Database: Oracle 11.2.0.2
    Operating system: AIX 5.3
    SESSIONTIMEZONE
    +00:00
    SQL> select systimestamp from dual;
    SYSTIMESTAMP
    06-NOV-12 04.21.07.438426 AM +00:00
    SQL> select dbtimezone from dual;
    DBTIME
    +00:00
    SQL> Select DBMS_SCHEDULER.get_sys_time_zone_name from dual;
    GET_SYS_TIME_ZONE_NAME
    Asia/Kuala_Lumpur
    By looking Doc ID: Note:149120.1 in Metalink:
    ALTER DATABASE <my db name> SET TIME_ZONE = 'Asia/Kuala_Lumpur'
    or
    ALTER DATABASE <my db name> SET TIME_ZONE = '+08:00'
    For reflecting the change I refreshed the db by shutdown and restart.
    but still the returning no timezone value for user schema, please help how to set the time zone in a proper way?

    SQL> conn sys/sys as sysdba
    Connected.
    DBNAME
    db
    SQL> select u.name || '.' || o.name || '.' || c.name "Col TSLTZ"
      2    from sys.obj$ o, sys.col$ c, sys.user$ u
      3   where c.type# = 231
      4     and o.obj# = c.obj#
      5     and u.user# = o.owner#;
    no rows selected
    SQL>  select DBTIMEZONE from dual;
    DBTIME
    +00:00
    SQL> alter database set time_zone='Asia/Kuala_Lumpur';
    Database altered.
    SQL> select DBTIMEZONE from dual;
    DBTIME
    +00:00
    SQL> startup force;
    ORACLE instance started.
    Total System Global Area  426852352 bytes
    Fixed Size                  1375060 bytes
    Variable Size             260048044 bytes
    Database Buffers          159383552 bytes
    Redo Buffers                6045696 bytes
    Database mounted.
    Database opened.
    SQL> select DBTIMEZONE from dual;
    DBTIMEZONE
    Asia/Kuala_LumpurRefer:
    Re: how to check db time zone
    Edited by: Ora on 5 Nov, 2012 11:36 PM

  • HT5312 Hi I am so sorry seems forgotten the answers to the security questions and I can't buy or download musics at iTunes Store , would you please help me to work this out? Thanks.

    Hi I am so sorry seems forgotten the answers to the security questions and I can't buy or download musics at iTunes Store , would you please help me to work this out? Thanks.

    Hi Bo abdulla,
    You will need to contact iTunes Support to get them reset for you:
    By phone: http://support.apple.com/kb/HT5699?viewlocale=en_US
    or by email: https://ssl.apple.com/emea/support/itunes/contact.html
    Cheers,
    GB

  • Please help with cancellation! running out of time

    i really really need to cancel my purchase of illustrator, my first month is about to be over and i am running out of time! i can't seem to be able to do it according to the proper steps, because it does not appear in my plans or downloaded items. all that appears is a free creative cloud plan which does not have the option of cancellation. according to my bank, adobe has charged me for the first month of the package, so i don't know why it does not appear in my packages. please help as soon as possible. is there no way to contact adobe other than these forums?

    Jessie,
    You may open a chat here,
    Creative Cloud support (all Creative Cloud customer service issues, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html
    or use Adobe phone Support here,
    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html
    It is 1:30 PM over there now (PST).

  • Financial Reporting exporting to Excel - Column Width Issue

    Hello Experts,
    We are having an Hyperion Financial reporting issue from long time. I spent so much time and still I couldn't able to make it work.
    I would like to take help you guys.
    Issue: In Hyperion Financial Reporting, if I change the columnA size 10 to 20 and saved the report.
    In work space, I have refreshed the report ( I do the latest timestamp), run the report and exported into excel. The Coloumn size is not changing. I have tried in many ways, Still it's not working for me.
    Could any one try and let me know whether it's working for you or not. and please advice me how to make this work if this is working for you.
    Thanks a lot for your help
    Thanks,

    Hi again,
    I am not sure if you can extract the formatting to Excel... I had also issues.
    Can you please try to retrieve the report into Excel via Smartview? Check page 136 of  http://docs.oracle.com/cd/E40248_01/epm.1112/smart_view_user.pdf
    Regards,
    Thanos

  • Time Out Issue When Converting from PDF to .doc or .dox format

    I have a couple of PDF documents that I'm trying to convert to word doc (doc or dox) format.  I subscribe to the online Adobe Export PDF.  The export always times out.  The PDF is 18.08 MB.  Does anyone have have any suggestions?

    Hi riversideredhead63,
    Are you able to convert other PDFs without issue? Here are a few things to try for starters:
    Clear your browser cache (steps vary by browser).
    If you're using a work computer, check with your IT team to confirm if you have firewall/proxy settings that restrict the ability to upload files to the Internet.
    Try another web browser.  A list of supported browsers for accessing the ExportPDF service is available here: http://www.adobe.com/acom/systemreqs/
    If those don't work, please get back to us. It would be helpful to know what sort of content is in the PDF file that you're trying to convert, and what application created the PDF. (If you don't know, choose File > Properties in Reader. The source application is listed in the middle of the dialog box.)
    I look forward to hearing back from you.
    Best,
    Sara

  • Session time out issue in Firefox 3.0 .

    I am using intranet application developed in .net framework 3.5. Users are authenticated via Windows Authentication in application.
    Issues in following steps;
    1) I am browsing application in one Firefox 3.0 browser. Simultaneously I am browsing some different site say google.co.uk in different instance of Firefox. Please note I am browsing google.co.uk in other Firefox browser not in different tab of same browser instance in which I am browsing my intranet application.
    2) Session time out in intranet application .
    3) I am starting new Firefox instance and try to open intranet site. I am again getting Session time out message.
    4) I closed all of Firefox browsers (2 instances)
    5) Start again a new browser and try to open intranet application.
    6) It is successfully opend.
    Now the pain is why I need to close all other Firefox browsers in case of session time out in one browser .Similar issue I was getting in IE 8 but they have feature like Open site with a new session .
    It would be nice if you can help in getting rid of this issue
    == This happened ==
    Every time Firefox opened
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)

    Hi Rohit,
    If you want to increase Session time : increase time in web.xml in min
    <session-config>
            <session-timeout>30</session-timeout>
        </session-config>
    and after session time out if you want to re-login to webshop then
    do following settings in XCM.
    url : http://<host>:<port>/b2b/admin/xcm/init.do
    goto -> General Application settings -> b2b -> b2bconfig.
    For reloginurl.core: value : ../init.do
    note: after session expire if your application is redirecting to https:<port>:<host>/....
    Then
    set  SSLEnabled: as false
    Restart your application
    Hope this works.
    Regards,
    Devender
    Edited by: devender on Jul 12, 2010 5:01 PM

Maybe you are looking for

  • Can not locate driver download page.

    Can not locate driver download page. Officejet Pro 8500 A909a MS Vista Ultimate 64 Bit. When using my Linux PC to try and locate drivers for another PC, the website just keeps sending me in circles and never displays the drivers to download.  Seems l

  • I want to replace HD with SSD... how can i make an OS installer DVD?

    I've got an SSD drive on the way, should be here in a few days. But the mac mini didn't come with any OS media - is there an easy way to burn myself one so I can use it to do a clean install on the new drive? I do have an external  (USB) DVD writer t

  • Does Captivate requires Tin Can to enable tracking and viewing in iPad?

    Hi Guys, I'm using Moodle 2.6 then upload Presenter SCORMs. I need to know if Captivate SCORM supports tracking in iPad. I'm an Articulate user. Articulate requires Tin Can to enable tracking and viewing in iPad. Does Captivate requires too? We need

  • Collaborative Editing

    I want to ask you all if Premiere Pro allows Collaborative Editing. If yes, how does it work on Premiere Pro? Specifically, I have two questions: - Is it possible to share files on a Central Storage along with several users? It means, an user is edit

  • Imac will not read a cd rom and I cant eject it!!!!! Help please

    I have bought yesterday a new imac 24 inch with snow leopard. I was loading my music and pictures so I inserted a cd in the drive. The icon does not appear on the desktop so I can not open it or drag it in the recycle bin. I have tried to use the eje