XML gate way send document erroring out

Hi,
We are using the "CLN_SHOW_SHIPMENT_OAG72_OUT.xgm" to map the ASN 856 XML gateway map.
But this is getting error out in the Show shipment workflow (send document process).
Error Name ECX_SENDDIRECT_ERROR_EMBD
Error Message 6013: Error while processing XML document in SENDDIRECT mode : 'ORA-20100: Error occurred while parsing: Element SHOW_SHIPMENT_005 not complete, expected elements '[DATAAREA]'.'. For further details, see the log corresponding to FND-Logging AFLOG MODULE Name: 'ecx.plsql.trig.CLN.SHOWSHIPO.65899.3.35793.log'.
Error Stack ECX_STANDARD.sendDirectCover(CLN, SHOWSHIPO) ECX_STANDARD.Send(SHOWSHIP, 65899.3, 538854, RUN) Wf_Engine_Util.Function_Call(ECX_STANDARD.SEND, SHOWSHIP, 65899.3, 538854, RUN)
I have done the transaction setup , trading partner setup and reuired ECX profile options.
Below are the steps i am following.
To generate an ASN for one shipment of goods:
1. Log on to the Oracle Order Management application.
2. Create a sales order in Order Management either manually or electronically
through Order Process.
3. Book the sales order.
4. Navigate to Release Sales Order window.
5. Enter the sales order number in Order Number.
6. Click Execute Now to release this sales order.
7. Navigate to the Shipping Transaction window.
8. Click Search Delivery.
9. Enter the delivery name in From Delivery Name.
10. Click Find.
11. Ship confirm the delivery.
◗◗ To extract ASN for a delivery number in case of first ASN failure:
1. Navigate to the Supply Chain Trading Connector responsibility in Oracle
E-Business Suite.
2. Navigate to Requests and select Run.
3. Verify if Single Request is selected. Click Ok.
4. Select CLN:Send XML Show Shipment Document for Request Name.
5. Enter Delivery Number.
6. Click Submit to submit the request.
7. Search for Ship Notice collaboration in the Collaboration History by entering
Delivery Number for Document Number.
The go to workflow administrator > transaction monitor > item type %SHIP% then > go.
After this I could see that the workflow is erroring out at send document process.
Please let me know the what is issue , this could help me a lot.
Regards,
Yudhistar

Hi,
any tips, hints, sample code or other pointersWell, maybe some java, here's your question:
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:38012348052
will refer you to
http://asktom.oracle.com/pls/asktom/f?p=100:11:478714880659465::::P11_QUESTION_ID:952229840241
in the end.

