ECATT RAISE EXCEPTION error during multiple record processing

I wish to load records to a table via an in-house-written ABAP program. This program consists of a main screen and multiple sub-screens. I am submitting an Excel spreadsheet as input. The eCATT configuration successfully runs the TCD script for alternate records. For every other record that is processed, a RAISE EXCEPTION error occurs. If an even number of records is submitted, the same result occurs upon multiple re-submissions. If an odd number of records is resubmitted, the RAISE EXCEPTION error occurs on opposite records from the previous submission. For example,
Submission #1:                           Re-submit #1:
1. success                                  1. success 
2. RAISE EXCEPTION                  2. RAISE EXCEPTION
3. success                                  3. success
4. RAISE EXCEPTION                  4. RAISE EXCEPTION
Submission #2:                           Re-submit #2:
1. success                                  1. RAISE EXCEPTION
2. RAISE EXCEPTION                  2. success
3. success                                  3. RAISE EXCEPTION
Any suggestions to resolve this would be much appreciated.

Hi ,
i think the recording of your script is on TCD.
just double click the recording you have made and find a field name called "DATA_INCOMPLETE" parameterised that "X".Now execute and see,it should work fine..
Regards,
Venky

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 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

  • Raise exception Error in BW 3.5

    Hi All,
    Anybody have idea on Raise Exception Error in SAP BW 3.5. It is very urgent yaar.
    Thanks in advance.

    Hi,
    Can you give us the detail error msg what you are getting it?
    So that we can assist you..
    Urs,
    RK.

  • 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 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 PDF post processing in HtmlToPDF

    Hi,
    I am using Web services interface to convert Html document to PDF. Works fine for simple html documents stored locally. However when using a remote html document (for example the one in the quickstart--http://www.adobe.com--I am getting an exception:
    ALC-PDG-16003-16003-000: com.adobe.livecycle.generatedpdf.client.ConversionException: ALC-PDG-016-003-An unknown/unexpected error occurred during PDF post-processing.
    I get the same error when trying this conversion from the Administration Console. I am using JBoss/turnkey. I do not have Adobe Acrobat running on the server computer.
    Thanks,
    Jesse

    Hello Ramya,
    I am not finished checking but I did make some progress. Testing from html file located on the server machine, I use the url for file. For example if the file is named foo.html and it is located in directory c:\adata then the file url is
    file:///c:/adata/foo.html
    That works for me using adminui, and from calling the web service.
    The example in the quickstart ( converting the default page at
    http://www.adobe.com ) does not work for me just yet. Still get the post pdf processing error.
    If not doing so already, check the server log to see if any additional debug information is provided.
    Regards,
    Jesse

  • QM-Calibration Procedure -Error during Result Recording

    Dear Sir,
    During mapping of Calibration Process in SAP,I am getting error ( status check error ) for Result recording of Inspection lot (QM-Calibration).I have follow all the required steps,I am not getting reason of error,Please Advice.
    Thanks

    Dear
    Maintain in sampling procedure radio button palnt maintainance. then check if ur using inspection plan with inspection point.
    else make sampling management radio button on..
    regards
    SANIL

  • Error during condition record maintenance EXEM

    Hello Guys,
    I am trying to maintain condition records for the condition type EXEM. I am getting an error during this process.
    When I get into VV11 and enter the condition type EXEM and hit enter, I get the list of key combinations. For any key combination I select and press enter, I get an error and the following log details. Please find the log details below. Any inputs to fix this error during condition maintenace would be appreciable. The config is maintained perfectly and does not indicate any error.
    Thanks
    Venkat
    Status      Note
    Information     882 Coding generator started                                                                               
    Information     851 Report RV13B998 saved                                                                               
    Information     883 Text pool for report RV13B998 written in language E                                                              
    Error           806 Report RV13B998 has a syntax error                                                                               
    Information     722 Text pool for program RV13B000 does not exist in language 0                                                      
    Information     883 Text pool for report RV13B998 written in language 0                                                              
    Information     883 Text pool for report RV13B998 written in language 1                                                              
    Information     722 Text pool for program RV13B000 does not exist in language 2                                                      
    Information     883 Text pool for report RV13B998 written in language 2                                                              
    Information     883 Text pool for report RV13B998 written in language 3                                                              
    Information     722 Text pool for program RV13B000 does not exist in language 4                                                      
    Information     883 Text pool for report RV13B998 written in language 4                                                              
    Information     722 Text pool for program RV13B000 does not exist in language 5                                                      
    Information     883 Text pool for report RV13B998 written in language 5                                                              
    Information     722 Text pool for program RV13B000 does not exist in language 6                                                      
    Information     883 Text pool for report RV13B998 written in language 6                                                              
    Information     722 Text pool for program RV13B000 does not exist in language 7                                                      
    Information     883 Text pool for report RV13B998 written in language 7                                                              
    Information     722 Text pool for program RV13B000 does not exist in language 8                                                      
    Information     883 Text pool for report RV13B998 written in language 8                                                              
    Information     722 Text pool for program RV13B000 does not exist in language 9                                                      
    Information     883 Text pool for report RV13B998 written in language 9                                                              
    Information     722 Text pool for program RV13B000 does not exist in language A                                                      
    Information     883 Text pool for report RV13B998 written in language A                                                              
    Information     722 Text pool for program RV13B000 does not exist in language B                                                      
    Information     883 Text pool for report RV13B998 written in language B                                                              
    Information     883 Text pool for report RV13B998 written in language C                                                              
    Information     883 Text pool for report RV13B998 written in language D                                                              
    Information     883 Text pool for report RV13B998 written in language E                                                              
    Information     883 Text pool for report RV13B998 written in language F                                                              
    Information     722 Text pool for program RV13B000 does not exist in language G                                                      
    Information     883 Text pool for report RV13B998 written in language G                                                              
    Information     883 Text pool for report RV13B998 written in language H                                                              
    Information     722 Text pool for program RV13B000 does not exist in language I                                                      
    Information     883 Text pool for report RV13B998 written in language I                                                              
    Information     883 Text pool for report RV13B998 written in language J                                                              
    Information     722 Text pool for program RV13B000 does not exist in language K                                                      
    Information     883 Text pool for report RV13B998 written in language K                                                              
    Information     883 Text pool for report RV13B998 written in language L                                                              
    Information     883 Text pool for report RV13B998 written in language M                                                              
    Information     883 Text pool for report RV13B998 written in language N                                                              
    Information     883 Text pool for report RV13B998 written in language O                                                              
    Information     883 Text pool for report RV13B998 written in language P                                                              
    Information     883 Text pool for report RV13B998 written in language Q                                                              
    Information     883 Text pool for report RV13B998 written in language R                                                              
    Information     883 Text pool for report RV13B998 written in language S                                                              
    Information     883 Text pool for report RV13B998 written in language T                                                              
    Information     722 Text pool for program RV13B000 does not exist in language U                                                      
    Information     883 Text pool for report RV13B998 written in language U                                                              
    Information     883 Text pool for report RV13B998 written in language V                                                              
    Information     722 Text pool for program RV13B000 does not exist in language W                                                      
    Information     883 Text pool for report RV13B998 written in language W                                                              
    Information     722 Text pool for program RV13B000 does not exist in language X                                                      
    Information     883 Text pool for report RV13B998 written in language X                                                              
    Information     722 Text pool for program RV13B000 does not exist in language Y                                                      
    Information     883 Text pool for report RV13B998 written in language Y                                                              
    Information     722 Text pool for program RV13B000 does not exist in language a                                                      
    Information     883 Text pool for report RV13B998 written in language a                                                              
    Information     722 Text pool for program RV13B000 does not exist in language b                                                      
    Information     883 Text pool for report RV13B998 written in language b                                                              
    Information     722 Text pool for program RV13B000 does not exist in language c                                                      
    Information     883 Text pool for report RV13B998 written in language c                                                              
    Information     722 Text pool for program RV13B000 does not exist in language d                                                      
    Information     883 Text pool for report RV13B998 written in language d                                                              
    Information     722 Text pool for program RV13B000 does not exist in language i                                                      
    Information     883 Text pool for report RV13B998 written in language i                                                              
    Status      Note
    Information     884 Screen generator started                                                                               
    Information     860 Screen SAPMV13B 1998 saved                                                                               
    Information     858 Screen SAPMV13B 1998 generated                                                                               
    Status      Note
    Information     890 Text field for field INSMK not found                                                                             
    Information     860 Screen SAPMV13B 2998 saved                                                                               
    Information     858 Screen SAPMV13B 2998 generated

    What part of the code would you like?
    It says there is an error in Report RV13B998. This is part of standard.
    Thanks
    Venkat.

  • Recurring error during deployment of process flow packages

    RTC-5161:The deployment cannot proceed because of an error during the generation or pre-deployment phase.
    Whenever I make changes to a process flow, I await the deployment in fear, because every once in a while I get the above message. And then, nothing helps.
    All process flows validate successfully.
    Sometimes creating a new package and copying and pasting the process flows into it solves it, but most of the times even that won't work and I end up creating my process flows all over again.
    Here are the details:
    oracle.wh.repos.sdk.exceptions.WBException: Internal Error: ProcessPackageGenerator.generate WBGeneratedObject[] is null or length 0 for ALL_PFP
    oracle.wh.repos.sdk.exceptions.WBException: Internal Error: ProcessPackageGenerator.generate WBGeneratedObject[] is null or length 0 for ALL_PFP
         at oracle.wh.ui.runtime.application.WHRuntimeProgress.notifyInternalError(WHRuntimeProgress.java:180)
         at oracle.wh.ui.runtime.application.WHRuntimeGeneration.run(WHRuntimeGeneration.java:98)
    \nCMPException message and stack trace:\njava.lang.Exception: Internal Error: ProcessPackageGenerator.generate WBGeneratedObject[] is null or length 0 for ALL_PFP
         at oracle.wh.service.impl.runtime.generation.ProcessPackageGenerator.generate(ProcessPackageGenerator.java:123)
         at oracle.wh.service.impl.runtime.generation.ProcessPackageGenerator.generateProcessPackage(ProcessPackageGenerator.java:451)
         at oracle.wh.service.impl.runtime.generation.ProcessPackageGenerator.generate(ProcessPackageGenerator.java:97)
         at oracle.wh.service.impl.runtime.generation.DeploymentGenerator.generate(DeploymentGenerator.java:75)
         at oracle.wh.service.impl.runtime.UnitControllerImpl.defineUnit(UnitControllerImpl.java:130)
         at oracle.wh.service.impl.runtime.UnitControllerImpl.<init>(UnitControllerImpl.java:78)
         at oracle.wh.service.impl.runtime.DeploymentControllerImpl.defineControllerList(DeploymentControllerImpl.java:249)
         at oracle.wh.service.impl.runtime.DeploymentControllerImpl.<init>(DeploymentControllerImpl.java:50)
         at oracle.wh.service.impl.runtime.DeploymentSpecificationImpl.createController(DeploymentSpecificationImpl.java:395)
         at oracle.wh.ui.runtime.application.WHRuntimeGeneration.run(WHRuntimeGeneration.java:86)

    What helped me something is creating a snapshot of the workflow. And it tells you where the wf model is wrong.
    I agree copy/paste of a wf is something you do not want to do.
    dj

Maybe you are looking for

  • Sending a fax

    G'day, how do I send a fax ? Each time I try I receive a 'Print' 'error while printing' message. iMac   Mac OS X (10.4.9)   2 GHz intel Core Duo

  • Problem with module lazy loading in flex 3

    Hi every body! I have some problems with Module lazy loading. I am using flex 3.5, Module-flex3-0.14, parsley 3.2. I can't get the LazyModuleLoadPolicy working correctly. In my main application (the one that loads the modules), my parsley context is

  • IDOC types in SAP ECC

    Hi Gurus, 1) 3rd party->PI->SAPECC We have a requirement that the tenant refunds coming from 3rd party system should be sent to SAP ECC system. To send this messgae to SAP ECC, is there any separate idoc format for this tenant refunds. Should I use a

  • Why the hell shall I buy a external product? (x-fi car

    Why the hell shall I buy the digital i/o module to have digital output on my soundcard? I need to have digital output to connect my soundcard to my ddts-00 decoder like i used to do with my old audigy 2 zs. Why does creative makes me buy a external m

  • Dreamweaver CS5 will not open. It shows the splash screen and terminates with non admin login

    Dreamweaver CS5 will not open. It shows the splash screen and terminates with non admin login but works fine with admin login. OS - WinXP Sp3 Things I tried. 1) Gave full rights on dreamweaver folder in program files. 2) Disabled welcome screen 3) Up