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

Similar Messages

  • 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

  • [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 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 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 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 instance phase

    Dear all,
    I am getting an error during start instance phase of netweaver 7.0 installing.I am using windows server 2008 and mssql.
    The error is "instance ecd\dvebmgs00 reached state shutdown after having state starting.giving up".I searched a lot but still error
    is not solved.so please tell me how to solve this error.

    dev_disp:
    trc file: "dev_disp", trc level: 1, release: "701"
    sysno      00
    sid        ECD
    systemid   562 (PC with Windows NT)
    relno      7010
    patchlevel 0
    patchno    32
    intno      20020600
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3228
    Mon Mar 17 11:04:13 2014
    kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    length of sys_adm_ext is 576 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3228) [dpxxdisp.c   1286]
        shared lib "dw_xml.dll" version 32 successfully loaded
        shared lib "dw_xtc.dll" version 32 successfully loaded
        shared lib "dw_stl.dll" version 32 successfully loaded
        shared lib "dw_gui.dll" version 32 successfully loaded
        shared lib "dw_mdm.dll" version 32 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Mon Mar 17 11:04:19 2014
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5529]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >SAPdev01_ECD_00                         <
    DpShMCreate: sizeof(wp_adm)        29792    (1752)
    DpShMCreate: sizeof(tm_adm)        5912704    (29416)
    DpShMCreate: sizeof(wp_ca_adm)        24064    (80)
    DpShMCreate: sizeof(appc_ca_adm)    8000    (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    DpShMCreate: sizeof(comm_adm)        552080    (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)        0    (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)        0    (72)
    DpShMCreate: sizeof(vmc_adm)        0    (1864)
    DpShMCreate: sizeof(wall_adm)        (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm)    48
    DpShMCreate: SHM_DP_ADM_KEY        (addr: 0000000008DC0050, size: 6614144)
    DpShMCreate: allocated sys_adm at 0000000008DC0050
    DpShMCreate: allocated wp_adm at 0000000008DC2270
    DpShMCreate: allocated tm_adm_list at 0000000008DC96D0
    DpShMCreate: allocated tm_adm at 0000000008DC9730
    DpShMCreate: allocated wp_ca_adm at 000000000936CFB0
    DpShMCreate: allocated appc_ca_adm at 0000000009372DB0
    DpShMCreate: allocated comm_adm at 0000000009374CF0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 00000000093FB980
    DpShMCreate: allocated gw_adm at 00000000093FBA00
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 00000000093FBA30
    DpShMCreate: allocated wall_adm at 00000000093FBA40
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    rdisp/queue_size_check_value :  -> off
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 1018 blocks reserved for free list.
    ES initialized.
    Mon Mar 17 11:04:20 2014
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1681]
    ***LOG Q0K=> DpMsAttach, mscon ( SAPdev01) [dpxxdisp.c   12483]
    Mon Mar 17 11:04:21 2014
    DpStartStopMsg: send start message (myname is >SAPdev01_ECD_00                         <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    Mon Mar 17 11:04:22 2014
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7010, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1048]
    DpMsgAdmin: Set patchno for this platform to 32
    Release check o.K.
    Mon Mar 17 11:05:01 2014
    my types changed after wp death/restart 0xbf --> 0xbe
    my types changed after wp death/restart 0xbe --> 0xbc
    my types changed after wp death/restart 0xbc --> 0xb8
    my types changed after wp death/restart 0xb8 --> 0xb0
    my types changed after wp death/restart 0xb0 --> 0xa0
    my types changed after wp death/restart 0xa0 --> 0x80
    *** DP_FATAL_ERROR => DpWPCheck: no more work processes
    *** DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:11 2014
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)            Mon Mar 17 05:35:11 2014
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA     3440 Ended         no      1   0        0                                                                         
    1 DIA     3448 Ended         no      1   0        0                                                                         
    2 DIA     3456 Ended         no      1   0        0                                                                         
    3 DIA     3468 Ended         no      1   0        0                                                                         
    4 DIA     3476 Ended         no      1   0        0                                                                         
    5 DIA     3484 Ended         no      1   0        0                                                                         
    6 DIA     3492 Ended         no      1   0        0                                                                         
    7 DIA     3500 Ended         no      1   0        0                                                                         
    8 DIA     3508 Ended         no      1   0        0                                                                         
    9 DIA     3516 Ended         no      1   0        0                                                                         
    10 UPD     3524 Ended         no      1   0        0                                                                         
    11 ENQ     3532 Ended         no      1   0        0                                                                         
    12 BTC     3540 Ended         no      1   0        0                                                                         
    13 BTC     3548 Ended         no      1   0        0                                                                         
    14 BTC     3556 Ended         no      1   0        0                                                                         
    15 SPO     3564 Ended         no      1   0        0                                                                         
    16 UP2     3572 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics            Mon Mar 17 05:35:11 2014
    ===========================
    +------+--------+--------+--------+--------+--------+
    |  Typ |    now |   high |    max | writes |  reads |
    +------+--------+--------+--------+--------+--------+
    | NOWP |      0 |      2 |   2000 |      5 |      5 |
    +------+--------+--------+--------+--------+--------+
    |  DIA |      5 |      5 |   2000 |      5 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  UPD |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  ENQ |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  BTC |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  SPO |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    |  UP2 |      0 |      0 |   2000 |      0 |      0 |
    +------+--------+--------+--------+--------+--------+
    max_rq_id        12
    wake_evt_udp_now    0
    wake events          total     8,  udp     4 ( 50%),  shm     4 ( 50%)
    since last update    total     8,  udp     4 ( 50%),  shm     4 ( 50%)
    Dump of tm_adm structure:            Mon Mar 17 05:35:11 2014
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks            Mon Mar 17 05:35:11 2014
    =============================
    Slots: 300, Used: 1, Max: 0
    +------+--------------+----------+-------------+
    |   id | owner        |   pid    | eyecatcher  |
    +------+--------------+----------+-------------+
    |    0 | DISPATCHER   |       -1 | *WPCAAD000* |
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:16 2014
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >SAPdev01_ECD_00                         < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (3424) (SOFT_KILL)
    Stop icman
    killing process (3432) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:3424  HANDLE:776)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:17 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:3424  HANDLE:776)
    wait for end of icman
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:18 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:19 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:20 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:21 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:22 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:23 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:24 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:25 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:26 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:27 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3432  HANDLE:784)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=893
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 17 11:05:28 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:3432  HANDLE:784)
    DpStartStopMsg: send stop message (myname is >SAPdev01_ECD_00                         <)
    DpStartStopMsg: Write AD_STARTSTOP message with type=  0, name=SAPdev01_ECD_00     , sapsysnr= 0, hostname=SAPdev01                                                       
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 2 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 2 (r)
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    Mon Mar 17 11:05:29 2014
    NiIPeek: peek for hdl 2 timed out (r; 1000ms)
    NiIRead: read for hdl 2 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   12829]
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 2 in set0
    SiSelNSet: set events of sock 772 to: ---
    NiBufISelRemove: remove hdl 2 from set0
    SiSelNRemove: removed sock 772 (pos=2)
    SiSelNRemove: removed sock 772
    NiSelIRemove: removed hdl 2
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/17
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 772
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 3228) [dpxxdisp.c   11045]
    Good Bye .....
    dev_ms:
    trc file: "dev_ms", trc level: 1, release: "701"
    [Thr 2596] Sun Mar 16 17:31:39 2014
    [Thr 2596] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   562 (PC with Windows NT)
    relno      7010
    patchlevel 0
    patchno    11
    intno      20020600
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        4004
    [Thr 2596] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 4004) [msxxserv.c   1853]
    [Thr 2596] load acl file = E:\usr\sap\ECD\SYS\global\ms_acl_info.DAT
    [Thr 2596] MsGetOwnIpAddr: my host addresses are :
    [Thr 2596]   1 : [192.168.42.205] SAPdev01 (HOSTNAME)
    [Thr 2596]   2 : [127.0.0.1] SAPdev01 (LOCALHOST)
    [Thr 2596]   3 : [169.254.221.8] SAPdev01 (NILIST)
    [Thr 2596] MsHttpInit: full qualified hostname = SAPdev01
    [Thr 2596] HTTP logging is switch off
    [Thr 2596] set HTTP state to LISTEN
    [Thr 2596] ms/icf_info_server : deleted
    [Thr 2596] *** I listen to port sapmsECD (3600) ***
    [Thr 2596] *** I listen to internal port 3900 (3900) ***
    [Thr 2596] *** HTTP port 8100 state LISTEN ***
    [Thr 2596] CUSTOMER KEY: >J0169343196<
    [Thr 2596] build version=701.2008.03.06
    [Thr 2596] Sun Mar 16 17:32:52 2014
    [Thr 2596] *** ERROR => MsSClientHandle: no server provides service ENQ  (4), requested from SAPdev01_ECD_00 [msxxserv.c   4711]
    [Thr 3648] Sun Mar 16 17:39:27 2014
    [Thr 3648] MsSExit: received SIGINT (2)
    [Thr 3648] ***LOG Q02=> MsSHalt, MSStop (Msg Server 4004) [msxxserv.c   6021]
    dev_w0:
    trc file: "dev_w0", trc level: 1, release: "701"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ

    B Sun Mar 16 17:31:45 2014
    B  create_con (con_name=R/3)
    B  Loading DB library 'E:\usr\sap\ECD\DVEBMGS00\exe\dbmssslib.dll' ...
    B  Library 'E:\usr\sap\ECD\DVEBMGS00\exe\dbmssslib.dll' loaded
    B  Version of 'E:\usr\sap\ECD\DVEBMGS00\exe\dbmssslib.dll' is "700.08", patchlevel (0.31)
    B  New connection 0 created
    M sysno      00
    M sid        ECD
    M systemid   562 (PC with Windows NT)
    M relno      7010
    M patchlevel 0
    M patchno    32
    M intno      20020600
    M make:      multithreaded, Unicode, 64 bit, optimized
    M pid        3256
    M
    M  kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3256) [dpxxdisp.c   1348]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)        29792    (1752)
    M  DpShMCreate: sizeof(tm_adm)        5912704    (29416)
    M  DpShMCreate: sizeof(wp_ca_adm)        24064    (80)
    M  DpShMCreate: sizeof(appc_ca_adm)    8000    (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M  DpShMCreate: sizeof(comm_adm)        552080    (1088)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)        0    (104)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)        0    (72)
    M  DpShMCreate: sizeof(vmc_adm)        0    (1864)
    M  DpShMCreate: sizeof(wall_adm)        (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)    48
    M  DpShMCreate: SHM_DP_ADM_KEY        (addr: 000000000AA00050, size: 6614144)
    M  DpShMCreate: allocated sys_adm at 000000000AA00050
    M  DpShMCreate: allocated wp_adm at 000000000AA02270
    M  DpShMCreate: allocated tm_adm_list at 000000000AA096D0
    M  DpShMCreate: allocated tm_adm at 000000000AA09730
    M  DpShMCreate: allocated wp_ca_adm at 000000000AFACFB0
    M  DpShMCreate: allocated appc_ca_adm at 000000000AFB2DB0
    M  DpShMCreate: allocated comm_adm at 000000000AFB4CF0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 000000000B03B980
    M  DpShMCreate: allocated gw_adm at 000000000B03BA00
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000000B03BA30
    M  DpShMCreate: allocated wall_adm at 000000000B03BA40
    M  rdisp/queue_size_check_value :  -> off
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host SAPdev01
    M  calling db_connect ...
    C  Callback functions for dynamic profile parameter registered
    C  Thread ID:2876
    C  Thank You for using the SLODBC-interface
    C  Using dynamic link library 'E:\usr\sap\ECD\DVEBMGS00\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      31
    C    patchcomment Handle long parameters as LOBs (1296540)
    C  Local connection used on SAPDEV01 to named instance: lpc:SAPDEV01\ECD
    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 2010]
    C  (18456) [28000] [Microsoft][SQL Server Native Client 10.0][SQL Server]Login failed for user 'SAPDEV01\SAPServiceECD'.
    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 2010]
    C  (0) [IM006] [Microsoft][SQL Server Native Client 10.0]Packet size change not supported by server, default used
    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 2010]
    C  (18456) [28000] [Microsoft][SQL Server Native Client 10.0][SQL Server]Login failed for user 'SAPDEV01\SAPServiceECD'.
    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 2010]
    C  (18456) [28000] [Microsoft][SQL Server Native Client 10.0][SQL Server]Login failed for user 'SAPDEV01\SAPServiceECD'.
    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 2010]
    C  (18456) [28000] [Microsoft][SQL Server Native Client 10.0][SQL Server]Login failed for user 'SAPDEV01\SAPServiceECD'.
    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 2010]
    C  (18456) [28000] [Microsoft][SQL Server Native Client 10.0][SQL Server]Login failed for user 'SAPDEV01\SAPServiceECD'.
    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 2010]
    C  (18456) [28000] [Microsoft][SQL Server Native Client 10.0][SQL Server]Login failed for user 'SAPDEV01\SAPServiceECD'.
    C  Connection 0 failed using Driver={SQL Server Native Client 10.0};Server=SAPDEV01\ECD;AutoTranslate=no;Trusted_Connection=yes;WSID=SAPDEV01;APP=R3D00 comm rd ODBC;Database=ECD;

    B  ***LOG BY2=> sql error 18456  performing CON [dbsh#2 @ 1208] [dbsh    1208 ]
    B  ***LOG BY0=> [Microsoft][SQL Server Native Client 10.0][SQL Server]Login failed for user 'SAPDEV01\SAPServiceECD'. [dbsh#2 @ 1208] [dbsh    1208 ]
    B  ***LOG BY2=> sql error 18456  performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> [Microsoft][SQL Server Native Client 10.0][SQL Server]Login failed for user 'SAPDEV01\SAPServiceECD'. [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1449]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10563]

    M  Info for wp 0

    M    pid = 3256
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server SAPdev01_ECD_00 on host SAPdev01 (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Sun Mar 16 17:31:45 2014
    M  *  RELEASE     701
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10783
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >BtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   723]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  261]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 3256) [dpnttool.c   334]

  • Why the Oracle 8.1.7 PE coundnot have error during start the install stage On Win98?

    Why the Oracle 8.1.7 PE coundnot have error during start the install stage On Win98?Someone tell me that need one patch for win98,but where can I download it?
    Thanks

    Why the Oracle 8.1.7 PE coundnot have error during start the install stage On Win98?Someone tell me that need one patch for win98,but where can I download it?
    Thanks

  • Error when starting a Process

    Hi everyone,
    I am using NetWeaver 7.0 SP13, and I am trying to start a process that was created previously, however I get the following exception:
    com.sap.caf.eu.gp.exception.api.GPEngineException: Error filling role role.administrator of role type 3 during instantiation at
    com.sap.caf.eu.gp.process.rt.impl.GPRuntimeManager.checkRoleList(GPRuntimeManager.java:307) at
    com.sap.caf.eu.gp.process.rt.impl.GPRuntimeManager.startProcess(GPRuntimeManager.java:125) at
    com.sap.test.process.StartProcess.startProcess(StartProcess.java:311) at
    com.sap.test.process.wdp.InternalStartProcess.startProcess(InternalStartProcess.java:153) at
    com.sap.test.process.view.StartProcessView.onActionstartProcess(StartProcessView.java:145) at
    com.sap.test.process.view.wdp.InternalStartProcessView.wdInvokeEventHandler(InternalStartProcessView.java:140)
    at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87) at om.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67) at
    com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420) at
    com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132) at
    Here is the code I´m using, the line that rises the exception is this:
    rtm.startProcess(process,
                             "API test by me", "This process has been started by me... :p",
                             user, roles, params, user);
    The error reported above is " role role.administrator of role type 3" which I do not understand or found information
    about it on help.sap.com.
              IWDClientUser wdUser = WDClientUser.getCurrentUser();
              user = wdUser.getSAPUser();
              IGPUserContext userContext2 = GPContextFactory.getContextManager().createUserContext(user);
              IGPProcess process =GPProcessFactory.getDesigntimeManager().getActiveTemplate( processId, userContext2 );
              IGPRuntimeManager rtm = GPProcessFactory.getRuntimeManager();
              IGPProcessRoleInstanceList roles = rtm.createProcessRoleInstanceList();
              int rolenum = process.getRoleInfoCount();
              for (int i = 0; i < rolenum; i++) {
                   IGPProcessRoleInstance roleInstance = roles. createProcessRoleInstance(process.getRoleInfo(i).getRoleName());
                   roleInstance.addUser(user);
                   roles.addProcessRoleInstance(roleInstance);
              params = GPStructureFactory.getStructure(process.getInputParameters());
              wdComponentAPI.getMessageManager().reportSuccess( params.toString() );
              String name = process.getAdminRole().getRoleName();
              IGPProcessRoleInstance roleInstance = roles.createProcessRoleInstance(name);
              roleInstance.addRuntimeDefinedUser(user);
              roles.addProcessRoleInstance(roleInstance);
              Date date2 = new Date();
              params.setAttributeValue("data", date2);
              rtm.startProcess(process,
                             "API test by me", "This process has been started by me... :p",
                             user, roles, params, user);
    Thanks in advance!
    Cheers,
    Francisco

    -> press '''CTRL''' + '''SHIFT''' + '''ESC''' to Open Task Manager -> Processes tab -> right-click '''firefox.exe''' and click '''End Process Tree''' -> close Task Manager
    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Troubleshooting plugins
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins
    Check and tell if its working.

  • Error during Parforeach dynamic processing!

    Hello All:
    Hope to have some input to an unsolvable error in the workflow template that I have developed.
    I have developed a workflow in which I am using a block with “parforeach” dynamic parallel processing and in that block I am displaying notification of absence. IN the block I have created a task which displays notification of absence.
    I have maintained User_ID(this is a multiline container element which has multiple user ids) as my parallel processing multi-line element so that all the users entered in the User_ID element can access the workitem. Now I was able to create different work items for all the users entered , but when any one of the user is accessing the work-item, the work flow is getting in the error status with the following error log messages.
    Flow item Test Worflow for dynamic block (Workflow 000000033121) has the status "Error" 
    Error when starting work item 000000033121                                              
    JOIN entry missing for fork on node 0000000008                                          
    Error when loading the callback component (work item 000000033126)                      
    Error during result processing of work item 000000033126                                
    Work item 000000033121: Object FLOWITEM method EXECUTE cannot be executed               
    Error when loading the callback component (work item 000000033126)                      
    Error when loading the callback component (work item 000000033126)                      
    User_ID is entered as Multiline element.
    In the control tab of block, (Note: USER_ID is the multielement)
    &USER_ID[&_WF_PARFOREACH_INDEX&]&    ->    &_USER_ID_LINE&
    In the “display absence” step of block, I am assigning in the “Agents” area of the control tab as: &_USER_ID_LINE&
    Now, when I execute the workflow, I am able to see that the work-items are sent to the respective agent inboxes given in the USER_ID element and when I execute(display absence form) any one of it , the workflow is set to error status giving the above mentioned errors.
    Please help me. I am missing any binding elements??
    Do I need to add any JOIN in my dynamic step??
    Regards,

    Hi Satya,
    Hmmmm.... well you've correctly assigned the multiline container element and the binding between workflow and container.  However the way you have assigned the agents is a little suspicious - as it relies on a guaranteed order of processing.  That might be what is confusing the workflow.
    Try the following instead.
    a) Put your task into a subflow.
    b) Call the subflow using the parforeach processing
    I think you'll find this less problematic.
    Also be careful to watch what you are passing back from the task to the workflow - you don't want any deadlocks here.  Either don't pass anything back, or pass back the values into  a table using the APPEND binding option rather than the usual assign (just select the arrow button in the binding).
    Regards,
    Jocelyn

  • Error during form render process

    We are just getting started using Adobe LiveCycle 9 at my organization and I've been tasked to create processing for an internal form. I've created a basic process that currently just has default start points. One of them is for when a user starts a process in Workspace.
    Under the "Presentation & Data" process property, I've selected my PDF form as the "Asset". In "Action Profile", I have created a profile called "Prefill", which I've defined to call a separate rendering process called "TRS116PrepareData.process". I have "PDF" selected with "ReaderExt" selected in the dropdown list.
    Currently, the "TRS116PrepareProcessData" process just has a default start point. I had an Assign operation where I was attempting to map task context variables to the fields on the form, but because of the errors I've been getting, I took this operation out for now.
    When I go into Workspace and invoke the process, it immediately gives me the error ALC-WKS-007-040, which from what I've seen on other threads has something to do with a rendering error. If I remove the "Prefill" profile on my start point and change it back to "Default", the form will load, but I need to be able to populate the form with user ID, name, and other information when the form is opened.
    I know this is all very vague, but I'm hoping that I can find some help here.
    Thanks much.

    It sounds like you have tried to do a couple of things at the same time (added a Prepare Data process and are reader extending the form during render) plus maybe setting the wrong process in the wrong field.  If you get either wrong, you will get a render error reported by Workspace, but there should be a stack in the server log saying what the problem is.
    Also, note that the Workbench Record and Playback function is extremely useful for finding and fixing problems in processes.  In Workbench you just need to enable Recording on the processes involved (the TRS116PrepareData process and the built-in Render PDF Form process - for this last one you will need to 'get' the Process Management (system) application from the server (use Get Application under Workbench File menu)).  Once recordings are enabled, use Workspace to start the process and when you get the error, use Workbench to Playback the recordings and look at the error and any data available at that time. 
    Now for your problem.  I would suggest not doing the reader extension stuff until after you have the form rendering with the pre-populated data you need. I think you may have done the creation of the prepare data process correctly but you said something that I need to clarify.  You said you created a new ActionProfile called "Prefill" which is good. But then you said "I've defined  to call a separate rendering process called 'TRS116PrepareData.process'" which doesn't make sense, so hopefully just incorrect wording on your part.
    For what you are doing, you have no reason to change the default Render and Submit processes provided (these are the ones specified in the Custom render and submit section).  If you did change either of these, click on the Restore Default button.  The only thing you are changing in this new profile is in the "Prepare Data process" section and it should have been set correctly to the 'TRS116PrepareData.process' value when you pressed the 'Create a prepare data process' button.  When an asset with a prepare data process configured in the selected profile is requested to be rendered by Workspace, the prepare data process is run first and it's xml output variable is used as the input data to the render process (which merges it into the form).
    The TRS116PrepareData process is preconfigured with a TaskContext input variable which will have info on the current(assigned) user (id, canonical name, display name, etc.).  You could also use other orchestrations to get info from databases, the user directory, webservice calls etc.  Whatever info you get needs to be injected into the xml output variable in the proper schema location for the form. This is done via xpath expressions.  If the form has a defined schema file you can associate it with the xml variable to use code assist, otherwise you have to do it manually and be very careful to get it right. 
    Hint: To get the proper structure for the data used by the form, run a test with the Default Action Profile and use Record and Playback on the Submit process to capture the output document which is the submitted xml.
    When you get this working, then try putting the Reader Extension stuff back in.
    Hopefully this helps.

  • Error in starting MRP process in Standby database.

    Hi All,
    OS:Windows server 03
    DB:11g
    I am creating a Standby database, everything is fine until i fire the below command to start the MRP process to start the recovery of the database.
    alter database recover managed standby database disconnect from session;MRP0 started with pid=27, OS id=6640
    2013-02-07 17:59:48.515000 +05:30
    started logmerger process
    Managed Standby Recovery not using Real Time Apply
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_dbw0_6000.trc:
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    ORA-27086: unable to lock file - already in use
    OSD-00002: additional error information
    O/S-Error: (OS 32) The process cannot access the file because it is being used by another process.
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_dbw0_6000.trc:
    ORA-01157: cannot identify/lock data file 2 - see DBWR trace file
    ORA-01110: data file 2: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSAUX01.DBF'
    ORA-27086: unable to lock file - already in use
    OSD-00002: additional error information
    O/S-Error: (OS 32) The process cannot access the file because it is being used by another process.
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_dbw0_6000.trc:
    ORA-01157: cannot identify/lock data file 3 - see DBWR trace file
    ORA-01110: data file 3: 'D:\APP\ORACLE\ORADATA\TEST\TEST\UNDOTBS01.DBF'
    ORA-27086: unable to lock file - already in use
    OSD-00002: additional error information
    O/S-Error: (OS 32) The process cannot access the file because it is being used by another process.
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_dbw0_6000.trc:
    ORA-01157: cannot identify/lock data file 4 - see DBWR trace file
    ORA-01110: data file 4: 'D:\APP\ORACLE\ORADATA\TEST\TEST\USERS01.DBF'
    ORA-27086: unable to lock file - already in use
    OSD-00002: additional error information
    O/S-Error: (OS 32) The process cannot access the file because it is being used by another process.
    MRP0: Background Media Recovery terminated with error 1110
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_pr00_7984.trc:
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    Recovery Slave PR00 previously exited with exception 1110
    Errors in file d:\app\oracle\diag\rdbms\testdr\testdr\trace\testdr_mrp0_6640.trc:
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'D:\APP\ORACLE\ORADATA\TEST\TEST\SYSTEM01.DBF'
    Completed: alter database recover managed standby database disconnect from session
    Can anyone tell me why is this comming?
    Regards,
    Sphinx

    Hi ,
    Yes, it is on the same server.
    I have used the below mentioned parameters to rename the files
    At Primary Pfile:
    *.db_file_name_convert=('D:\app\oracle\oradata\test\test\','D:\app\oracle\testdr\oradata\datafiles\')
    *.log_file_name_convert=('D:\app\oracle\oradata\test\test\','D:\app\oracle\testdr\oradata\redologs\')
    At Standby:
    *.db_file_name_convert=('D:\app\oracle\testdr\oradata\datafiles\','D:\app\oracle\oradata\test\test\')
    *.log_file_name_convert=('D:\app\oracle\testdr\oradata\redologs\','D:\app\oracle\oradata\test\test\')
    But the output of v$datafile at standby is showing the path of Primary datafiles
    I manually tried recovering them but it is prompting me the same error.
    Regards
    Edited by: $phinx19 on Feb 7, 2013 6:23 AM

  • Random SP2 error when starting oracle process through SHELL script

    Hi All,
    I am trying to process data in n-Number of tables through a package. The package is called through a shell script to create start data processing. All calls to the package are in a sql script which is basically exec calls-
    exec package.process ('T1','some param');
    exec package.process ('T1','some param');
    exec package.process ('T..n','some param');
    I have a shell script which I use to execute commands from the sql script. There is a reason behind using shell script. For some strange reason, I keep on getting -
    ERROR: logon denied - check for valid user with valid privileges
    SP2-0640: Not connected
    SP2-0641: "EXECUTE" requires connection to server
    SP2-0640: Not connected
    for some EXEC calls. Problem is, errors are generated at random. So in one run, I get error for T10,T11 and then in next run I might get for some other tables.
    However, when I am running the sql script from the sql prompt, all calls to the package are executed without any problem.
    This makes me think, it is something to do with the way database connection being initiated through UNIX.
    Has anyone faced similar issue? Your help/gudence is much appreciated.
    DB: Oracle 10.2.0.5
    OS: SUN Solaris 10
    Thanks in advance.

    Login credentials are provided inside the shell script.
    I did put a sleep(10) after EOF but no help. As mentioned if I run script file from sql promt, it runs without any hiccup. So it is the connection through the UNIX that is causing issue.
    As pointed out by Sybrand, I agree that it does not make a sense to connect and commit after every sql statement. So decided to change the shell script and so far, the result from my initial tests on a sample data is quite encouraging. Hopefully I will have a solution.
    But it will be nice to know why SHELL is doing what it is doing!!
    Legacy prog are sometime big time eye-openers..;)

Maybe you are looking for

  • Queue JNDI lookup in a clustered environment

    Hey all,           I know in a 6.1 cluster, the queues/JMS servers can only reside on one           server.           How can i lookup a queue from internal code from one of the off servers? The           JNDI lookup doesn't grab it, throws an object

  • How to change the values of Map Region Column "REGION_NAME"

    Hi guys, To correspond with the values in my "CITY" column, I have to change the values of Region_name column in the map.. region_name column contains the name of the territories in English but City column in my table contains the names of the territ

  • Sync Mac and PC

    Hi All, I may be posting this in the wrong spot but I could not find a better place. I was wondering if anyone knows of a solution to keep the data on 2 computers synced. What I have: MacBook Pro and Windows Desktop. What I want: A way to keep my pho

  • Macbook Pro keeps shutting down after a period of inactivity

    I don't know if my problem is related to this but after trying to set up Apple's 1Password, my laptop now shuts down after some time after I put it to sleep or even if I don't put it to sleep but don't use it for awhile.      Any ideas?

  • Role import uses technical system id?

    Part of our portal content comes from BW - BEx applications are developed, and placed into a role on the BW side.  We were planning on importing the BW roles as worksets, followed by placing the worksets into a role that will fit into our portal navi