Procedure timed out?

We currently have a procedure that pulls data from other databaselink. This procedure takes quite a long time (2 hours+) to process and dump the data into one table. The user gets the browser timed out. Here are my questions:
•     What happens to the current procedure processing if the browser timed out or closed? Is it still running or it drops right after the browser closed?
•     Is there a way to know if the proc is still running?
•     If that process is running, is there a way we can kill it? By command line?
Your help is truly appreciated.
le9569

What happens to the current procedure processing if the browser timed out or closed? Is it still running or it drops >right after the browser closed?The session at the database will automatically close after a certain period of time, cause the database doesn't get a response from the client anymore. changes made to the database will be rolled back. This also terminates the session in the database server.
Is there a way to know if the proc is still running?check v$session
If that process is running, is there a way we can kill it? By command line?connect to the database,
alter system kill session 'sid,serial#' immediately.
identify the sid and serial# from v$session and make sure that you're killing the right session.
HTH
Anantha

Similar Messages

  • Timed Out Error while waiting for response from DB Procedure

    Hi Gurus,
    We are encountering a problem in our production environment. The system is implemented using AIA foundation pack 2.5 on SOA suite 10.1.3.4.
    We have a BPEL process A which calls an ESB Service which inturn calls BPEL Process B. In process B, we have a DB procedure call which waits for a response from
    a DB procedure. The procedure doesn't reply on time and Process B remains in waiting state to get the response from DB Procedure wherein Process A errors out by showing as "Timed Out Error".
    This issue is intermittent and we have already increased transaction-time outs in transaction-manager.xml to 7200 and ejb-orion-jar.xml to 3600.
    When we encountered this problem, we found out that there are too many connections open and when we bounced the server, everything was restored to nornal but as it is a production env. we can't do it over and over again.
    We have 2 nodes each having max connections as 100 and min. as 0.
    Is there a limit to max no. of connections or can we do something in DB side to ensure that it doesn't happen again ?
    Please suggest.
    Thanks,
    Vikas Manchanda

    Hi Gurus,
    We are encountering a problem in our production environment. The system is implemented using AIA foundation pack 2.5 on SOA suite 10.1.3.4.
    We have a BPEL process A which calls an ESB Service which inturn calls BPEL Process B. In process B, we have a DB procedure call which waits for a response from
    a DB procedure. The procedure doesn't reply on time and Process B remains in waiting state to get the response from DB Procedure wherein Process A errors out by showing as "Timed Out Error".
    This issue is intermittent and we have already increased transaction-time outs in transaction-manager.xml to 7200 and ejb-orion-jar.xml to 3600.
    When we encountered this problem, we found out that there are too many connections open and when we bounced the server, everything was restored to nornal but as it is a production env. we can't do it over and over again.
    We have 2 nodes each having max connections as 100 and min. as 0.
    Is there a limit to max no. of connections or can we do something in DB side to ensure that it doesn't happen again ?
    Please suggest.
    Thanks,
    Vikas Manchanda

  • Connection timed out when running snpsftp (Odisftp) jython procedure

    Hi All,
    Let me know the solution if any one of you have come across the "Connection Timed Out" error when running a jython snpsftp (Odisftp) procedure to exchange/import the files on a FTP server to the local system (Target Server).
    This procedure was working fine until the IP Address of the Target Server was changed due to change to physical location of the Target server itself.
    Since we are moving office to a different building the Target server which hosts the ODI Agent running as windows service are moved and since then the FTP Jython procedure is not working.
    I can successfully ping the IP Address of the FTP server from the Target server that has got the new IP, but when running the FTP procedure from ODI tool ends up with Connection Timed Out error.
    Thanks for providing some tips/ideas for resolving this urgent issue.
    Thanks,
    Raghu

    Please check the hosts file for the new IP,
    Also cehck the Agnet service login for wheter the user has the privledges to do a FTP access to the server or also connect to the server
    Reshma

  • Procedure execution is timing out

    Hi,
    When executing the following procedure, it is timing out.
    Any body help me out.
    Regards,
    SS.
    CREATE OR REPLACE procedure get_allorder_details
    FromDate                in varchar2,
    ToDate               in varchar2,
    LinesType               in varchar2,
    ordernumber               out arr_varchar,
    ordertype               out arr_varchar,
    originatingsystem          out arr_varchar,
    order_linenumber      out arr_varchar,
    revisionnumber          out arr_varchar,
    symphonycompletiondate     out arr_varchar,
    oraclereceivedate      out arr_varchar,
    oracleimportdate      out arr_varchar,
    importstatus          out arr_varchar,
    extended_price          out arr_varchar,
    quantity               out arr_varchar,
    modelnumber               out arr_varchar)
    is
    total               number;
    err_num          number;
    --LinesType            varchar2(8);
    err_msg          VARCHAR2(800);
    cursor allorderdetails is
    select ordernbr, linenbr,revisionnbr,ordertype, originatingsystem, IMPORT_STATUS,
    to_char(new_time(creation_date,'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') orderdate,to_char(extendedprice/100) extendeprice,qty,modelstring
    from [email protected]_ORADBTST2.NA.EMERSONPROCESS.COM
    where trunc(creation_date) between to_date(FromDate, 'MM/DD/YYYY')
    and to_date(ToDate, 'MM/DD/YYYY')
    and pluginid = 4
    order by ordernbr asc,linenbr asc,revisionnbr asc;
    cursor addorderdetails is
    select ordernbr, linenbr,revisionnbr,ordertype, originatingsystem ,IMPORT_STATUS,
    to_char(new_time(creation_date,'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') orderdate,to_char(extendedprice/100) extendeprice,qty,modelstring
    from [email protected]_ORADBTST2.NA.EMERSONPROCESS.COM
    where trunc(creation_date) between to_date(FromDate, 'MM/DD/YYYY')
    and to_date(ToDate, 'MM/DD/YYYY')
    and pluginid = 4
    and revisionnbr=1
    order by ordernbr asc,linenbr asc,revisionnbr asc;
    cursor latestlines is
    select fjl.ordernbr, fjl.linenbr, fjl.revisionnbr,fjl.ordertype, fjl.originatingsystem, fjl.IMPORT_STATUS,
    to_char(new_time(fjl.creation_date,'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') orderdate,to_char(fjl.extendedprice/100) extendeprice,
    fjl.qty,fjl.modelstring               
    from [email protected]_ORADBTST2.NA.EMERSONPROCESS.COM fjl,               
         (select ordernbr, linenbr, max(revisionnbr) revnum          
         from [email protected]_ORADBTST2.NA.EMERSONPROCESS.COM          
         where pluginid = 4
         and trunc(creation_date) between to_date(FromDate, 'MM/DD/YYYY')
         and to_date(ToDate, 'MM/DD/YYYY')
         group by ordernbr, linenbr) plainlist
    where fjl.ordernbr = plainlist.ordernbr     
    and fjl.linenbr = plainlist.linenbr     
    and fjl.revisionnbr = plainlist.revnum     
    and trunc(creation_date) between to_date(FromDate, 'MM/DD/YYYY')     
    and to_date(ToDate, 'MM/DD/YYYY')     
    and fjl.pluginid = 4     
    order by ordernbr asc, linenbr asc, revisionnbr asc;
    cursor cancelorderdetails is
    select ordernbr, linenbr,revisionnbr,ordertype, originatingsystem, IMPORT_STATUS,
    to_char(new_time(creation_date,'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') orderdate,to_char(extendedprice/100) extendeprice,qty,modelstring
    from [email protected]_ORADBTST2.NA.EMERSONPROCESS.COM
    where trunc(creation_date) between to_date(FromDate, 'MM/DD/YYYY')
    and to_date(ToDate, 'MM/DD/YYYY')
    and pluginid = 4
    and revisionnbr > 1
    order by ordernbr asc,linenbr asc,revisionnbr asc;
    alllinescounter allorderdetails%ROWTYPE;
    addlinescounter addorderdetails%ROWTYPE;
    latestlinescounter latestlines%ROWTYPE;
    cancellinescounter cancelorderdetails%ROWTYPE;
    begin
    --LinesType := 'ADD';
    ordernumber          := arr_varchar();
    ordertype          := arr_varchar();
    originatingsystem     := arr_varchar();
    order_linenumber := arr_varchar();
    symphonycompletiondate := arr_varchar();
    oraclereceivedate := arr_varchar();
    oracleimportdate := arr_varchar();
    importstatus     := arr_varchar();
    extended_price     := arr_varchar();
    quantity          := arr_varchar();
    modelnumber          := arr_varchar();
    revisionnumber     := arr_varchar();
    total               := 0;               
    -- Fetch up to "batch_size" rows into PL/SQL table,
    IF UPPER(LinesType) = 'ALL' then
    --DBMS_OUTPUT.PUT_LINE(' Exception occured ' );
    FOR alllinescounter IN allorderdetails
    LOOP
    total := total + 1;
         BEGIN
         ordernumber.extend(1);     
         order_linenumber.extend(1);
         ordertype.extend(1);
         originatingsystem.extend(1);
         revisionnumber.extend(1);
         oracleimportdate.extend(1);
         importstatus.extend(1);
         extended_price.extend(1);
         quantity.extend(1);
         modelnumber.extend(1);     
         ordernumber(total) := alllinescounter.ORDERNBR;
         order_linenumber(total) := alllinescounter.LINENBR;
         ordertype(total) := alllinescounter.ORDERTYPE;
         originatingsystem(total) := alllinescounter.ORIGINATINGSYSTEM;
         oracleimportdate(total) := alllinescounter.orderdate;
         importstatus(total) := alllinescounter.IMPORT_STATUS;
         extended_price(total) := alllinescounter.extendeprice;
         quantity(total) := alllinescounter.qty;
         revisionnumber(total) := alllinescounter.revisionnbr;
         modelnumber(total) := alllinescounter.modelstring;
         EXCEPTION WHEN OTHERS THEN
              err_num := SQLCODE;     
         --     DBMS_OUTPUT.PUT_LINE(' Exception occured ' || err_num);     
         END;
         BEGIN
              symphonycompletiondate.extend(1);
              SELECT TO_CHAR(new_time(file_ts(FILENAME),'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') symphonycompletiondate
              into symphonycompletiondate(total)
              FROM XML1_XACTS
              WHERE
              DIVISION = '4' AND
              ordernbr = ordernumber(total) and ordertype = ordertype(total)
              and LINENBR = order_linenumber(total)
              and revisionnbr= revisionnumber(total);          
         EXCEPTION WHEN OTHERS THEN
              symphonycompletiondate(total) := 'NULL';               
         END;
         BEGIN
              oraclereceivedate.extend(1);
              SELECT TO_CHAR(new_time(file_ts(FILENAME),'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') oraclereceiveddate
              into oraclereceivedate(total)
              FROM XML14_XACTS
              WHERE
              upper(systemname) = 'MFG203' AND
              ordernbr = ordernumber(total)
              and LINENBR = order_linenumber(total)
              and revisionnbr= revisionnumber(total);          
         EXCEPTION WHEN OTHERS THEN
              oraclereceivedate(total) := 'NULL';               
         END;     
    END LOOP;
    elsif UPPER(LinesType) = 'ADD' then
    FOR addlinescounter IN addorderdetails
    LOOP
    total := total + 1;
         BEGIN
         ordernumber.extend(1);     
         order_linenumber.extend(1);
         ordertype.extend(1);
    originatingsystem.extend(1);
         oracleimportdate.extend(1);
         importstatus.extend(1);
         extended_price.extend(1);
         quantity.extend(1);
         modelnumber.extend(1);
         revisionnumber.extend(1);
         ordernumber(total) := addlinescounter.ORDERNBR;
         order_linenumber(total) := addlinescounter.LINENBR;
         ordertype(total) := addlinescounter.ORDERTYPE;
         originatingsystem(total) := addlinescounter.ORIGINATINGSYSTEM;
         oracleimportdate(total) := addlinescounter.orderdate;
         importstatus(total) := addlinescounter.IMPORT_STATUS;
         extended_price(total) := addlinescounter.extendeprice;
         quantity(total) := addlinescounter.qty;
         revisionnumber(total) := addlinescounter.revisionnbr;
         modelnumber(total) := addlinescounter.modelstring;
         EXCEPTION WHEN OTHERS THEN
              err_num := SQLCODE;     
         --     DBMS_OUTPUT.PUT_LINE(' Exception occured ' || err_num);     
         END;
         BEGIN
              symphonycompletiondate.extend(1);
              SELECT TO_CHAR(new_time(file_ts(FILENAME),'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') symphonycompletiondate
              into symphonycompletiondate(total)
              FROM XML1_XACTS
              WHERE
              DIVISION = '4' AND
              revisionnbr =1 and
              ordernbr = ordernumber(total) and ordertype = ordertype(total)
              and LINENBR = order_linenumber(total);
         EXCEPTION WHEN OTHERS THEN
              symphonycompletiondate(total) := 'NULL';               
         END;
         BEGIN
              oraclereceivedate.extend(1);
              SELECT TO_CHAR(new_time(file_ts(FILENAME),'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') oraclereceiveddate
              into oraclereceivedate(total)
              FROM XML14_XACTS
              WHERE
              upper(systemname) = 'MFG203' AND
              ordernbr = ordernumber(total) and
              revisionnbr =1 and
              LINENBR = order_linenumber(total);          
         EXCEPTION WHEN OTHERS THEN
              oraclereceivedate(total) := 'NULL';               
         END;     
    END LOOP;
    elsif UPPER(LinesType) = 'NET' then
    DBMS_OUTPUT.PUT_LINE(' Exception occured ' );
    FOR latestlinescounter IN latestlines
    LOOP
    total := total + 1;
         BEGIN
         ordernumber.extend(1);     
         order_linenumber.extend(1);
         ordertype.extend(1);
         originatingsystem.extend(1);
         oracleimportdate.extend(1);
         importstatus.extend(1);
         extended_price.extend(1);
         quantity.extend(1);
         modelnumber.extend(1);
         revisionnumber.extend(1);
         ordernumber(total) := latestlinescounter.ORDERNBR;
         order_linenumber(total) := latestlinescounter.LINENBR;
         ordertype(total) := latestlinescounter.ORDERTYPE;
         originatingsystem(total) := latestlinescounter.ORIGINATINGSYSTEM;
         oracleimportdate(total) := latestlinescounter.orderdate;
         importstatus(total) := latestlinescounter.IMPORT_STATUS;
         extended_price(total) := latestlinescounter.extendeprice;
         quantity(total) := latestlinescounter.qty;
         revisionnumber(total) := latestlinescounter.revisionnbr;
         modelnumber(total) := latestlinescounter.modelstring;
         EXCEPTION WHEN OTHERS THEN
              err_num := SQLCODE;     
         --     DBMS_OUTPUT.PUT_LINE(' Exception occured ' || err_num);     
         END;
         BEGIN
              symphonycompletiondate.extend(1);
              SELECT TO_CHAR(new_time(file_ts(FILENAME),'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') symphonycompletiondate
              into symphonycompletiondate(total)
              FROM XML1_XACTS
              WHERE
              DIVISION = '4' AND
              ordernbr = ordernumber(total) and ordertype = ordertype(total)
              and LINENBR = order_linenumber(total)
              and revisionnbr= revisionnumber(total);
         EXCEPTION WHEN OTHERS THEN
              symphonycompletiondate(total) := 'NULL';               
         END;
         BEGIN
              oraclereceivedate.extend(1);
              SELECT TO_CHAR(new_time(file_ts(FILENAME),'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') oraclereceiveddate
              into oraclereceivedate(total)
              FROM XML14_XACTS
              WHERE
              upper(systemname) = 'MFG203' AND
              ordernbr = ordernumber(total)
              and LINENBR = order_linenumber(total)
              and revisionnbr= revisionnumber(total);
         EXCEPTION WHEN OTHERS THEN
              oraclereceivedate(total) := 'NULL';               
         END;     
    END LOOP;
    elsif UPPER(LinesType) = 'CHANGE' then
    FOR cancellinescounter IN cancelorderdetails
    LOOP
    total := total + 1;
         BEGIN
         ordernumber.extend(1);     
         order_linenumber.extend(1);
         ordertype.extend(1);
         originatingsystem.extend(1);
         oracleimportdate.extend(1);
         importstatus.extend(1);
         extended_price.extend(1);
         quantity.extend(1);
         modelnumber.extend(1);
         revisionnumber.extend(1);
         ordernumber(total) := cancellinescounter.ORDERNBR;
         order_linenumber(total) := cancellinescounter.LINENBR;
         ordertype(total) := cancellinescounter.ORDERTYPE;
         originatingsystem(total) := cancellinescounter.ORIGINATINGSYSTEM;
         oracleimportdate(total) := cancellinescounter.orderdate;
         importstatus(total) := cancellinescounter.IMPORT_STATUS;
         extended_price(total) := cancellinescounter.extendeprice;
         quantity(total) := cancellinescounter.qty;
         revisionnumber(total) := cancellinescounter.revisionnbr;
         modelnumber(total) := cancellinescounter.modelstring;
         EXCEPTION WHEN OTHERS THEN
              err_num := SQLCODE;     
         --     DBMS_OUTPUT.PUT_LINE(' Exception occured ' || err_num);     
         END;
         BEGIN
              symphonycompletiondate.extend(1);
              SELECT TO_CHAR(new_time(file_ts(FILENAME),'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') symphonycompletiondate
              into symphonycompletiondate(total)
              FROM XML1_XACTS
              WHERE
              DIVISION = '4' AND
              revisionnbr = revisionnumber(total) and
              ordernbr = ordernumber(total) and ordertype = ordertype(total)
              and LINENBR = order_linenumber(total);
         EXCEPTION WHEN OTHERS THEN
              symphonycompletiondate(total) := 'NULL';               
         END;
         BEGIN
              oraclereceivedate.extend(1);
              SELECT TO_CHAR(new_time(file_ts(FILENAME),'CDT','MST')+60/1440,'MM/DD/YYYY hh24:mi:ss') oraclereceiveddate
              into oraclereceivedate(total)
              FROM XML14_XACTS
              WHERE
              upper(systemname) = 'MFG203' AND
              ordernbr = ordernumber(total) and
              revisionnbr =revisionnumber(total) and
              LINENBR = order_linenumber(total);          
         EXCEPTION WHEN OTHERS THEN
              oraclereceivedate(total) := 'NULL';               
         END;     
    END LOOP;
    end if;      
    exception
    when others then
    err_num := SQLCODE;
    err_msg := '[GET_ORDER_DETAILS] procedure failed'||
    chr(13)||chr(10)||
    'With error: '||chr(13)||chr(10)||substr(SQLERRM,1,450);
    end;
    /

    PLSQL debugging is a feature of SQLDeveloper (free download from Oracle), you could step through your procedure and see what takes the time, do an explain plan on the query say how many rows are in the tables... and report back.
    Turloch

  • Request timed out because there has been no reply from the server in 600000

    Issue:
    Request timed out because there has been no reply from the server in 600000
    Scenario:
    1. All the crystal reports are designed by using Crystal Report 2008 Version -- 12.3.0.601
    2. All reports are uploaded to CMC (SAP Business Objects Enterprise XI, Product: 12.1.0)
    3. using Front-End .net Winform
    4. Crystal Report is binding is done using Business View Manager (since having more than one databases)
    5. Business View Manager Connects to Oracle using "Oracle Server" connection
    6. Loading reports as follows
    string queryString = string.Empty;
    SessionMgr sessionMgr = new SessionMgr();
    EnterpriseSession enterpriseSession = sessionMgr.Logon(userName, userPassword, serverName, authType);
    EnterpriseService enterpriseService = enterpriseSession.GetService("InfoStore");
    InfoStore infoStore = new InfoStore(enterpriseService);
    enterpriseService = enterpriseSession.GetService("PSReportFactory");
    Object psrfObject = enterpriseService.Interface;
    PSReportFactory psReportFactory = (PSReportFactory)psrfObject;
    queryString = "Select SI_CUID, SI_ID, SI_NAME, SI_PARENTID From CI_INFOOBJECTS " + "Where SI_PROGID='CrystalEnterprise.Report' " + "And SI_ID=" + ReportId;
    InfoObjects infoObjects = infoStore.Query(queryString);
    InfoObject infoObject = infoObjects[1];
    ReportDocument crDoc = new ReportDocument();
    crDoc.Load(infoObject, enterpriseSession);
    7. All the reports are getting loaded properly and i am able to dynamically set the report parameters
    8. After executing report, some of the reports take more than 10 minutes, due to which shows following error
    Request timed out because there has been no reply from the server in 600000
    Note i have done following:
    1. I have checked stored procedure running through oracle for more than 10 minutes (1 hr, 2 hrs)
    2. Tried simply running crystal report without front-end running perfectly more than 10 minutes (1 hr, 2 hr)
    3. When i run .net winform application for specific reports which takes long time, gives "Request timed out because there has been no reply from the server in 600000"
    Also i have done lot much R&D and spent almost weeks to get resolution but not getting any solution out of it, please help me in this case
    HKEY_LOCAL_MACHINESOFTWAREBusiness ObjectsSuite 12.0Report Application ServerClient SDKCorbaAdapterWaitReplyTimeout = 600000 and HKEY_LOCAL_MACHINESOFTWAREBusiness ObjectsSuite 12.0Report Application ServerInprocServerEnterpriseRequ
    AS per following URL
    Session timeout
    1. Log into Central Management Console
    2. Go to server,right click on Crystal report processing server and select properties,change the idle connection time out to 60 minutes
    3. Also right click on crystal report cache server and select properties ,change the idle connection time out to 60 minutes
    4. Restart Crystal Report Processing Server and Crystal Report Cache Server
    5. Change the session time out to 60 minutes in web.xml of INfoviewApp,InfoViewAppAction,PlatformSerivces and CrystalReports.
    6. Navigate to the following location
    <BO Install Dir>Business ObjectsTomcat55webappsInfoViewAppWEB-INF
    7. Edit the web.xml in notepad and search for the below lines.
    <session-config>
    <session-timeout>20</session-timeout> <!-- 20 minutes for session objects -->
    </session-config>
    8. Increase the Session-Timeout parameter to 20 to 60 minutes in web.xml . Save this file
    9. Repeat the same for the web.xml file in the InfoViewAppActions folder in <BO Install Dir>Business ObjectsTomcat55webappsInfoViewAppActionsWEB-INF
    10. Repeat the same for the web.xml file in the PlatformSerivces folder in <BO Install Dir>Business ObjectsTomcat55webappsPlatformSerivcesWEB-INF
    11. Repeat the same for the web.xml file in the CrystalReports folder in <BO Install Dir>Business ObjectsTomcat55webappsInfoViewAppActionsWEB-INF
    12. Restart the tomcat server
    Still i am getting same error, please help me, if you have any idea, clue with respect to this error on winform

    This error is specific to RAS. The default CORBA request timeout is 10 minute = 600000 ms. When the RAS SDK does not get the reponse back from RAS server in 600000 ms it throws this message. Why it works in InfoView\CMC what I believe you refer to as "Front End' application is because InfoView\ CMC don't use RAS.
    1. First make sure that a smaller report wich runs pretty fast ( 1-2 min) works. This will confirm that there is no connectivitiy issues between RAS and RAS SDK.
    2. If you get the efrror for every single report, even the smaller ones, make sure the box running RAS and RAS SDK code( in case they are 2 different) can ping each other with IP, shortname and FQDN. If there is a firewall between them, the RAS port needs to be opened for bidirectional communication. By default RAS chooses a random port for communication with SDK but within CMC you can configure it to use a specific port and open it.
    3. If the issue is specific only to reports that are long running, typically more than 10 minutes, then you need to inclease the CORBA timeout to a value more than what the reports typically would take to process. This is done on client code side or IIS in this case.
    Here are the steps:
    Make the following changes on the application server/system.
    Open RegEdit by going to Start > Run and typing in regedit.exe. Then click Ok.
    Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.5\Report Application Server\Client SDK\CorbaAdapter
    Change the value of SendRequestTimeout(ms) to 100000.
    Change the value of WaitReplyTimeout(ms) to 6,000,000 ms. The default value is 600,000 ms and may not be long enough.
    Restart IIS by going to Start > Run and typing in iisreset. Then click Ok.
    Retry the failing application.
    See note:  1296656
    This error should be easy to fix
    Edited by: Aasavari Bhave on Feb 2, 2012 11:20 AM

  • UTL_HTTP & ORA-12535: TNS:operation timed out

    Hi ,
    I have written the following piece of code to validate if the Web Service is accessible using UTL_HTTP. If I schedule this procedure from Unix (as a cron job) OR try the modified version through Oracle Portal
    I get intermittent Timeout errors (Exception - -12535-ORA-12535: TNS:operation timed out).
    However if I schedule the same package as a dbms_job it always seems to work fine.
    Does anyone have any idea as to what/where the problem could be?
    create or replace procedure abc
    as
    v_ret varchar2(4000);
    begin
    SELECT UTL_HTTP.Request('https://some_external_url', NULL,'correct_wallet_path', 'correct_wallet_password') into v_ret FROM dual;
    end;
    Edited by: ricky90897 on Oct 9, 2008 5:37 AM

    It looks like you won't be able to test web service calls on apex.oracle.com. see this WebService on apex.oracle.com
    Edited by: tfa on Mar 18, 2013 9:59 AM

  • Connection Timed Out while using sqldeveloper Debugger

    I am using sqsldeveloper version Version 1.5.1
    I am not able to debug my procedure test_proc in sqldeveloper.
    I am using sqldeveloper over a VPN network.
    I also use the option Tools->Preferences->Debugger->Prompt for Debugger Host for Database Debugging
    Debug Port Range: Min: 4000 Max:9000
    I have also disabled the firewall .
    I am getting the the error operation timed out on calling
    DBMS_DEBUG_JDWP.CONNECT_TCP procedure.
    I am using the correct IP address '61.17.78.93'..
    Please help
    Error starting at line 1 in command:
    CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '61.17.78.93', '4000' )
    Error report:
    SQL Error: ORA-30683: failure establishing connection to debugger
    ORA-12535: TNS:operation timed out
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 1
    30683. 00000 - "failure establishing connection to debugger"
    *Cause:    An error was indicated when trying to establish a connection
    to a debugger. Usually a TNS error will display along with
    this message to further explain the problem, although this
    TNS error will likely be hidden if you choose to trap the error.
    *Action:   Correct the indicated parameter value and try again.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Here are the exact details of the error;
    Connecting to the database SPTRCTE1.world_confirmation_cte1.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '61.17.78.93', '4000' )
    ORA-30683: failure establishing connection to debugger
    ORA-12535: TNS:operation timed out
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 1
    Process exited.
    Disconnecting from the database SPTRCTE1.world_confirmation_cte1.

  • Error: Your session has ended or timed out. Please login again. FDM error on "Export"

    On logging into FDM URL, with a specific user on clicking "Export Fish" FDM Processes gives the options for load but on the other hand when we click on "Export" from the left panel(navigation). "It throws Your session has ended or timed out. Please login again." Quite anomalous behaviour ,when I try with admin this issue does not exist. In shared service this user has the access for that group with WRITE permissions.
    Other relevant info:
    Version: 11.1.2.3
    DB: SQL Server
    Project: Upgraded
    User type: Intermediate
    Target: HFM
    Tried creating a new native user with all admin priv on the FDMApp,HFM app but the issue did not get resolved.
    It is peculiar and unable to gain any pointers.
    Extra Info:
    On clicking the Export option on left panel. It shows Processing,please wait and logs out with error as session timeout.
    Please help.
    Admin Error logs. Tools -> View Error as admin user
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:44] **
    ERROR:
    Code............................................. 3709
    Description...................................... The connection cannot be used to perform this operation. It is either closed or invalid in this context.
    SELECT tPOVPartition.* From tPOVPartition Where ((PartName) = '')
    Procedure........................................ clsDataAccess.farsSnap
    Component........................................ upsWDataWindowDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:44] **
    ERROR:
    Code............................................. 3709
    Description...................................... Data access error.
    Procedure........................................ clsSQLMgr.fPartition
    Component........................................ upsWObjectsDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:44] **
    ERROR:
    Code............................................. 3709
    Description...................................... Data access error.
    Procedure........................................ clsPOVMgr.fCheckLocProf
    Component........................................ upsWObjectsDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:44] **
    ERROR:
    Code............................................. 3709
    Description...................................... Data access error.
    Procedure........................................ clsSQLMgr.fMapItems
    Component........................................ upsWObjectsDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:44] **
    ERROR:
    Code............................................. 3709
    Description...................................... The connection cannot be used to perform this operation. It is either closed or invalid in this context.
    SELECT tSecObjectItems.AppType, tSecObjectItems.AppObject, tSecObject_Locale.AppObjectCaption, tSecObject.AppObjectSeq, tSecObjectItems.AppObjItem, tSecObjectItems.AppObjControl, tSecObjectItems.AppObjControlType, tSecObjectItems_Locale.AppObjControlCaption, tSecObjectItems_Locale.AppObjControlToolText, tSecObjectItems.AppObjControlLevel, tSecObjectItems.AppObjControlIndex, tSecObjectItems_Locale.LangKey FROM tSecObject INNER JOIN tSecObjectItems ON tSecObject.AppObject = tSecObjectItems.AppObject AND tSecObject.AppType = tSecObjectItems.AppType INNER JOIN tSecObject_Locale ON tSecObject.AppType = tSecObject_Locale.AppType AND tSecObject.AppObject = tSecObject_Locale.AppObject INNER JOIN tSecObjectItems_Locale ON tSecObjectItems.AppType = tSecObjectItems_Locale.AppType AND tSecObjectItems.AppObject = tSecObjectItems_Locale.AppObject And tSecObjectItems.AppObjItem = tSecObjectItems_Locale.AppObjItem WHERE (((tSecObjectItems.AppType)=N'WebClient') AND ((tSecObjectItems.AppObject)=N'Maps Form') AND ((tSecObjectItems_Locale.AppObjControlCaption)<>N'-') AND ((tSecObject_Locale.LangKey)=1033) AND ((tSecObjectItems_Locale.LangKey)=1033)) ORDER BY tSecObject.AppObjectSeq, tSecObjectItems.AppObjItem
    Procedure........................................ clsDataAccess.farsSnap
    Component........................................ upsWDataWindowDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:45] **
    ERROR:
    Code............................................. 3709
    Description...................................... Data access error.
    Procedure........................................ clsSQL.fSecItemsForObject
    Component........................................ upsWDataWindowDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:45] **
    ERROR:
    Code............................................. 3709
    Description...................................... The connection cannot be used to perform this operation. It is either closed or invalid in this context.
    SELECT tCtrlOption.* From tCtrlOption Where (((tCtrlOption.OptionKey) = N'Period')) ORDER BY tCtrlOption.OptionOrder
    Procedure........................................ clsDataAccess.farsSnap
    Component........................................ upsWDataWindowDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:45] **
    ERROR:
    Code............................................. 3709
    Description...................................... Data access error.
    Procedure........................................ clsSQL.fOptionListForKey
    Component........................................ upsWDataWindowDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:45] **
    ERROR:
    Code............................................. 3709
    Description...................................... Data access error.
    Procedure........................................ clsDBTools.fGlobalOptionGet
    Component........................................ upsWDataWindowDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:26:45] **
    ERROR:
    Code............................................. 3709
    Description...................................... Data access error.
    Procedure........................................ clsDBTools.fGlobalOptionGetVA
    Component........................................ upsWDataWindowDM
    Version.......................................... 1112
    Thread........................................... 11708
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 0
    Location Seg..................................... 0
    Category.........................................
    Category ID...................................... 0
    Period...........................................
    Period ID........................................ 12:00:00 AM
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:34:01] **
    ERROR:
    Code............................................. 3098
    Description...................................... CONNECT Action Adapter Script failed to load!
    Procedure........................................ clsBlockProcessor.ActConnect
    Component........................................ upsWBlockProcessorDM
    Version.......................................... 1112
    Thread........................................... 13632
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 770
    Location Seg..................................... 41
    Category......................................... Source Actual
    Category ID...................................... 12
    Period........................................... Oct - 2013
    Period ID........................................ 10/31/2013
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2013-11-15 10:34:01] **
    ERROR:
    Code............................................. 3098
    Description...................................... CONNECT Action Adapter Script failed to load!
    Procedure........................................ clsBlockProcessor.ActExport
    Component........................................ upsWBlockProcessorDM
    Version.......................................... 1112
    Thread........................................... 13632
    IDENTIFICATION:
    User............................................. hypadmpr
    Computer Name.................................... mycomputerName
    App Name......................................... FDMAPP
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... devsql1
    Database Name.................................... HYP_FDMAPP
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... HOME~FURNISHING-TB
    Location ID...................................... 770
    Location Seg..................................... 41
    Category......................................... Source Actual
    Category ID...................................... 12
    Period........................................... Oct - 2013
    Period ID........................................ 10/31/2013
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False

    Can you check the Object Security for the Analysis Menu and Export button and see if it is restricted?
    Also, is this a Oracle DB?  IF so, has the following 32 bit Oracle Client components been isntalled:
    Oracle Objects for OLE
    Oracle Data Provider for .NET
    Oracle Providers for ASP.NET

  • HT4623 I am having trouble with my iPod 5th gen after iOS update. It's in recovery mode and iTunes keeps timing out when I try to restore it. What should I do???

    I am having trouble with my iPod 5th gen after iOS update. It's in recovery mode and iTunes keeps timing out when I try to restore it. What should I do??? If possible, I would also like to keep all of my data.

    Maybe this will help:
    Troubleshooting
    As with all clickwheel iPods, you can reset this iPod by first toggling the hold switch on and off and then simultaneously pressing the select (center) and menu buttons for approximately 5-10 seconds. This is a common fix should your iPod behave unexpectedly or lock up. Once reset, the iPod should display an Apple logo for a few seconds before showing the main menu. This procedure is similar to rebooting a computer and damages none of your music or data.

  • Processing in Warehouse timed out; processing steps mising

    Hi All,
    Recently  i am getting error Processing in warehouse timed out When iam loading the Master data from flat file to BW .
    Inspite of loading many times getting the same error.
    Earlier it was perfect.
    What are the possible reasons for the same?
    Can anybody help?
    Regards,
    C.V.
    Message was edited by: P.C.V.

    Hi Maik,
    I am new  to this support job. Could u please tell me step by step to check ale and trfc status for the loads and  where i have to check for Processing status?
    actually iam extracting data from Flat file.
    Following is the error message in Status TAB in Monitoring
    Processing in Warehouse timed out; processing steps mising
    Diagnosis
    Processing the request in the BW system is taking a long time and the processing step has still not been executed.
    System response
    <DS:DE.RSCALLER>Caller  is still missing.
    Procedure
    Check in the process overview in the BW system whether processes are running in the BW system under the background user.
    If this is not the case, check the short dump overview in the BW system.

  • Integration Broker - Connection Timed Out Error

    We are getting below error when running a job that access another app sever from PeopleSoft.
    Internal Error: Connection request timed out: at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure, Boolean bCheck)
    Any help is much appreciated ?
    Thanks,
    Srini

    We have a process which syncs users from PeopleSoft to Match application (which is on another server, DB etc).
    The process is erroring out with below message.
    Internal Error: Connection request timed out: at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure, Boolean bCheck)
    at Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, Object src)
    at Oracle.DataAccess.Client.OracleConnection.Open()
    So nothing to do with IB, sorry for that.

  • 2004 Registering Add On Connection Timed Out

    Hi I am having a bit of trouble getting an addon to register and load successfully in SBO 2004...
    I can get the Add On to Install properly, however when I load it, I get the error :
    Add-on connection timed out
    This occurs even though the add on has successfully loaded in the background and is running.  In the Add On Manager the status of the add on is set to Failed...
    I tried setting the AddonIdentifier string before connecting in my code using the Add-on Identifier Generator (Development and Implementation strings but these did not help)
    The Helloworld sample was a good help getting thus far, but even when try to install that as an add it disconnects straight away.
    Any help much appreciated!

    Hi Frank,
    I think the problem was the fact that I was hardcoding the connection string. After I changed it to accept it through the command arguments that the SAP application passes in it seems to connect fine - below is the procedure that I use to connect, I have left the commented lines in to show you how i was trying to connect.  I am still unsure as to when to use the AddonIdentifier property however.
    I have the add-on working 85% well now, but have posted again at SAP Business One SDK any input on this post would be very appreciated!
    Thanks,
    Daniel
              private bool SingleSignOn()
                   SAPbouiCOM.SboGuiApi objGui = new SAPbouiCOM.SboGuiApi();
                   objCompany = new SAPbobsCOM.Company();
                   string strCookie;
                   string strConnection;
                   long lngConnectResult;
                   try
                        //objGui.AddonIdentifier = "4CC8B8ACE0273A61489738C94047855DE8768CDD37F64D4F11E82759A542BD515D5A6E4F50A19B939FBB0FA844FA35C7B604E771";
                        //objGui.Connect("0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056");
                        objGui.Connect(Environment.GetCommandLineArgs().GetValue(1).ToString());
                        objApplication = objGui.GetApplication(-1);
                        strCookie = objCompany.GetContextCookie();
                        strConnection = objApplication.Company.GetConnectionContext(strCookie);
                        if(objCompany.Connected)
                             objCompany.Disconnect();
                        lngConnectResult = objCompany.SetSboLoginContext(strConnection);
                        if(lngConnectResult != 0)
                             System.Windows.Forms.MessageBox.Show("Connection failed, make sure SAP Business One is running and you are logged into a Company");
                             return false;
                        lngConnectResult = objCompany.Connect();
                   catch
                        System.Windows.Forms.MessageBox.Show("Connection failed, make sure SAP Business One is running and you are logged into a Company");
                        return false;
                   return true;

  • Timed Out in Infoview

    Dear folks,
    I am running crystal Report in Infoview and after some time I get timed out error, How Can I increase the time?
    We are using Business Objects 3.1, Crystal reports 2008.
    Thanks
    Ravi

    I am also trying to solve this issue.  There are many slight variations to the solution of changing the timeout value in the web.xml files.  But as far as I can tell none of these changes has any effect on the InfoView timeout.  The strange thing to me is that the default seems to be 30 minutes and I cannot find any 30 minute setting for the timeout value. 
    I was able to successfully change the timeout period for reports accessed via a URL be editing the web.xml file for the CrystalReport application.  So it seems like it is possible to change the timeout period for InfoView.  That is of course if the proper combination of voodoo is found. 
    I am not convinced that SAP's procedure even works at all.  I have changed every timeout value in every web.xml file to no avail.

  • HT5460 I can  not update to the new OS X Mountain Lion. Whenever I do I get a message an error has occurred, timed out 102.W

    I can not update to the new OS x Mountain Lion.  I get an error that  says it has timed out then "102".   WHy can't I get it update??
    Thanks for your help.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot 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, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Mac App Store: Your session has timed out. Try again.

    Whenever i try to do anything in the Mac AppStore, i get the message Your session has timed out. Try again.
    I tried with and without two step verification. It all runs on a MacBook Pro and Yosemite - no updates available in the store to install. Updates, although with a workaround do install, weirdly enough.
    I am sorry if this question was asked before. Also the search here does not work today for me. Start feeling like i am using windows ME again…
    This is getting really frustrating.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this test 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 in OS X 10.7 or later, 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.

Maybe you are looking for