XML Publisher: issues for  a large data and datatemplate

There is proposal to build a data template with query consisting of 350 columns and the query is expected to fetch around 10000 rows. The data template will have all 350 columns as elements.
In the report, the user can select and show whatever columns it wants.
Apart from tuning of the sql query, what are the other issues involved in the above case.
thanks and regards

I guess,
its gonna take time to get the data into xml from DB,
and
of course, if you attach the template with lot of grouping, which i suppose is going to happen after by looking at the no of columns you have...
wil be heavy on output generation part,
if the template is going to be little complex one, then it wont be a problem :)
what kind of issues you faced till now ?

Similar Messages

  • XML Publisher Issue, Unable to see Data-- Load XML Data Option.

    Hi ,
    Can any one help to solve this issue.
    Iam using XML Publisher tool to develop Oracle reports.
    while doing this iam unable to useXML Publisher.
    We have,
    XML Publisher 5.5 version,
    My problem is iam unable to see " *Microsoft word-->Data-->Load XML Data* " after installation of xml publisher succesfully.
    Every one in my team are working with the same versions.but in my machine iam unable to get this option.
    Thanks-
    Sowmya.

    Hi Sairam,
    Check the checkbox Convert database Null values to default and Convert other Null values to default under Edit -> Report Options and then refresh the report.
    If this does not work you can contact SAP Support.
    - Nrupal

  • XML Parse issues when using Network Data Model LOD with Springframework 3

    Hello,
    I am having issues with using using NDM in conjuction with Spring 3. The problem is that there is a dependency on the ConfigManager class in that it has to use Oracle's xml parser from xmlparserv2.jar, and this parser seems to have a history of problems with parsing Spring schemas.
    My setup is as follows:
    Spring Version: 3.0.1
    Oracle: 11GR2 and corresponding spatial libraries
    Note that when using the xerces parser, there is no issue here. It only while using Oracle's specific parser which appears to be hard-coded into the ConfigManager. Spring fortunately offers a workaround, where I can force it to use a specific parser when loading the spring configuration as follows:
    -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl But this is an extra deployment task we'd rather not have. Note that this issue has been brought up before in relation to OC4J. See the following link:
    How to change the defaut xmlparser on OC4J Standalone 10.1.3.4 for Spring 3
    My question is, is there any other way to configure LOD where it won't have the dependency on the oracle parser?
    Also, fyi, here is the exception that is occurring as well as the header for my spring file.
    org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:
    Line 11 in XML document from URL [file:/C:/projects/lrs_network_domain/service/target/classes/META-INF/spring.xml] is invalid;
    nested exception is oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:396)
         [snip]
         ... 31 more
    Caused by: oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'
         at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:425)
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:287)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:331)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:222)
         at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:155)
         at org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument(DefaultDocumentLoader.java:75)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:388)Here is my the header for my spring configuration file:
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:aop="http://www.springframework.org/schema/aop"
           xmlns:tx="http://www.springframework.org/schema/tx"
           xmlns:context="http://www.springframework.org/schema/context"
           xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">Thanks, Tom

    I ran into this exact issue while trying to get hibernate and spring working with an oracle XMLType column, and found a better solution than to use JVM arguments as you mentioned.
    Why is it happening?
    The xmlparserv2.jar uses the JAR Services API (Service Provider Mechanism) to change the default javax.xml classes used for the SAXParserFactory, DocumentBuilderFactory and TransformerFactory.
    How did it happen?
    The javax.xml.parsers.FactoryFinder looks for custom implementations by checking for, in this order, environment variables, %JAVA_HOME%/lib/jaxp.properties, then for config files under META-INF/services on the classpath, before using the default implementations included with the JDK (com.sun.org.*).
    Inside xmlparserv2.jar exists a META-INF/services directory, which the javax.xml.parsers.FactoryFinder class picks up and uses:
    META-INF/services/javax.xml.parsers.DocumentBuilderFactory (which defines oracle.xml.jaxp.JXDocumentBuilderFactory as the default)
    META-INF/services/javax.xml.parsers.SAXParserFactory (which defines oracle.xml.jaxp.JXSAXParserFactory as the default)
    META-INF/services/javax.xml.transform.TransformerFactory (which defines oracle.xml.jaxp.JXSAXTransformerFactory as the default)
    Solution?
    Switch all 3 back, otherwise you'll see weird errors.  javax.xml.parsers.* fix the visible errors, while the javax.xml.transform.* fixes more subtle XML parsing (in my case, with apache commons configuration reading/writing).
    QUICK SOLUTION to solve the application server startup errors:
    JVM Arguments (not great)
    To override the changes made by xmlparserv2.jar, add the following JVM properties to your application server startup arguments.  The java.xml.parsers.FactoryFinder logic will check environment variables first.
    -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
    However, if you run test cases using @RunWith(SpringJUnit4ClassRunner.class) or similar, you will still experience the error.
    BETTER SOLUTION to the application server startup errors AND test case errors:
    Option 1: Use JVM arguments for the app server and @BeforeClass statements for your test cases.
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory","com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl");
    System.setProperty("javax.xml.parsers.SAXParserFactory","com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl");
    System.setProperty("javax.xml.transform.TransformerFactory","com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl");
    If you have a lot of test cases, this becomes painful.
    Option 2: Create your own Service Provider definition files in the compile/runtime classpath for your project, which will override those included in xmlparserv2.jar.
    In a maven spring project, override the xmlparserv2.jar settings by creating the following files in the %PROJECT_HOME%/src/main/resources directory:
    %PROJECT_HOME%/src/main/resources/META-INF/services/javax.xml.parsers.DocumentBuilderFactory (which defines com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl as the default)
    %PROJECT_HOME%/src/main/resources/META-INF/services/javax.xml.parsers.SAXParserFactory (which defines com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl as the default)
    %PROJECT_HOME%/src/main/resources/META-INF/services/javax.xml.transform.TransformerFactory (which defines com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl as the default)
    These files are referenced by both the application server (no JVM arguments required), and solves any unit test issues without requiring any code changes.
    This is a snippet of my longer solution for how to get hibernate and spring to work with an oracle XMLType column, found on stackoverflow.

  • Convert XML string into an abap format date and time

    Hi,
    Does anyone know of a method or a function module in ABAP which converts XML string into an abap format date and time.
    Here is a part of the xml that I want to convert.
    <ns2:EventDateTime>2009-07-02T10:13:45+10:00</ns2:EventDateTime>
    <ns2:EventMessageTransmissionDateTime>2009-07-02T10:13:45.987+10:00</ns2:EventMessageTransmissionDateTime>
    Currently EventDateTime and EventMessageTransmissionDateTime are type XSDDATETIME_Z and these are converted to proper dates and times. We will be changing these fields to a STRING instead of XSDDATETIME_Z. The reason for this is to make the field more versatile. The customer would be receiving dates with Zulu (2009-09-23T12:00:00Z), with offsets (2009-09-23T12:00:00+10:00/-10:00) and just local timestamp (2009-09-23T12:00:00). With this, we need to make the date fields as string
    to be able to accept the various date formats (esp. the local timestamp).
    I am looking for a standard function module or method that will convert the xml string to a proper date and time abap format.
    Would appreciate anyone's help!
    Thanks.
    Edited by: eunice ocson on Jul 13, 2009 1:49 AM
    Edited by: eunice ocson on Jul 13, 2009 1:50 AM
    Edited by: eunice ocson on Jul 13, 2009 1:51 AM
    Edited by: eunice ocson on Jul 13, 2009 1:51 AM

    Hi Eunice
    Use the FM 'SMUM_XML_PARSE'
    for more info
    [Convert XML string to ABAP|XML String to ABAP or GUI]
    hope it helps you.
    Thanks!!

  • What are the advantages and disadvantages for the larger blocksize and for

    What are the advantages and disadvantages for the larger blocksize and for the smaller blocksize?

    Smaller blocksize
    Advantages
    GoodHas relatively large space overhead due to metadata
    (that is, block header).
    Not recommended for large rows. There might only
    be a few rows stored for each block, or worse, row
    chaining if a single row does not fit into a block, for small rows with lots of random
    access.
    Reduces block contention.
    Disadvantages
    Has relatively large space overhead due to metadata
    (that is, block header).
    Not recommended for large rows. There might only
    be a few rows stored for each block, or worse, row
    chaining if a single row does not fit into a block.
    Larger blocksize
    Advantages
    Has lower overhead, so there is more
    room to store data.
    Permits reading a number of rows into
    the buffer cache with a single I/O
    (depending on row size and block size).
    Good for sequential access or very large
    rows (such as LOB data).
    Disadvantages
    Wastes space in the buffer cache, if you are doing
    random access to small rows and have a large block
    size. For example, with an 8 KB block size and 50
    byte row size, you waste 7,950 bytes in the buffer
    cache when doing random access.
    Not good for index blocks used in an OLTP
    environment, because they increase block contention
    on the index leaf blocks.

  • Q: XML Publisher Training for Customer

    Hi,
    I am working with a customer who is just starting to use XML Publisher. They claim there isn't a lot of training available to them on the product. Do you know of any customer facing training, material, etc that I can send to them?
    Thanks!
    Jennifer

    Well Oracle Univsersity has course material available since last year and has promised to offer a class before October / Oracle World.
    Otherwise I think there is actually quite a bit of material out there:
    - The user guide is 400 pages - with MANY examples.
    - The XML Publisher Desktop comes with a tutorial and 3 flash demos.
    - We have a BLOG and this discussion forum
    - We are based on XSL and XSL-FO - you can find good books from WROX and O'Reilly
    on XSLT and XSL-FO
    - We ship with numerous samples.
    Yes, there could be more training material - and I hope we get the Oracle Univerisity
    Training soon, but it could be far worse ;) Tim and Leslie did an awesome job creating
    all this documentation with a small contribution from me. (Well you can blame me for the Word Template Builder online help).
    Klaus

  • Table and fields for " Batch Code Date " and "Shelf Life days".

    Hi All,
    What is the field for " Batch Code Date " and "Shelf Life days".
    And in which table are they present.
    Thanks & Regards,
    Ahmed.

    Check the table
    MCHA  Batches
    Field VFDAT  Shelf Life Expiration or Best-Before Date

  • Known Issues for Windows 10 SDK and Tools

    Please read about Known Issues for Windows 10 developers in the Known Issues for Windows 10 SDK and Tools
    forum

    To fix this issue, your computer must be connected to the internet to download these components.
    Make sure your computer is connected to the internet.
    Open Control Panel, and select Programs and Features. 
    Select Microsoft Visual Studio 2015 RC, click Change, and then click
    Modify.
    Select the feature “Universal Windows App Development Tools”, and click
    Update.

  • Why Apple doesn't provide .jpg-files for photos with date and our like Blackberry and Samsung?

    why Apple doesn't provide .jpg-files for photos with date and our like Blackberry and Samsung?
    I have to save photos (for medical use) on my pc and this suffix would be useful to identify them quicker.
    Thanks

    http://www.learn.usa.canon.com/resources/blogs/2014/20140708_winston_filenames_b log.shtml

  • Any know issues for JRE 1.6 and BOXI 3.1

    Any know issues for JRE 1.6 and BOXI 3.1

    Our most stable JRE with which we've had best results has been JRE_1.6.0_07
    Hope this helps.

  • XML Publisher Issue - Please help.

    I am getting the following error when running the XML Report . The program is completing in warning message.
    “Beginning post-processing of request 235281769 on node RMOHSDCGR02 at 19-OCT-2010 10:27:33.
    Post-processing of request 235281769 failed at 19-OCT-2010 10:27:34 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.”
    I have checked the OPP file
    SELECT fcpp.concurrent_request_id req_id, fcp.node_name, fcp.logfile_name
    FROM fnd_conc_pp_actions fcpp, fnd_concurrent_processes fcp
    WHERE fcpp.processor_id = fcp.concurrent_process_id
    AND fcpp.action_type = 6
    AND fcpp.concurrent_request_id = 235281769;
    file_details
    [10/9/10 2:18:18 PM] [main] Starting GSF service with concurrent process id = 76893.
    [10/9/10 2:18:18 PM] [main] Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=5
    [10/9/10 2:18:18 PM] [Thread-16] Service thread starting up.
    [10/9/10 2:18:18 PM] [Thread-17] Service thread starting up.
    [10/18/10 11:57:11 AM] [OPPServiceThread0] Post-processing request 235281598.
    [10/18/10 11:57:11 AM] [76893:RT235281598] Executing post-processing actions for request 235281598.
    [10/18/10 11:57:12 AM] [76893:RT235281598] Starting XML Publisher post-processing action.
    [10/18/10 11:57:12 AM] [76893:RT235281598]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [101810_115712335][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [101810_115712335][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [101810_115712336][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [101810_115712336][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [101810_115712336][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [101810_115712336][][EXCEPTION] [DEBUG] [NLS_CHARACTERSET]:[UTF8]
    [101810_115712336][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[-1]
    [101810_115712336][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [101810_115712336][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [101810_115712336][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [101810_115712337][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [101810_115712337][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=rmohsdcgr07.oracleoutsourcing.com)(PORT=10710))(ADDRESS=(PROTOCOL=tcp)(HOST=rmohsdcgr02.oracleoutsourcing.com)(PORT=10710)))(CONNECT_DATA=(SID=DDCGRI)))]
    [101810_115712337][][EXCEPTION] [DEBUG] [RESP_ID]:[-1]
    [101810_115712337][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [101810_115712337][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [101810_115712337][][EXCEPTION] [DEBUG] [USER_ID]:[-1]
    [101810_115712337][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [101810_115712337][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [101810_115712337][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[true]
    [101810_115712338][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RR]
    [101810_115712338][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [101810_115712338][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [101810_115712338][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [101810_115712338][][EXCEPTION] [DEBUG] [NLS_DATE_LANGUAGE]:[AMERICAN]
    [101810_115712338][][EXCEPTION] [DEBUG] [LOGIN_ID]:[-1]
    [101810_115712338][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [101810_115712338][][EXCEPTION] [DEBUG] [APPLTMP]:[ddcgri/applcsf/tmp]
    [101810_115712339][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [101810_115712339][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/i386]
    [101810_115712339][][EXCEPTION] [DEBUG] [java.vm.version]:[1.5.0_06-b05]
    [101810_115712339][][EXCEPTION] [DEBUG] [OVERRIDE_DBC]:[true]
    [101810_115712339][][EXCEPTION] [DEBUG] [dbcfile]:[ddcgri/applmgr/11510/fnd/11.5.0/secure/DDCGRI_rmohsdcgr02/ddcgri.dbc]
    [101810_115712339][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Sun Microsystems Inc.]
    [101810_115712339][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://java.sun.com/]
    [101810_115712339][][EXCEPTION] [DEBUG] [path.separator]:[:]
    [101810_115712339][][EXCEPTION] [DEBUG] [APPLCSF]:[ddcgri/applcsf]
    [101810_115712340][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Server VM]
    [101810_115712340][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [101810_115712340][][EXCEPTION] [DEBUG] [user.country]:[US]
    [101810_115712340][][EXCEPTION] [DEBUG] [sun.os.patch.level]:[unknown]
    [101810_115712340][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [101810_115712340][][EXCEPTION] [DEBUG] [user.dir]:[ddcgri/applcsf/log/DDCGRI_rmohsdcgr02]
    [101810_115712340][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.5.0_06-b05]
    [101810_115712340][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.X11GraphicsEnvironment]
    [101810_115712341][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/endorsed]
    [101810_115712341][][EXCEPTION] [DEBUG] [os.arch]:[i386]
    [101810_115712341][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[ddcgri/applmgr/11510/fnd/11.5.0/secure/DDCGRI_rmohsdcgr02/ddcgri.dbc]
    [101810_115712341][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[tmp]
    [101810_115712341][][EXCEPTION] [DEBUG] [line.separator]:[
    [101810_115712341][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [101810_115712341][][EXCEPTION] [DEBUG] [os.name]:[Linux]
    [101810_115712341][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [101810_115712341][][EXCEPTION] [DEBUG] [cpid]:[76893]
    [101810_115712342][][EXCEPTION] [DEBUG] [sun.jnu.encoding]:[ANSI_X3.4-1968]
    [101810_115712342][][EXCEPTION] [DEBUG] [java.library.path]:[ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/i386/server:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/i386:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/../lib/i386:/ddcgri/product/iAS/lib:/ddcgri/product/806/network/jre11/lib/i686/native_threads:/ddcgri/product/806/network/jre11/lib/linux/native_threads:/ddcgri/applmgr/11510/cz/11.5.0/bin:/ddcgri/product/806/lib:/usr/X11R6/lib:/usr/openwin/lib]
    [101810_115712342][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [101810_115712342][][EXCEPTION] [DEBUG] [java.class.version]:[49.0]
    [101810_115712342][][EXCEPTION] [DEBUG] [sun.management.compiler]:[HotSpot Server Compiler]
    [101810_115712342][][EXCEPTION] [DEBUG] [os.version]:[2.6.9-89.0.26.0.1.ELlargesmp]
    [101810_115712342][][EXCEPTION] [DEBUG] [LONG_RUNNING_JVM]:[true]
    [101810_115712342][][EXCEPTION] [DEBUG] [user.home]:[ddcgri/product]
    [101810_115712342][][EXCEPTION] [DEBUG] [user.timezone]:[Europe/London]
    [101810_115712343][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.print.PSPrinterJob]
    [101810_115712347][][EXCEPTION] [DEBUG] [file.encoding]:[ANSI_X3.4-1968]
    [101810_115712347][][EXCEPTION] [DEBUG] [java.specification.version]:[1.5]
    [101810_115712347][][EXCEPTION] [DEBUG] [CACHEMODE]:[DISTRIBUTED]
    [101810_115712348][][EXCEPTION] [DEBUG] [java.class.path]:[ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/rt.jar:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/lib/dt.jar:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/lib/tools.jar:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/charsets.jar:/ddcgri/applmgr/common/java/appsborg2.zip:/ddcgri/product/806/forms60/java:/ddcgri/applmgr/common/java]
    [101810_115712348][][EXCEPTION] [DEBUG] [user.name]:[apddcgri]
    [101810_115712348][][EXCEPTION] [DEBUG] [DBCFILE]:[ddcgri/applmgr/11510/fnd/11.5.0/secure/DDCGRI_rmohsdcgr02/ddcgri.dbc]
    [101810_115712348][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [101810_115712348][][EXCEPTION] [DEBUG] [java.home]:[ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre]
    [101810_115712348][][EXCEPTION] [DEBUG] [sun.arch.data.model]:[32]
    [101810_115712348][][EXCEPTION] [DEBUG] [user.language]:[en]
    [101810_115712348][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [101810_115712349][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode]
    [101810_115712349][][EXCEPTION] [DEBUG] [logfile]:[ddcgri/applcsf/log/DDCGRI_rmohsdcgr02/FNDOPP76893.txt]
    [101810_115712349][][EXCEPTION] [DEBUG] [java.version]:[1.5.0_06]
    [101810_115712349][][EXCEPTION] [DEBUG] [java.ext.dirs]:[ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/ext]
    [101810_115712349][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/rt.jar:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/i18n.jar:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/sunrsasign.jar:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/jsse.jar:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/jce.jar:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/lib/charsets.jar:/ddcgri/applmgr/common/util/java/1.5/j2sdk1.5.0_06/jre/classes]
    [101810_115712349][][EXCEPTION] [DEBUG] [java.vendor]:[Sun Microsystems Inc.]
    [101810_115712349][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [101810_115712349][][EXCEPTION] [DEBUG] [file.separator]:[]
    [101810_115712349][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://java.sun.com/cgi-bin/bugreport.cgi]
    [101810_115712350][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeLittle]
    [101810_115712350][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[little]
    [101810_115712350][][EXCEPTION] [DEBUG] [APPLOUT]:[out/DDCGRI_rmohsdcgr02]
    [101810_115712350][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[]
    [10/18/10 11:57:13 AM] [UNEXPECTED] [76893:RT235281598] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdoQBnr8m42XW101810_1157132190.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/18/10 11:57:13 AM] [76893:RT235281598] Completed post-processing actions for request 235281598.
    [10/18/10 12:09:20 PM] [OPPServiceThread1] Post-processing request 235281600.
    [10/18/10 12:09:20 PM] [76893:RT235281600] Executing post-processing actions for request 235281600.
    [10/18/10 12:09:20 PM] [76893:RT235281600] Starting XML Publisher post-processing action.
    [10/18/10 12:09:20 PM] [76893:RT235281600]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [10/18/10 12:09:20 PM] [UNEXPECTED] [76893:RT235281600] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdoTQ3qo0WVAG101810_1209202901.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/18/10 12:09:20 PM] [76893:RT235281600] Completed post-processing actions for request 235281600.
    [10/18/10 12:18:30 PM] [OPPServiceThread0] Post-processing request 235281602.
    [10/18/10 12:18:30 PM] [76893:RT235281602] Executing post-processing actions for request 235281602.
    [10/18/10 12:18:30 PM] [76893:RT235281602] Starting XML Publisher post-processing action.
    [10/18/10 12:18:30 PM] [76893:RT235281602]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [10/18/10 12:18:30 PM] [UNEXPECTED] [76893:RT235281602] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdomVNG5CUiJU101810_1218307062.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/18/10 12:18:30 PM] [76893:RT235281602] Completed post-processing actions for request 235281602.
    [10/18/10 1:45:05 PM] [OPPServiceThread1] Post-processing request 235281611.
    [10/18/10 1:45:05 PM] [76893:RT235281611] Executing post-processing actions for request 235281611.
    [10/18/10 1:45:05 PM] [76893:RT235281611] Starting XML Publisher post-processing action.
    [10/18/10 1:45:05 PM] [76893:RT235281611]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [10/18/10 1:45:05 PM] [UNEXPECTED] [76893:RT235281611] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdonSDr1Lclur101810_0145054643.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/18/10 1:45:05 PM] [76893:RT235281611] Completed post-processing actions for request 235281611.
    [10/18/10 2:19:06 PM] [OPPServiceThread0] Post-processing request 235281617.
    [10/18/10 2:19:07 PM] [76893:RT235281617] Executing post-processing actions for request 235281617.
    [10/18/10 2:19:07 PM] [76893:RT235281617] Starting XML Publisher post-processing action.
    [10/18/10 2:19:07 PM] [76893:RT235281617]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [10/18/10 2:19:07 PM] [UNEXPECTED] [76893:RT235281617] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdoyj5TzkRids101810_0219070714.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/18/10 2:19:07 PM] [76893:RT235281617] Completed post-processing actions for request 235281617.
    [10/19/10 5:56:25 AM] [OPPServiceThread0] Post-processing request 235281736.
    [10/19/10 5:56:25 AM] [76893:RT235281736] Executing post-processing actions for request 235281736.
    [10/19/10 5:56:25 AM] [76893:RT235281736] Starting XML Publisher post-processing action.
    [10/19/10 5:56:25 AM] [76893:RT235281736]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [10/19/10 5:56:25 AM] [UNEXPECTED] [76893:RT235281736] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdocZqznUyg1C101910_0556251555.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/19/10 5:56:25 AM] [76893:RT235281736] Completed post-processing actions for request 235281736.
    [10/19/10 6:07:04 AM] [OPPServiceThread1] Post-processing request 235281738.
    [10/19/10 6:07:04 AM] [76893:RT235281738] Executing post-processing actions for request 235281738.
    [10/19/10 6:07:04 AM] [76893:RT235281738] Starting XML Publisher post-processing action.
    [10/19/10 6:07:04 AM] [76893:RT235281738]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [10/19/10 6:07:04 AM] [UNEXPECTED] [76893:RT235281738] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdoZmwsSPwwBh101910_0607047996.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/19/10 6:07:04 AM] [76893:RT235281738] Completed post-processing actions for request 235281738.
    [10/19/10 6:25:28 AM] [OPPServiceThread1] Post-processing request 235281741.
    [10/19/10 6:25:28 AM] [76893:RT235281741] Executing post-processing actions for request 235281741.
    [10/19/10 6:25:28 AM] [76893:RT235281741] Starting XML Publisher post-processing action.
    [10/19/10 6:25:28 AM] [76893:RT235281741]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [10/19/10 6:25:28 AM] [UNEXPECTED] [76893:RT235281741] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdoe1cxbJpotK101910_0625284827.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/19/10 6:25:28 AM] [76893:RT235281741] Completed post-processing actions for request 235281741.
    [10/19/10 7:13:07 AM] [OPPServiceThread0] Post-processing request 235281746.
    [10/19/10 7:13:07 AM] [76893:RT235281746] Executing post-processing actions for request 235281746.
    [10/19/10 7:13:07 AM] [76893:RT235281746] Starting XML Publisher post-processing action.
    [10/19/10 7:13:07 AM] [76893:RT235281746]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [10/19/10 7:13:07 AM] [UNEXPECTED] [76893:RT235281746] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdopfFpKMviMC101910_0713079968.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/19/10 7:13:08 AM] [76893:RT235281746] Completed post-processing actions for request 235281746.
    [10/19/10 7:22:56 AM] [OPPServiceThread1] Post-processing request 235281748.
    [10/19/10 7:22:56 AM] [76893:RT235281748] Executing post-processing actions for request 235281748.
    [10/19/10 7:22:56 AM] [76893:RT235281748] Starting XML Publisher post-processing action.
    [10/19/10 7:22:56 AM] [76893:RT235281748]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    [10/19/10 7:22:56 AM] [UNEXPECTED] [76893:RT235281748] java.io.FileNotFoundException: /tdcg1i/applmgr/common/temp/xdoLVImdiAcDq101910_0722563869.fo (No such file or directory)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFileJDK118(TmpFile.java:146)
         at oracle.apps.xdo.common.tmp.TmpFile.createTmpFile(TmpFile.java:113)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:987)
         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:153)
    [10/19/10 7:22:56 AM] [76893:RT235281748] Completed post-processing actions for request 235281748.
    [10/19/10 8:00:28 AM] [OPPServiceThread0] Post-processing request 235281752.
    [10/19/10 8:00:28 AM] [76893:RT235281752] Executing post-processing actions for request 235281752.
    [10/19/10 8:00:28 AM] [76893:RT235281752] Starting XML Publisher post-processing action.
    [10/19/10 8:00:28 AM] [76893:RT235281752]
    Template code: XXDC_MM_UPL_CREDIT_PROF
    Template app: XXDC
    Language: en
    Territory: 00
    Output type: PDF
    ------ I could not paste the entire file. Please let me know if it is required.
    [10/19/10 10:52:06 AM] [76893:RT235281774] Completed post-processing actions for request 235281774.
    Please help to fix this issue .
    Thanks,
    Am

    Hi,
    What is the application release? Database version? OS?
    Please see these docs.
    XMl Publisher Reports Fail with java.io.FileNotFoundException on Temp Directory After Cloning [ID 1189764.1]
    JAVA.IO.FILENOTFOUNDEXCEPTION NO SUCH FILE FOR EXCEL FORMAT [ID 428855.1]
    XML Publisher Requests Fail Due To java.io.FileNotFoundException - No such file or directory [ID 1072383.1]
    When Running PDF Report, Getting Error File Is Not Accessable From Node/Machine Or java.io.FileNotFoundException [ID 398897.1]
    Thanks,
    Hussein

  • XML Publisher: Need to change OKCTERMSDS Data Source

    My client requires that the XML Publisher Sourcing Template and the Contract
    Terms Template be customised to fit in with their coroprate look-and-feel.
    Whilst I have no issue with being able to change the XSL to create a new
    Template, the underlying XDO Data Sources for these two Templates do not
    contain all of the fields that I require.
    For example, my Customer requires the RFQ/RFI Description field on the final
    output; this does not appear in the XML data file.
    Normally the Short Name on a Data Source relates to a Concurrent Manager
    Program Short Name, but I am unable to find any Programs relating to
    PON_DATA_SOURCE or OKCTERMSDS.
    My questions are:
    1) How are these XML files generated?
    2) Can the "programs" behind the XML generation be changed?

    The XML for the documents are generated by the product code using BC4J XML generation. No concurrent program is involved in it.
    As regards to including additional fields from Sourcing documents into the XML generated, you can use the BC4J extension fwk to extend the ViewObject that generates XML and modify the query to include any additional fields as needed.
    All the above assumes knowledge of Oracle Application Framework and the customization fwk. There is a Metalink Note (dont know the exact id) which explains how to extend BC4J objects and deploy them.

  • XML Publisher issues

    Hi,
    We are using XML Publisher API to generate PDF,EXCEL outputs using Template. While adding image to the template its showing in the pdf output. But not showing in the Excel output. Then i added url:{/Image} in the alt text of the image in template and submitted the report again now able to see the image in excel output. Can you please tell me why its not showing the image in excel by default which is right happening in case of PDF. Iam getting the same issue for HTML outputs generation also. Please tell me what i can do to get the image by default same as the way i am getting in PDF.
    Thanks
    Satya

    Shouldn't this be posted to the BI Publisher support forum??
    Thank you,
    Tony Miller
    Ruckersville, VA

  • Exe on Cloud Service crashing for slightly larger data

    Hi,
    I have launched a C++ exe in cloud service which is working fine for smaller data and crashing as we provide slightly larger data which is taking hardly 5 minutes to solve when running locally.
    Can anyone suggest what could be the issue???
    Thank you.

    Hi ,
    It seems that this is the executionTimeout error. Please try to change "executionTimeout" value.
    <system.web>
    <httpRuntime executionTimeout="600" />
    </system.web>
    >>Also, can you explain the parallel approach that we can use to handle data on azure role. I am using a single web role in my application.
    I am not familiar with C++, but I think you could use the concurrent or multiple threads on your projects:
    http://stackoverflow.com/questions/218786/concurrent-programming-c
    And I found some resource about how to deploy exe on azure, please refer to it:
    http://www.codeproject.com/Articles/331425/Running-an-EXE-in-a-WebRole-on-Windows-Azure
    Another way, You also used the startup script to start and run the EXE file, you could see this blog,
    http://blogs.msdn.com/b/mwasham/archive/2011/03/30/migrating-a-windows-service-to-windows-azure.aspx
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • XML publisher issue

    Hi,
    xml publisher is failing with warnings and in OPP log file i found below error.
    java.lang.OutOfMemoryError: JVMXE006:OutOfMemoryError, stAllocArray for executeJava failed
    XML publisher version is 5.6.3
    Please advice i'm facing this is prod.
    Thanks

    Hi hussen,
    Please find the error in the OPP log file. Yes they face this issue today only.
    [UNEXPECTED] [534844:RT1541460] java.lang.OutOfMemoryError: JVMXE006:OutOfMemoryError, stAllocArray for executeJava failed
         at java.io.ByteArrayOutputStream.<init>(ByteArrayOutputStream.java:75)
         at oracle.apps.xdo.template.FOProcessor.duplicateStream(FOProcessor.java:1695)
         at oracle.apps.xdo.template.FOProcessor.duplicateInput(FOProcessor.java:1679)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1585)
         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)
    Exception: java.lang.OutOfMemoryError
    java.lang.OutOfMemoryError
         at oracle.jdbc.dbaccess.DBDataSetImpl._allocItemsAndBuffers(DBDataSetImpl.java(Compiled Code))
         at oracle.jdbc.dbaccess.DBDataSetImpl._allocDataAndItems(DBDataSetImpl.java(Inlined Compiled Code))
         at oracle.jdbc.dbaccess.DBDataSetImpl.setType(DBDataSetImpl.java(Compiled Code))
         at oracle.jdbc.dbaccess.DBDataSetImpl.setType(DBDataSetImpl.java(Compiled Code))
         at oracle.jdbc.driver.OracleCallableStatement.registerOutParameterBytes(OracleCallableStatement.java(Compiled Code))
         at oracle.jdbc.driver.OracleCallableStatement.registerOutParameter(OracleCallableStatement.java(Inlined Compiled Code))
         at oracle.jdbc.driver.OracleCallableStatement.registerOutParameter(OracleCallableStatement.java(Compiled Code))
         at oracle.apps.fnd.cp.gsm.GenCartComm.getQueueMessage(GenCartComm.java:181)
         at oracle.apps.fnd.cp.gsf.GSMStateMonitor.waitForNextEvent(GSMStateMonitor.java:95)
         at oracle.apps.fnd.cp.gsf.GSMServiceController.mainLoop(GSMServiceController.java:236)
         at oracle.apps.fnd.cp.gsf.BaseServiceController.run(BaseServiceController.java:71)
         at java.lang.Thread.run(Thread.java:570)
    Thanks

Maybe you are looking for

  • Airdrop after iOS 8 upgrade

    HI, I have recently updated my iPad mini to iOS 8 and noticed a bad behavior when transfering photos to my iPhone 5s. the problem is that everytime I try to share a set of photos, only few (4 in my last attempt, when 6 photos were selected) are sent

  • ITunes won't open because the iTunes Library.itl file is locked

    Recently our motherboard died. When we replaced it, we also had to wipe our hard drive. We saved our files, including my iTunes library. I reinstalled iTunes today, but when I tried to open it, I got this error message: "The iTunes Library.itl file i

  • Property inspector not appearing

    When i design a shape(a rectangle for example) the property inspector appears in the borrom of fireworks window. If i import though a picture the property inspector does not appear. Why that? How i can fix this issue and the property inspector be app

  • Mac storage full during upload to iCloud Photo Library

    MacBook Air (13-inch, Mid 2013) 1.3 GHz Intel Core i5 4 GB 1600 MHz DDR3 Intel HD Graphics 5000 1536 MB OS X 10.10.3 I'm uploading my Photos Library to the iCloud Photo Library because I don't have enough space left in my Mac (around 7 GB left). When

  • How to execute the method of a class loaded

    Hi, I have to execute the method of com.common.helper.EANCRatingHelper" + version version may be 1,2, etc if version = 1 the class is com.common.helper.EANCRatingHelper1; Iam able to load the class using following code.But iam unable to execute the m