Runtime error during opening a process chain in rspcm

Hello,
i created a process chain just a simple one which loads Data from the DataSource into a DSO and then into a InfoCube.
I executed this processchain without activiating my Initial-Request in the DSO.
So i got a hanging Request there, i deleted all Requests from all objects in this processchain. Still had this hanging Request, so i deleted this one Request from the RSEQDONE. Now my processchain is working, but it takes very long to open it when i am in the RSPCM or i even get a runtime error.
Any suggestions?

Regarding RSPCM you better to check the oss notes which are shared by Michael devine.
Coming to your issue, if you have loading huge data then better to increase your wait time of your info pack load.
go to your info pack --> menu scheduler-->Time out time, increase as you need.
if your doing full loads, please use proper selections and split your load as small chunks.
increase packet sizes and parallel settings to speed up your load.

Similar Messages

  • [b]Error during JSP page processing[/b]

    hi , i'm mech.
    i have some probs with jsp. i am trying to connect jsp page with database and printing the data on the browser page. i have created DSN mm using microsoft odbc for oracle and oracle9i's driver oracle in orahome90 but it is giving yet . i have this coding and error.
    ------------------------jsp code--------------------------
    package pagecompile.jsp;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.jsp.*;
    import java.io.PrintWriter;
    import java.io.IOException;
    import java.io.FileInputStream;
    import java.io.ObjectInputStream;
    import java.util.Vector;
    import com.sun.server.http.pagecompile.jsp.runtime.*;
    import java.beans.*;
    import com.sun.server.http.pagecompile.jsp.JspException;
    import java.sql.*;
    public class _Connect extends HttpJspBase {
    static char[][] jspxhtml_data = null;
    public _Connect( ) {
    private static boolean jspxinited = false;
    public final void jspxinit() throws JspException {
    ObjectInputStream oin = null;
    int numStrings = 0;
    try {
    FileInputStream fin = new FileInputStream("E:\\JavaWebServer2.0\\tmpdir\\default\\pagecompile\\jsp\\pagecompile.jspConnect.dat");
    oin = new ObjectInputStream(fin);
    jspxhtml_data = (char[][]) oin.readObject();
    } catch (Exception ex) {
    throw new JspException("Unable to open data file");
    } finally {
    if (oin != null)
    try { oin.close(); } catch (IOException ignore) { }
    public void _jspService(HttpServletRequest request, HttpServletResponse  response)
    throws IOException, ServletException {
    boolean jspxcleared_due_to_forward = false;
    JspFactory _jspxFactory = null;
    PageContext pageContext = null;
    HttpSession session = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    String _value = null;
    try {
    if (_jspx_inited == false) {
    jspxinit();
    jspxinited = true;
    _jspxFactory = JspFactory.getDefaultFactory();
    response.setContentType("text/html");
    pageContext = _jspxFactory.getPageContext(this, request, response,
                   "", true, 8192, true);
    application = pageContext.getServletContext();
    config = pageContext.getServletConfig();
    session = pageContext.getSession();
    out = pageContext.getOut();
    out.print(_jspx_html_data[0]);
    out.print(_jspx_html_data[1]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(14,2);to=(28,2)]
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection myconn=DriverManager.getConnection("Jdbc:Odbc:mm","madhulika","madhulika");
    Statement stmt = myconn.createStatement();
    ResultSet myResultSet = stmt.executeQuery("Select * from peopletable");
    if(myResultSet != null)
         while(myResultSet.next())
              int eid=myResultSet.getInt("id");
              String fname=myResultSet.getString("firstname");
              String lname=myResultSet.getString("lastname");
              String mail=myResultSet.getString("email");
    // end
    out.print(_jspx_html_data[2]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(30,10);to=(30,13)]
    out.print(eid);
    // end
    out.print(_jspx_html_data[3]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(31,10);to=(31,15)]
    out.print(fname);
    // end
    out.print(_jspx_html_data[4]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(32,10);to=(32,15)]
    out.print(lname);
    // end
    out.print(_jspx_html_data[5]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(33,10);to=(33,14)]
    out.print(mail);
    // end
    out.print(_jspx_html_data[6]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(37,5);to=(43,0)]
    stmt.close();
    myconn.close();
    // end
    out.print(_jspx_html_data[7]);
    } catch (Throwable t) {
    if (out.getBufferSize() != 0)
    out.clear();
    throw new JspException("Unknown exception: ", t);
    } finally {
    if (!_jspx_cleared_due_to_forward)
    out.flush();
    _jspxFactory.releasePageContext(pageContext);
    -------------------error in browser----------------------
    Error during JSP page processing
    java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
         at java.lang.Throwable.(Compiled Code)
         at java.lang.Exception.(Compiled Code)
         at java.sql.SQLException.(SQLException.java:43)
         at sun.jdbc.odbc.JdbcOdbc.createSQLException(Compiled Code)
         at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:3814)
         at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(JdbcOdbc.java:1029)
         at sun.jdbc.odbc.JdbcOdbcConnection.initialize(JdbcOdbcConnection.java:145)
         at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:165)
         at java.sql.DriverManager.getConnection(Compiled Code)
         at java.sql.DriverManager.getConnection(DriverManager.java:126)
         at pagecompile.jsp._Connect._jspService(Compiled Code)
         at com.sun.server.http.pagecompile.jsp.runtime.HttpJspBase.service(HttpJspBase.java:87)
         at javax.servlet.http.HttpServlet.service(Compiled Code)
         at com.sun.server.http.pagecompile.jsp.runtime.JspServlet.runServlet(JspServlet.java:469)
         at com.sun.server.http.pagecompile.jsp.runtime.JspServlet.processJspPage(JspServlet.java:259)
         at com.sun.server.http.pagecompile.jsp.runtime.JspServlet.service(JspServlet.java:97)
         at javax.servlet.http.HttpServlet.service(Compiled Code)
         at com.sun.server.ServletState.callService(ServletState.java:226)
         at com.sun.server.ServletManager.callServletService(ServletManager.java:936)
         at com.sun.server.ProcessingState.invokeTargetServlet(ProcessingState.java:423)
         at com.sun.server.http.HttpProcessingState.execute(HttpProcessingState.java:79)
         at com.sun.server.http.stages.Runner.process(Runner.java:79)
         at com.sun.server.ProcessingSupport.process(Compiled Code)
         at com.sun.server.Service.process(Service.java:204)
         at com.sun.server.http.HttpServiceHandler.handleRequest(HttpServiceHandler.java:374)
         at com.sun.server.http.HttpServiceHandler.handleRequest(Compiled Code)
         at com.sun.server.HandlerThread.run(Compiled

    Backing up a moment, is there a particular reason that you're using the JDBC-ODBC bridge rather than using the Oracle JDBC driver?
    Have you taken a look at the JSP sample code available on OTN? I would start by making sure you can run that.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Error while running the process chain

    Hi, I am getting following error while running the process chain.
    "Lock NOT set for: Deleting the data completely from a data target"
    Please suggest.
    amit

    hi,
    This is due to a lock on the objects which is being used by ur load.
    Even if master data used by this would be in a lock by an attribute change run. wait till that attribute change run finishes and then repeat.
    If this target itself is locked by someother process like rollup , compression , this error would appear. In this case also repeat the step after those locking process finish.
    some general locks during loading:
    Sometimes parallel processing in DTP might lead to this, its better set the DTP and infopackage in serial processing. In this case change the settings and then repeat the process.
    There is a specific case in which the Serial DTP gets locked by itself, in this case repeat it untill it succeeds.
    You can identify the above scenario as below. This is applicable only if the DTPs processing mode is serial.
    if u see in SM 37 this load would have three DTP processes running.
    it should have only two.
    In this case cancel the process and repeat it untill u get it right.
    hope this helps u
    regard,
    ranjith
    Edited by: Ranjith  Kumar Murugesan on Sep 12, 2008 10:44 AM
    Edited by: Ranjith  Kumar Murugesan on Sep 12, 2008 10:46 AM

  • Error while collecting the process chain in a transport request

    Hi Gurus,
    I am getting an error while collecting my process chain in a tranpsort request.I have to transport the request from DEV to QA system.
    When in RSA1--->transport connection i drag & drop the chain from left to right side pane then the Error occurs.
    1.Object 'REQUDELZPAK_48RZW8GZX87CNEH7S897TFQSD' (RSPV) of type 'Process Variants' is not available in version 'A'
    Sap help given
    You wanted to generate an object with the name 'ZPAK_48RZW8GZX87CNEH7S897TFQSD' (in transport request RSPT) of type 'Process Chain Starter' (TLOGO). This is, however, not available in the BW Repository database. It does not exist in the requested version A. If the version is 'D' then it is possible that an error arose during the delivery or installation. If the version is 'A' then the Object was either not created or not activated.
    2.Object 'ZPAK_48RZW8GZX87CNEH7S897TFQSD' (RSPT) of type 'Process Chain Starter' is not available in version 'A'
    Sap help given
    You wanted to generate an object with the name 'REQUDEL   ZPAK_48RZW8GZX87CNEH7S897TFQSD' (in transport request RSPV) of type 'Process Variants' (TLOGO). This is, however, not available in the BW Repository database. It does not exist in the requested version A. If the version is 'D' then it is possible that an error arose during the delivery or installation. If the version is 'A' then the Object was either not created or not activated.
    From one of the threads:
    (https://forums.sdn.sap.com/click.jspasearchID=10081153&messageID=4623856)
    i though it was the problem of patch level sap note(966131).
    Accordingly i tried collecting process chain in the request where the patch level is high(24).But same error is seen.
    I have activated chain again & then tried collecting the request i the process chain.But did not solve the error.
    I have to collect Process chain in a transport request.Can you help me out to solve the problem?
    Thanks in advance!
    Regards,
    Pallavi

    Hi,
    take a look:
    Data Warehousing
    "Errors occurred during post-handling RS_AFTER_IMPORT for MPRO L "
    Errors occurred during post-handling RS_AFTER_IMPORT for ROUT L
    Try to set the Process Chain Start to Immediate(background jobs) in the schedule, because this will trigger the process chain once tranported and may cause similar errors.
    Regards
    Andreas

  • Runtime error during full installation

    hi
    do any one know where SAPLE30B comes....
    i got a runtime error during full installation...
    it gives a error like : the error has occured because the table was not filled through user input on the selection screen of program SAPLE30D"
    i dont know where it went wrong
    i wil be greatful if u help me to solve it...
    Rdgs
    Chatriyan
    Edited by: Chatriyan india on Aug 1, 2008 7:46 AM

    Hi,
    this sounds as some field values were not transported to the internal tables. Which transaction do you use? In case you are trying to use dark installation routines, make sure all needed fields are filled (check within the dump). If this all does not help - open a customer message - a dump will always be inspected by SAP Support.
    KR
    Uwe

  • RFC ERROR while running BI Process Chain

    I'm recieving the following error while running certain Process Chains in BI.
    RFC error: FAILED
    RFC Message: FAILED
    The system log in BI shows the following.
    Communication error, CPIC return code 017, SAP return code 672
    672 Logon to Netweaver failed
    Other process chains work correctly via CPS.
    Any Ideas?
    Thanks

    This looks like a BW problem. Do you get the same message when you submit it manually in SAP?

  • Error during entry document processing - wae02 - EHS

    Dear All,
    In WAE02, i am getting the below error
    "Error during entry document processing - wae02 - EHS"
    But, when i click on "extras - messages", its empty.
    Added, i have assigned "Partner assignement", posting is over, Accout assignment is complete.
    Still the warning message comes and PO is not getting created.
    Please answer this high priority issue and do the needful.
    Regards
    Hari Prasath

    Hello Hari
    Seems issue is with BAPI in Purchase order process
    Check the OSS Note :1111389
    Balajee

  • There was an error during the save process

    Hi All,
    When I try to save the data in a form, I got the following error but data was saved. Remaing forms are saving the data without any error.
    There was an error during the save process
    I found the log
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 acquired connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 releasing connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 released connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 acquired connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 releasing connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 released connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 acquired connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 releasing connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 released connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 acquired connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 releasing connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:17 PM]: Thread TP-Processor8 released connection com.hyperion.planning.olap.HspEssConnection@11d2066
    [Jul 4, 2009 4:24:30 PM]: Rebind at: Sat Jul 04 16:24:30 GMT+03:00 2009
    [Jul 4, 2009 4:25:30 PM]: Rebind at: Sat Jul 04 16:25:30 GMT+03:00 2009
    [Jul 4, 2009 4:26:30 PM]: Rebind at: Sat Jul 04 16:26:30 GMT+03:00 2009
    [Jul 4, 2009 4:27:30 PM]: Rebind at: Sat Jul 04 16:27:30 GMT+03:00 2009
    Thanks & regards,
    Sravan Kumar.

    Hi John,
    I customized the standerd Transfer BR according to my requirement. And I am using the customized form.
    I tried to change the Action in (Action is smart list) in the form, it is getting saved but with the error There was an error during the save process.
    My requirement is Action updated through BR only. But it is not updating. Previously the same BR worked fine.
    Is there any relationship between the error and the Action was not updating?
    Thanks & Regards,
    Sravan Kumar.
    Edited by: Kumar1899 on Jul 6, 2009 6:29 AM

  • Error during the submit process

    I am trying to download an eBook for course, and it does not let me log in with my network username and password. It gives me an "error during the submit process".
    I have charter internet, and we contacted them to make sure my signal strength was strong enough. Reset password. I am using Adobe Reader X.

    I am also facing same error.
    Please let me know if you have resolved problem.

  • Error during the save process with Planning data form

    Hi,
    When in Planning web-client, I am trying to make changes to data on a data form. The cells are level-0 members (Yellow and writeable in a bottom-up Working version). When I save, it takes a while to process the request, then gives me the following error message: "There was an error during the save process."
    The data form is fairly large, could this be causing the problem? I am a able to save data on other forms that correspond to the exact same set of members and dimensions with no problem. What are possible causes of this error? I have tried stopping and starting planning and the entire EPM system. Thank you.

    Hi,
    I believe you are using V11, I would stop planning, clear out log \Hyperion\logs\services\HyS9Planning-sysout.log, start planning, replicate the error and then going in look if the log has any more detailed information.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error during start of process in Inegration Process

    Hi,
    My scenario is file to integration process and back.
    Message is not entering my integration process. In sxmb_moni it shows a green falg at the queue and when you click on 'PE', we are taken to the inbound queue with 'SYSFAIL'.
    The error description at the trace is 'Error during start of process'.
    There are no errors in sxi_cache for the particular integration process. The return code is '0'. I have tried re-activation too and tested again. But to no avail.
    There are no entries in swwl, since the message has not even entered integration process.
    Kindly help me to correct the error.
    Thanks,
    John

    Hi,
    Yes the the 'Start Process' is checked.
    Steps in BPM.
    Receive step, transformation step to a multiline element, a block for sending each line in the multiline, a container operation for appending (also inside the block) and finally another transforamtion and send step.
    But since the message has not even entered the send step, it is not of much use to know all steps
    Thanks,
    John

  • Error during calling BPEL Process Using Oracle BPEL Process Manager Client

    hi,
    I have the following error during Calling BPel process and I can not detect the reason :
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/ejb/EJBException
         at com.oracle.bpel.client.util.ExceptionUtils.handleServerException(ExceptionUtils.java:76)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:254)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:83)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:53)
         at portlet.BPELProcess.startProcess(BPELProcess.java:68)
         at portlet.BPELProcess.main(BPELProcess.java:89)
    My Code :
    locator = new Locator("default", "welcome1");
    deliveryService = (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME);
    String SchemaInputXML = "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n" +
    " <soap:Header/>\n" +
    " <soap:Body xmlns:ns1=\"http://www.globalcompany.com/ns/sales\">\n" +
    " <ns1:User>\n" +
    " <ns1:FirstName>787878</ns1:FirstName>\n" +
    " <ns1:LastName>ujfyytytry</ns1:LastName>\n" +
    " </ns1:User>\n" +
    " </soap:Body>\n" +
    "</soap:Envelope>\n";
    NormalizedMessage nm = new NormalizedMessage();
    nm.addPart("payload", SchemaInputXML);
    deliveryService.request("userBPEL", "initiate", nm); --> here exception appear
    userBPEL is my Process Name
    initiate is BPel method

    Message was edited by:
    Marc Kelderman

  • Error during start of process of type

    Hi All,
    One of my BPM scenario was strucked every weekend in the queue (SMQ2) and say the error called " Error during start of process of type WS91000041"
    I observed the Queue messages, due to the error from database system for particular record,
    In my BPM there is Exception Branch in the block step in case of Database connection error, Why it was strucked in the queue in case of error in the Database?
    Why it doesn't the goes to exception branch?
    Kindly suggest me how i can approach here.
    Thank you very much.
    Regards,
    Sateesh

    Hello All,
    Again,
    Could you please suggest me above my problem.I am looking forward from you.
    Thank you.
    Kindest Regards,
    Sateesh
    Edited by: sateesh kumar .N on Oct 11, 2011 10:39 AM

  • RFBILA00 - Error during opening of file

    Hello everyone!
    Can someone provide me some help regarding a error message when executing RFBILA00: the message is very strange due to the fact that I have another system an I can write to my c:/temp directory the extract to consolidation. It goes like this: Error during opening of file c:\temp\EXTRACT_CS_CO.txt
    I've also check all the costumizing between the two systems and they are equal.
    Thanks in advanced,
    David Resende

    Deat Paulo,
    Thank you for your fast response!
    Could it be that the path indicated in the unix configuration isn't valid? I've check this over and over and I don't see any difference between the two systems I have. One works and the other don't!
    I've check the customizing via transaction FILE, and everything is equal. Should I contact the systems administration to verify the existence of the unix path, or can I do it myself?
    Best regards,
    David

  • Lockbox-Error during opening of file C:\temp\142941

    When I execute the transaction :FLB2, I always meet the error message "Error during opening of file C:\temp\142941". Could anyone please tell me why it happens?  Many thanks!

    Hi Christina,
    I have experienced the same problem. When we run FLB2, the system creates a file and stores it somewhere. Via program RFBIDE00 the system tries to open the file. It probably has to do with the fact that you have several application servers but only one is installed as central instance.
    What in fact happens, is that the file is written to the application server on which you are logged on to on that moment but when the program RFBIDE00 is running it looksup the file on the central instance server.
    I have logged a OSS message for this.
    Kind Regards,
    Joep
    [email protected]

Maybe you are looking for

  • How to recover deleted files from iPod

    All the contents of my iTunes music folder were deleted. When I connected my iPod it was autosynced with the empty iTunes music folder and everything on the iPod got deleted too. (No warning, no undo.) Does anyone know of a utility proven to recover

  • Error running import package: it removes the journals

    Hello experts, I have a problem when I run the import package using the "Replace&Clear "data option. Apart from clearing the INPUT data, it clears the journals. When the package ends running, the previous data is correctly cleared, the new data corre

  • I see apple picture on display

    i see apple picture when display my macbook air  off. it is a cool thing from aplle or i have broken display. Thancks

  • 10.4.2 iBook DI-524

    The wireless connection from my 1-month-old iBook (10.4.2 installed) has ceased to function. Internet Connect says I am connected to my local network (D-Link DI-524 router), but with zero signal strength. Once every 15-20 tries to connect, a page loa

  • Does solaris dhcp server support user class

    Does solaris dhcp server support user class(option 77). In my environment, solaris dhcp server seems just ignore this option set in the client dhcp discover. Does anybody can help me.