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

Similar Messages

  • 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

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

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

  • SE117: General error during acceptance posting

    Hello all,
    I have ceated a Shipping cost document, account assignment is fully completed.
    While I am trying to transfer the shipping cost document, the following error message occurs in the log:
    (SE117: General error during acceptance posting)
    Can any one please help through the hint on how to get rid of this?
    Thank you so much in advance.
    Manikonda.P

    I too have run into this error message when attempting to transfer a Shipment Cost Document to FI/CO.
    It is obvious that this error message is not very descriptive so here is what I did in an effort to resolve:
    First, attempt to manually post an FI document using the same G/L Account Assignment used in the SCD that is throwing the error message "SE117:  General error during acceptance posting".  You can use FB01, FB60, ME21N and then enter a GR, etc. to verify that the account assignment is valid.
    What I discovered in my scenario is that the profit center I was using was blocked.  Once I used a valid G/L Account + Profit Center Combination the error went away and I was eventually able to transfer the SCD to FI/CO.
    Thank you.
    Rich
    http://www.linkedin.com/pub/4/665/981

  • Error during start of process in Inegration Process

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

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

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

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

    Message was edited by:
    Marc Kelderman

  • Error during start of process of type

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

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

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

  • LUW data for smq2--Error During Delivery: Ibound processing locked

    Hi all,
    There are lot of messages(more than 7000) stucked in d Inbound queues, as viewed by SMQ2, and are in the retry mode for long.
    In the LUW data the status of the queue is showing error during delivery and the error text is <b>Inbound Processing Locked for example Deadline Processing </b>
    can anyone please suggest what this problem is about and suggstions for removing this problem will be really appreciated.
    This is urgent as the problem is in production.
    Regards,
    Rookie.

    Hi Prateek,
    The BPM involved is a dicesion making BPM which is creting large Idocs.
    We have checked in SM12 and the messages are locked there. Can you please advice how can we unlock the messages from SM12.

  • BAPI_INSPLOT_SETUSAGEDECISION Error during quantity posting for inspection

    Dear SAP Guru,
    I used a BAPI call : BAPI_INSPLOT_SETUSAGEDECISION in my program to perform UD and post Q-stock to Unrestricted stock. The BAPI executed successfully for my developer user account but not for end user account login.
    The BAPI returns an error as below:
    Error captured in system: EQV                  054Error during quantity posting for inspection lot 340005776022, manual proc. Required
    Guess some authorization object for the BAPI_INSPLOT_SETUSAGEDECISION call is missing.
    Have tried SE97 for possible Authorization Check for Start of a Transaction but not able to solve the problem.
    Can anyone help? Really appreciate that.
    Thanks and Regards.

    Hi ,
    Run the transction SU53 after the error with user login id , to see authorization .
    Amol

  • 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