Similar Messages

  • XML Report Publisher program is erroring out

    Hi All,
    I've customized the AR Customer Statements.
    I've created a data definition as "ARXSGP" and uploded the sample_output.xml of Statement Generation Program to it. Also I've created a Data template as "ARXSGPO" and attached the data definition "ARXSGP" to it and uploaded the customized rtf file "XXHCC_CLE_F_ARCUSBALSL.rtf" and set the default output type to PDF.
    As I donot wish to call the XML Report Publisher program manually every time when I Print the Statements through Print Documents-->Statements.
    So I've done the below customization in ARXSGP.rdf file ie; Print Statements Report which is an Oracle Report.
    I've added the below code in After Report trigger.
    =======================================
    FUNCTION AfterReport
    RETURN BOOLEAN
    IS
    BEGIN
    Below code added for Customer Statement Case Study
    DECLARE
    l_req_id NUMBER := 0;
    L_XML_LAYOUT BOOLEAN := TRUE;
    BEGIN
    L_XML_LAYOUT := FND_REQUEST.ADD_LAYOUT (TEMPLATE_APPL_NAME => 'AR', TEMPLATE_CODE => 'ARXSGP', TEMPLATE_LANGUAGE => 'en', TEMPLATE_TERRITORY => 'US', OUTPUT_FORMAT => 'PDF');
    IF L_XML_LAYOUT THEN
    srw.message(20001, 'Template is picked ');
    srw.message(20002,'Concurrent request Id : '||:p_conc_request_id);
    l_req_id := FND_REQUEST.SUBMIT_REQUEST('XDO',
    'XDOREPPB',
    NULL,
    NULL,
    FALSE,
    :p_conc_request_id,
    222, -- Receivables
    'ARXSGPO', -- Statement Generate
    'en-US', -- English
    'N',
    'RTF',
    'PDF');
    IF l_req_id > 0 THEN
    COMMIT;
    ELSE
    srw.message(20004, 'Failed to submit request');
    END IF;
    ELSE -- Not L_XML_LAYOUT
    srw.message(20005, 'Template is not picked ');
    END IF;
    END;
    --------------------Code Ends----------------------------
    SRW.USER_EXIT('FND SRWEXIT');
    RETURN (TRUE);
    END;
    ==============================================
    After Printing the Statements through Print Documents-->Statements
    Statement Generation Program is being called and later XML Report Publisher program is also being invoked.
    But the XML Report Publisher Program is erroring out with below error.
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOREPPB module: XML Report Publisher
    Current system time is 03-SEP-2012 17:42:18
    Oracle XML Publisher 5.6.3
    java.lang.NumberFormatException: For input string: "ARXSGPO"
         at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
         at java.lang.Integer.parseInt(Integer.java:447)
         at java.lang.Integer.parseInt(Integer.java:497)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:215)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    0
    ------------- 1) PUBLISH -------------
    Disabling requested Output Post Processing. Nothing to process. The output of the request is zero byte.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 03-SEP-2012 17:42:22
    Please help out with a solution.
    Thanks,
    Tech D

    for r12 add one row for parameter "Dummy for Data Security" from desc of XDOREPPB
    follow works for me
    SQL> set serveroutput on
    SQL>
    SQL> declare
      2    v_request_id   number;
      3  begin
      4 
      5   begin fnd_global.apps_initialize(0, 20419, 0); end;
      6   v_request_id := FND_REQUEST.SUBMIT_REQUEST('XDO',
      7                                              'XDOREPPB',
      8                                              NULL,
      9                                              NULL,
    10                                              FALSE,
    11                                              'N', -- Dummy for Data Security
    12                                              9888637, -- Request
    13                                              0, -- Template Application
    14                                              'XXAND10_1', -- Template
    15                                              'en-US', -- Template Locale
    16                                              'N', -- Debug Flag
    17                                              'RTF', -- Template Type
    18                                              'RTF' -- Output Format
    19                                              );
    20 
    21    dbms_output.put_line(v_request_id);
    22    if v_request_id > 0 then
    23      dbms_output.put_line('successfully submitted.');
    24      commit;
    25    else
    26      dbms_output.put_line('not submitted.');
    27      rollback;
    28    end if;
    29 
    30  end;
    31  /
    9888651
    successfully submitted.
    PL/SQL procedure successfully completed
    SQL> 'Y' for "Dummy for Data Security" also works for me
    SQL> declare
      2    v_request_id   number;
      3  begin
      4 
      5   begin fnd_global.apps_initialize(0, 20419, 0); end;
      6   v_request_id := FND_REQUEST.SUBMIT_REQUEST('XDO',
      7                                              'XDOREPPB',
      8                                              NULL,
      9                                              NULL,
    10                                              FALSE,
    11                                              'Y', -- Dummy for Data Security
    12                                              9888637, -- Request
    13                                              0, -- Template Application
    14                                              'XXAND10_1', -- Template
    15                                              'en-US', -- Template Locale
    16                                              'N', -- Debug Flag
    17                                              'RTF', -- Template Type
    18                                              'RTF' -- Output Format
    19                                              );
    20 
    21    dbms_output.put_line(v_request_id);
    22    if v_request_id > 0 then
    23      dbms_output.put_line('successfully submitted.');
    24      commit;
    25    else
    26      dbms_output.put_line('not submitted.');
    27      rollback;
    28    end if;
    29 
    30  end;
    31  /
    9888652
    successfully submitted.
    PL/SQL procedure successfully completed
    SQL>

  • XML Report with EXCEL output errors out intermittently

    Hi Gurus,
    We have a custom XML report running for a particular user for whom it is failing intermittently.
    The program does not return any error in log file.
    I also checked the OPP log file but coud not find any issues / errors.
    But Standard manager log file has the below error when the request fails :
    Process monitor session started : 14-SEP-2012 10:25:30*
    Found running request 2823013 attached to dead manager process.*
    Setting request status to completed.*
    fdugpi has recovered SRW driver value*
    Found dead process: spid=(3076), cpid=(236068), ORA pid=(65), manager=(0/0)*
    Starting STANDARD Concurrent Manager               : 14-SEP-2012 10:25:31*
    Process monitor session ended : 14-SEP-2012 10:25:31*
    Please help me out to figure out what is the issue here. Also the standard manager process has died and got restarted.
    We are on 12.1.3 application version with 11gR1 database
    Regards,
    Ram

    You can use BI publisher for your requirement -
    Create a Concurrent program which is based on the executable 'XDODTEXE'
    The Short_Name of the concurrent program should be the same as the data_definition short_name from Xml Publisher responsibility.
    You can go through the link provided by Alex for creating the UI Template and the data template.
    Cheers,
    VB

  • Connecting two error out wires to one error in wire

    Ok, here's my problem, i'm programming an application and want to send two error out wires from two different daq assistant inputs into the error in of one daq assistant output.  I've tryed to merge the signals but Labview doesnt let you merge together the two signals.  I tryed to convert the signals but i couldn't find anything that would let me convert them.  If you could give me any advice, it would be greatly appreciated.  If i have to, i will attach an example of my application and give a explanation of what im trying to do.  Thank-you.

    When you refer to "error wires" I assume you are talking about error clusters. Yes? If so see the attached VI to merge two error streams. Whatever you do, do not use the Merge Errors VI that NI wrote as it can throw away error data. The attached VI preserves all the data it gets.
    To use it, wire one error chain to the left terminal, the second one to the middle terminal and the output is the right terminal.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    Error Fork Stacker.vi ‏55 KB

  • Large XML Document Error

    We are using Oracle's XSQL servlet engine 9.0.2.0.0A to query an Oracle Database using xsql:include-owa. This xsql document uses a custom serializer to write the resulting XML to a file on the webserver. We have run into a problem with writing XML documents larger than approximatly 7MB. The file is written but just contains a Malformed XML Document error. We have tried tracking down the problem and it seems to be occuring before the custom serializer is given control of the document. Attached below is the xsql document and the Java source of our serializer if it would be of any help.
    -Eric Dalquist
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="simple_transform_xml.xsl" serializer="XMLWriter"?>
    <BASE_TAG connection="XXXXXXXX" xmlns:xsql="urn:oracle-xsql">
        <xsql:set-page-param name="save-file" value="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/applInfo.xml"/>
        <xsql:include-owa >
            STUDEV.STUADMSDSET.P_GET_RECRUIT_INFO('A','C');
        </xsql:include-owa>
    </BASE_TAG>-----------------------------------------
    * Author:        Eric Dalquist
    * E-Mail:        [email protected]
    * Date Created:  10-03-2001
    * Last Modified: 10-03-2001
    * Modified By:   Eric Dalquist
    * Description:   This class writes out the contents of the final document produced by the xsql servlet.
    package com.mtu.XSQLSerializers;
    import java.io.FileOutputStream;
    import oracle.xml.xsql.*;
    import oracle.xml.parser.v2.XMLDocument;
    import org.w3c.dom.Document;
    * <P>
    *    XMLWriter is an implementation of the abstract XSQLDocumentSerializer class. It is passed a refrence to a DOM Document
    *    and the servlet environment. The XMLWriter takes the document and writes it out to the servlet's output stream. There
    *    is also the option that the saveFile xsql page parameter can be set to a fully qualified path and file name to write the
    *    document to.
    * </P>
    * <P>
    *    Here is an example of setting the saveFile page paramter. This line would be the first tag inside the root xsql servlet tag.
    * </P>
    * <PRE>
    *    &#060;xsql:set-page-param name="save-file" value="/u01/oracle/ias10210/xdk/java/xsql/Repository/Course_List/XMLDocument.xml"/&#062;
    * </PRE>
    * @author  Eric B. Dalquist
    * @version 1.0 10/03/2001
    public class XMLWriter implements XSQLDocumentSerializer
        /** the header we send if we are returning XML */
        private static final String MIME_XML = "text/xml";
        /** the name of the page parameter we look for to get the path and name to save the XML document to */
        private static final String ATTR_FILE = "save-file";
         * The serialize is called by the servlet engine and is passed the DOM Docuement result
         * from the XSLT transformation if there was one and a refrence to the XSQL servlet environment
         * @param doc The document representation of the XML output of the xsql servlet.
         * @param env A refrence to the servlet's environment.
         * @throws Throwable Any unhandled error is handled by the servlet by default.
        public void serialize(Document doc, XSQLPageRequest env) throws Throwable
            System.out.print("start ... ");
            FileOutputStream fos = null;
            String reqType = env.getRequestType();
            String saveFile = env.getParameter(ATTR_FILE);
            if (!reqType.equals("Command Line"))
                env.setContentType(MIME_XML);
                ((XMLDocument)doc).print(env.getOutputStream());
                env.getOutputStream().close();
            if (saveFile != null && !saveFile.equals("") && saveFile.indexOf("..") == -1 && saveFile.indexOf("~") == -1)
                fos = new FileOutputStream(saveFile);
                ((XMLDocument)doc).print(fos);
                fos.close();
            System.gc();
            System.out.println("end");
    }

    Technically DBMS_XMLSAVE and it's alter ego DBMS_XMLQUERY are not considered part of XML DB. DBMS_XMLSAVE and DBMS_XMLQUERY are legacy Java implementations.
    In 9.2.x these routines were replaced by DBMS_XMLSTORE and DBMS_XMLGEN which are written in 'C' and should be much faster in most cases and address a number of limitations inherant in the older implementations. DBMS_XMLSTORE and DBMS_XMLGEN are part of XML DB and the minimum supported release for XML DB is 9.2.0.3.0.
    DBMS_XMLSAVE issues are addressed in the TECH/XML forum
    http://forums.oracle.com/forums/category.jspa?categoryID=51

  • XML Publisher report errors out when RDF report has no data

    Hi everyone,
    I created a template and attached it to an RDF. When i run the oracle report with the attached template, if the report has 'not data exists' the report is erroring out. is it the normal functionality of XML publiher??. Because i remember at my earlier client i have run some reports for which if 'no data exists' still the program would complete normal but the output would be blank.
    The xml output is creating the tags for the elements.
    any help appeciated.
    Thanks
    sam

    Hi Sam,
    Yes this will happen depending on what the template is repeating on etc. You can handle this quite easily using sub-templates.
    Firstly create your normal template as a sub-template (so surrounded by the <?template:TEMPLATE_NAME?> tags)
    Then create a second template that contains the text "NO DATA FOUND" as another sub-template.
    Create a third template (this will be your main template called by the report), which imports the two sub-templates, then using a choose statement, count the number of occurences of you main repeating group in your XML. If the count = 0 then call the "NO_DATA_FOUND" sub-template, otherwise call the normal sub-template.
    I hope this helps, if you need an example I can send you one, just let me know your email address.
    Regards,
    Cj

  • Conntrans errors out in Send Phase.

    Hi all,
    After Conntrans is initialized, it errors out during send phase and the rest is good.
    This is the first time this user is having this problem. He has been conntransing for long time.
    by the way, we are on 6.0 SP02/5.0 SP11
    the machine has dot net 1.1, 2.0 sp1, 3.0 sp1
    We found this in the TransferService.log:
    3356       fdc                               ! First time: Messages found to send in Outbound Queue: 1 (16 msecs)
    3356       f70      Wed Aug 12 13:52:35 2009 ! Entering AbortStatus
    3356       f70                               ! Leaving  AbortStatus
    3356       fdc      Wed Aug 12 13:52:53 2009 E
      ERROR in TransferService - Send: 'Send' call to Communication Station/CRM Server
    failed with fffffffb:
    (null)
    3356       fdc                               E
      NO ERROR POPUP DISPLAYED !!!
    3356       fdc                               E
      _TransferPushMessages failed with fffffffb
    3356       fdc                               E
    thanks for you help in advance.
    Mahesh

    Hello Mahesh,
    How heavy are the first 20 messages in the Mobile client?
    Can you set the below registry value to 1 and check if SEND works atleast now? This will force ConnTrans to send or receive messages 1 at a time and thereby swithches of the intelligent calculation of Number of messages to exchange.
    HKLM\SOFTWARE\SAP\MSA\NewTransferService\Parameters\NumMsgToPull
    If NumMsgToPull does not exist, create it as a string value and set the value to 1.
    Also, there might be logs at the Commstation that will be of help to us,
    The logs will be present in Windows EventViewer. Different sites have different log file names in the EventViewer.
    Log file names are usually the last few digits of the queue name of the particular site.
    You will also see a generic log file "SAP CRM Mobile Transfer.." which will have generic log information for all the sites.
    These eventviewer logs will be a lot of help to know the problem,
    Thank you
    Best Regards
    Jothi

  • Please help me how concatenate all the error messages and send it as out parameter value.

    Hi Experts,
    Please help me how concatenate all the error messages and send it as out parameter value.
    Thanks.

    Agree with Billy, exception handling is not something that is done by passing parameters around.
    PL/SQL, like other languages, provides a suitable exception handling mechanism which, if used properly, works completely fine.  Avoid misuing PL/SQL by trying to implement some other way of handling them.

  • Need to find the root cause of the XML Publisher report erroring out.

    Hello All,
    After I ran for a Particular Invoice, to have output in XML Publisher Report for Invoice Priting. It got errored out with the below details which i got from the OPP Log file.
    From the below information, how do I get exact root cause. Please do the needful.
    =======================================================================
    [8/6/09 11:16:32 AM] [774712:RT14922832] Executing post-processing actions for request 14922832.
    [8/6/09 11:16:32 AM] [774712:RT14922832] Starting XML Publisher post-processing action.
    [8/6/09 11:16:32 AM] [774712:RT14922832]
    Template code: XXBIORAXINV_PHY
    Template app: BIO_AR
    Language: en
    Territory: 00
    Output type: PDF
    [8/6/09 11:16:33 AM] [UNEXPECTED] [774712:RT14922832] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:229)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:153)
    Caused by: oracle.xdo.parser.v2.XMLParseException: Unexpected EOF.
         at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:324)
         at oracle.xdo.parser.v2.XMLReader.popXMLReader(XMLReader.java:526)
         at oracle.xdo.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1287)
         at oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:314)
         at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:281)
         at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:266)
         ... 17 more
    [8/6/09 11:16:33 AM] [774712:RT14922832] Completed post-processing actions for request 14922832.
    =======================================================================
    Please do the needful. Suggest the steps to get rid of this critical - issue.
    Thanks,
    Abdul

    Please check if Output Post Processor concurrent manager is down/ inactive.
    Restart the manager/ get it restarted and test the issue.
    System Admin >> Concurrent >> Manager >> Administer

  • Xml report getting errored out

    hi friends
    i have one custom xml report with ten parameters whenever i submiteing concurrent program with mandatory paramas it will getting succesfully completed
    without requirement out put. Again whenever i submiteed program with mandatory params and non mandatory parameters it will getting errored out .
    the error was below
    Enter Password:
    MSG-01275: Date select AND afrm.certificate_date BETWEEN :P_FROM_DATE and :P_TO_DATE
    01-OCT-11 31-DEC-11
    REP-1276: Placeholder 'CP_PARENT_NAME' references one or more non-formula columns.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-1276: Placeholder 'CP_PARENT_NAME' references one or more non-formula columns.
    thanks
    chandra

    Hi Chandra,
    There might be a problem with your .rdf.
    Please check the formula column and use srw.message functionality to debug.
    And please enable Trace option while you are running the report.
    So that you can get more info about the errors.

  • Load the document in Firefox (click gmail "Documents") error: The page isn't redirecting properly. Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

    load document in Firefox (clicking gmail "Documents", error: "The page isn't redirecting properly. Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    * http://kb.mozillazine.org/The_page_is_not_redirecting_properly

  • XML Job is error out due to "emsg:was terminated by signal 11"

    We are using XML report to print checks and today suddenly program started error out. Due to following reason.
    APPLLCSP Environment Variable set to :
    XML_REPORTS_XENVIRONMENT is :
    /u30/app/applmgr/abghfprd/806/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /u30/app/applmgr/abghfprd/806/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    stat_low = 8B
    stat_high = 0
    emsg:was terminated by signal 11
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Program was terminated by signal 11
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 5641862.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 5641862 on node E2PSCORHRMDBA02 at 09-JAN-2013 12:56:20.
    Post-processing of request 5641862 failed at 09-JAN-2013 12:56:21 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    Please help me if anybody faces this kind of issues.

    980896 wrote:
    Hi,
    Application version 11.5.10.3 and data base version 11g. Unix OS
    And here is the OPP log details on this.
    Output type: PDF
    [1/9/13 3:43:56 PM] [UNEXPECTED] [524201:RT5642840] java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:247)
    at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    Caused by: oracle.xdo.parser.v2.XMLParseException: Unexpected EOF.
    at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:324)
    at oracle.xdo.parser.v2.XMLReader.popXMLReader(XMLReader.java:526)
    at oracle.xdo.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1287)
    at oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:314)
    at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:281)
    at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:266)
    thanks,
    KrishnaPlease see these docs.
    Output Post Processor (OPP) Log Contains Error "oracle.xdo.parser.v2.XMLParseException: Unexpected EOF" [ID 1273272.1]
    Output Post Processor Fails Due To oracle.xdo.parser.v2.XMLParseException: Unexpected EOF [ID 741501.1]
    R12.1:Pymt Format Instruction Rpt Fails Java.Lang.Reflect.Invocationtargetexception [ID 1328979.1]
    EEO Error Signal 11 Post-Processing Of Request Failed Caused by: oracle.xdo.parser.v2.XMLParseException: Unexpected EOF [ID 461321.1]
    Thanks,
    Hussein

  • Send email automatically when a process message errors out in CO54.

    Hi,
    I am looking for a standard method to send an email to the user when a process message errors out in CO54.
    Is there anyway to do it in standard SAP system? Please let me know.
    Thanks!

    did you enable the email notification on the issue list...... List Settings -> Advance
    Settings option. 
    check this, step by step guide.
    http://ceekam.com/blog/?p=1137
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Error when I try to send document to Business Objects Inbox in Infoview

    I am testing XI 3.1 and when I select a Webi document then click on the option to send a document to a Business Objects Inbox, I get the following error:
    An Error has occurred: Unspecified error.
    Any ideas?

    Hi Paula,
    Following solutions might help you to resolve the issue.
    Following are the rights you need to apply so that the particular set of users can
    send the document to other useru2019s inbox.
    1. Send the Document to Inbox
    Any files stored in the CMS, even the agnostic ones, can be sent to a useru2019s Inbox.
    The file is sent as is, without any refresh in the case of Web Intelligence or Desktop
    Intelligence file.
    To send a document to a useru2019s Inbox, the following rights must be granted:
    u2022 Send document right for Info View application, if the document is sent from Info View
    u2022 Add objects to Folder and View objects rights for the destination Inbox folder
    2. Add a User or A Group to another Group.
    To add a user or a group into a destination group, the following rights must be granted:
    u2022 View objects, Edit objects rights for the destination group
    u2022View objects, Edit objects rights for the source user or group
    u2022Schedule to destinations right should also be granted to the particular group to which
    the user belongs, and download files associated with the object.
    Default users (non-administrative users) should have rights to add objects to other
    useru2019s inbox.
    1. Login to CMC.
    2. In CMC, Home - Inboxes - Rights - Everyone - Advanced - "Explicitly Grant" the
    right 'Add Objects to the folder' and 'View Objects' rights.
    3. In CMC, Home - Groups - Rights - Everyone - Advanced - "Explicitly Grant" the
    right 'Add Objects to the folder' and 'View Objects' rights.
    4. In CMC, Home - Categories - Rights - Everyone - Advanced - "Explicitly Grant" the
    right 'Add Objects to the folder' and 'View Objects' rights.
    Regards,
    Sarbhjeet Kaur

  • Getting error - A message going to a one-way send port is being suspended.

    Hi,
    I am getting the following error message (in the BizTalk administration console), on my Production servers, upon testing one of my BizTalk Interfaces, deployed on the same :-
    A message going to a one-way send port is being suspended. Reason: The send port configuration corresponding to the message was not found.
    This usually happens when a send port was deleted while it still had some active messages.
    The same application is working fine on the Test environment.
    Please note
    à This is a clustered BizTalk environment.
    I have checked, both the Host Instances are running properly, on the same environment.
    I am also able to connect to the SQL database (Msgbox) server, that the BizTalk servers are pointing to.
    Can you kindly guide on the same.

    Hi Shalini,
    This very well could be an SSO issue.  Are you getting any SSO errors in the event log?  Intermittent SSO issues could cause the
    inconsistent results you are seeing.   
    Of course, as the port configuration is stored in the SSODB, if access to this database is restricted port configuration cannot be accessed
    and so the message could not be delivered.
    Refer: http://blog.sabratech.co.uk/2007/02/send-port-configuration-corresponding.html
    Also, try changing the send handler to run under different host instance.
    Rachit
    Please mark as answer or vote as helpful if my reply does

Maybe you are looking for

  • Garageband can not run anymore don't know why

    This is the error : Process:         GarageBand [504] Path:            /Applications/GarageBand.app/Contents/MacOS/GarageBand Identifier:      com.apple.garageband Version:         6.0.5 (428.5) Build Info:      GarageBand_App-4280500~3 App Item ID: 

  • Numbered captions incorrect in Table of Contents

    Hi, I am working on a book project and have a page – let's call it the "image page" – with eight images with manually typed descriptions below each. These descriptions sit in Static Captions. The captions also have a sequential numbering (1, 2, 3, 4,

  • Bug in Flash 8 when using Strings Panel?

    A problem with the strings panel in Flash 8 I have found is that, when working with 6 languages, if you save and close down your Flash file with the Strings panel hidden, and re-open the FLA and then view the strings panel/view your text on the stage

  • Go to and play

    Hi, im trying to play flash file once thru then at end to to frame 53 and loop from there?

  • Setting a URL

    Hi everybody, I have code and html organized like this: Main folder -> docs (html) -> source (code) And I'm trying to set a page of html from the docs folder on a JEditorPane. I called the setPage method of JEditorPane like this: pane.setPage( getCla