XMLPUBLISHER-XLOUTPUT

Hi
This is mohan.I have to display the output in XL format when the output is in flat format how to do this using XML PUBLISHER

Hi Tim
If the format is
http://xdopf.us.oracle.com/xmlpserver/Guest/Executive/Salary%20Report/Salary%20Report.xdo
there is no issue with the guest login.
However when you change it to use parameters e.g
http://bynxdev.uk.bynx.com:15101/xmlpserver/servlet/xdo?_xpf=&_xpt=0&_xf=pdf&_xdo=%2FGuest%2FBYNX_FLEET%2FQuotations%2FQUOTATION_DETAILS%2FQUOTATION_DETAILS.xdo&quotationModelId=420
you have a problem with a message
"Your session has expired, please click here to log in again."
I am testing using 5.6.2 and also on BI Publisher 10.1.3.2
Thanks

Similar Messages

  • BarCode Using XMLPublisher

    Hi,
    I am trying to want to embed BARCODE into the PDF Generated XML Publisher Report.
    I have Used the IDAUTOMATION Utility for this purpose and also refered to xml Publisher blob
    http://blogs.oracle.com/xmlpublisher/2007/05/09
    If I try to compile Java File, I get following errors.
    Note that I have used the sample code provided in the blob.
    javac BTest.java
    BTest.java:12: cannot resolve symbol
    symbol : class XDOBarcodeEncoder
    location: class oracle.apps.xdo.template.rtf.util.BTest
    public class BTest implements XDOBarcodeEncoder
    ^
    I guess that XDOBarcodeEncoder is not getting resolved or is does not exists.
    I have searched the path for this file but could not be found.
    Is this becuase XML Publisher which is 5.0 in my case.
    do I need to upgrade it to 5.6.?
    Thanking in anticipation.
    Nike

    You need to come to 5.6 at least :o)

  • Help w/ Standalone XMLPublisher as a Web Service

    I've installed the standalone XMLPublisher and have begun using the XDODemo550 and onlinereport applications.
    What I need to do is expose a web service that, when properly called, will kick off the processing of a report with data from a database and then deliver the report via email. Is there any documentation that would help me achieve this?
    Thanks in advance for any help.

    Hi ;
    Look at this thread which I think might help you to achieve:
    Re: XMLP - Mail issue
    HTH
    Shaun

  • Xmlpublisher & printing reports

    Howdy,
    Is there a way to print report without logging in to the xmlpublisher like you can do it in Oracle Reports?
    For example, application executes the following url:
    http://server:port/xmlpserver/catalog/test1/test1.xdo?_xpf=&_xpt=1&_xdo=user test1test1.xdo&param1=... etc... and it directs me to login form. But I need to somehow avoid logging in(also LDAP is not an option). Is this possible?
    Thanks in advance

    Hi Tim
    If the format is
    http://xdopf.us.oracle.com/xmlpserver/Guest/Executive/Salary%20Report/Salary%20Report.xdo
    there is no issue with the guest login.
    However when you change it to use parameters e.g
    http://bynxdev.uk.bynx.com:15101/xmlpserver/servlet/xdo?_xpf=&_xpt=0&_xf=pdf&_xdo=%2FGuest%2FBYNX_FLEET%2FQuotations%2FQUOTATION_DETAILS%2FQUOTATION_DETAILS.xdo&quotationModelId=420
    you have a problem with a message
    "Your session has expired, please click here to log in again."
    I am testing using 5.6.2 and also on BI Publisher 10.1.3.2
    Thanks

  • Ask - how to draw diagonal border on XMLPublisher report?

    Hi all,
    I need to draw diagonal border on my XML Publisher report.
    xsl attributes I tried are:
    <xsl:attribute xdofo:ctx="block" name="border-diagonal">1pt solid #000005</xsl:attribute>
    <xsl:attribute xdofo:ctx="block" name="border-diagonaldown">1pt solid #000005</xsl:attribute>
    <xsl:attribute xdofo:ctx="block" name="border-diagonalup">1pt solid #000005</xsl:attribute>
    <xsl:attribute xdofo:ctx="block" name="tl2br">1pt solid #000005</xsl:attribute>
    but no one has effected
    can anyone help me this issue?

    The solution is AHformater, but it's have lisence.
    Another is use a picture on template, and caculate shape-offset-x, y, and size-y.
    I don't know why xmlp not support show diagonal border.

  • XmlPublisher element name conflict problem

    How do I specifically tell the publisher to choose between two similar element name under different branch which one I want?
    example:
    <root>
         <same>Not what I want</same>
        <branch>
            <same>What I want</same>
        </branch>
    </root>

    How do I specifically tell the publisher to choose between two similar element name under different branch which one I want?
    example:
    <root>
         <same>Not what I want</same>
        <branch>
            <same>What I want</same>
        </branch>
    </root>

  • Problem with XMLPublisher

    hi gareth
    i have done the steps for creating XML Publisher report which were in this below thread,
    Re: How to Call BI Publisher Report From EBS
    what can be the problem here my RTF template have graph and data with two parameters ...... actually previously i have added below data template which was saved in .xml and attached in data template upload file which worked perfectly with rtf template only tabular data(not with graph)
    please help me in this regard
    data template
    <dataTemplate name="SrBysrtype" description="ServiceRequestBySrtype" dataSourceRef="demo" defaultPackage="BIP_DateRange">
    <parameters>
    <parameter name="p_fromdate" dataType="char"/>
    <parameter name="p_todate" dataType="char"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="Q1">
    <![CDATA[
    SELECT
    incident.Incident_Number as ServiceRequestNumber,
    TO_CHAR (incident.incident_date,'DD-MON-YYYY') as ServiceRequestDate,
    incident.Summary as Summary,
    agenttime.agentname as AgentName,
    to_char(agenttime.agentstarttime,'DD-MM-YYYY HH24:MI') as StartTime,
    to_char(to_date('00:00:00','HH24:MI:SS') +
    (agenttime.endtime-agenttime.agentstarttime), 'HH24:MI') as TimeSpent
    FROM cs_incidents_all_b incident,cs_agenttime_agv agenttime
    WHERE &srwhereclause]]>
    </sqlStatement>
    </dataQuery>
    <dataTrigger name="beforeReport" source="BIP_DateRange.beforereport"/>
    <dataStructure>
    <group name="G_SR" source="Q1">
    <element name="Incident_Number" value="ServiceRequestNumber"/>
    <element name="Incident_date" value="ServiceRequestDate"/>
    <element name="Summary" value="Summary"/>
    <element name="agentname" value="AgentName"/>
    <element name="agentstarttime" value="StartTime"/>
    <element name="AgentDuration" value="TimeSpent"/>
    </group>
    </dataStructure>
    </dataTemplate>
    &srwhereclause
    create or replace
    package BIP_DateRange as
    srwhereclause varchar2(1000) := ' 1=1';
    p_fromdate varchar2(400);
    p_todate varchar2(400);
    function beforereport return boolean;
    end BIP_DateRange;
    create or replace
    PACKAGE BODY bip_daterange
    AS
    FUNCTION beforereport
    RETURN BOOLEAN
    IS
    BEGIN
    fnd_file.put_line(fnd_file.log,'p_fromdate: ' || p_fromdate);
    fnd_file.put_line(fnd_file.log,'p_todate: ' || p_todate);
    IF p_fromdate IS NOT NULL THEN
    srwhereclause := ' agenttime.incident_id=incident.incident_id' || ' AND incident.incident_date between TO_DATE(''' || p_fromdate || ''',''YYYY/MM/DD HH24:MI:SS'')';
    END IF;
    IF p_todate IS NOT NULL THEN
    srwhereclause := srwhereclause || ' AND TO_DATE(''' || p_todate || ''',''YYYY/MM/DD HH24:MI:SS'')';
    END IF;
    fnd_file.put_line(fnd_file.log,'srwwhereclause ' || srwhereclause);
    RETURN TRUE;
    END;
    END bip_daterange;
    XDO Data Engine Version No: 5.6.3
    Resp: 20638
    Org ID : 204
    Request ID: 4445738
    All Parameters: p_fromdate="2009/07/05 00:00:00":p_todate="2009/07/07 00:00:00"
    Data Template Code: SRSD1
    Data Template Application Short Name: CS
    Debug Flag: N
    {p_todate=2009/07/07 00:00:00, p_fromdate=2009/07/05 00:00:00}
    Calling XDO Data Engine...
    080709_042232065][EXCEPTION java.lang.NullPointerException
    at oracle.apps.xdo.dataengine.DataTemplateParser.GetNodeNumChildren(DataTemplateParser.java:345)
    at oracle.apps.xdo.dataengine.DataTemplateParser.templateParser(DataTemplateParser.java:277)
    at oracle.apps.xdo.dataengine.XMLPGEN.setDataTemplate(XMLPGEN.java:599)
    at oracle.apps.xdo.dataengine.DataProcessor.setDataTemplate(DataProcessor.java:193)
    at oracle.apps.xdo.oa.util.DataTemplate.<init>(DataTemplate.java:136)
    at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:282)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    at com.sun.java.util.collections.ArrayList.RangeCheck(ArrayList.java:492)
    at com.sun.java.util.collections.ArrayList.get(ArrayList.java:306)
    at oracle.apps.xdo.dataengine.DataTemplateParser.getParentDataSource(DataTemplateParser.java:1737)
    at oracle.apps.xdo.dataengine.XMLPGEN.writeDefaultGroup(XMLPGEN.java:320)
    at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:279)
    at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:266)
    at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:205)
    at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:237)
    at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:364)
    at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:236)
    at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:293)
    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...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 4445738 on node APPSR12 at 07-AUG-2009 04:22:32.
    Post-processing of request 4445738 failed at 07-AUG-2009 04:22:33 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 07-AUG-2009 04:22:34
    opp log
    [Full GChttp://Unloading class sun.reflect.GeneratedSerializationConstructorAccessor49
    http://Unloading class sun.reflect.GeneratedSerializationConstructorAccessor50
    21434K->14225K(30292K), 0.1455860 secs]
    http://GC 23825K->14565K(34464K), 0.0027950 secs
    http://GC 24165K->14884K(34464K), 0.0036760 secs
    http://GC 24484K->14342K(34464K), 0.0172650 secs
    http://GC 23942K->14339K(34464K), 0.0032540 secs
    http://GC 23939K->14344K(34464K), 0.0033020 secs
    http://GC 23944K->14345K(34464K), 0.0033080 secs
    http://GC 23945K->14326K(34464K), 0.0031820 secs
    http://GC 23926K->14346K(34464K), 0.0032830 secs
    http://GC 23942K->14331K(34464K), 0.0032360 secs
    http://GC 23931K->14335K(34464K), 0.0032960 secs
    http://GC 23935K->14353K(34464K), 0.0033410 secs
    http://GC 23953K->14358K(34464K), 0.0033870 secs
    http://GC 23958K->14343K(34464K), 0.0035630 secs
    http://GC 23943K->14350K(34464K), 0.0033800 secs
    http://GC 23950K->14366K(34464K), 0.0034870 secs
    http://GC 23963K->14361K(34464K), 0.0034620 secs
    http://GC 23961K->14354K(34464K), 0.0035260 secs
    http://GC 23954K->14356K(34464K), 0.0035100 secs
    http://GC 23951K->14364K(34464K), 0.0034750 secs
    http://GC 23964K->14378K(34464K), 0.0034940 secs
    http://GC 23978K->14365K(34464K), 0.0034390 secs
    http://GC 23965K->14449K(34464K), 0.0042150 secs
    http://GC 24049K->14614K(34464K), 0.0178290 secs
    http://GC 24214K->14950K(34464K), 0.0038220 secs
    http://GC 24550K->15280K(34464K), 0.0052340 secs
    http://GC 24880K->15617K(34464K), 0.0047740 secs
    http://GC 25217K->15057K(34464K), 0.0048900 secs
    http://GC 24657K->15149K(34464K), 0.0039920 secs
    http://GC 24749K->15488K(34464K), 0.0070360 secs
    http://GC 25088K->15828K(34464K), 0.0163490 secs
    http://GC 25428K->16158K(34464K), 0.0127590 secs
    http://GC 25758K->15570K(34464K), 0.0041950 secs
    http://GC 25170K->15808K(34464K), 0.0060960 secs
    http://GC 25408K->16145K(34464K), 0.0079090 secs
    http://GC 25745K->15579K(34464K), 0.0034520 secs
    http://GC 25179K->15657K(34464K), 0.0040490 secs
    http://GC 25257K->15988K(34464K), 0.0068030 secs
    http://GC 25588K->16329K(34464K), 0.0241400 secs
    http://GC 25929K->16665K(34464K), 0.0055910 secs
    http://GC 26265K->16199K(34464K), 0.0051160 secs
    http://GC 25799K->16102K(34464K), 0.0014960 secs
    http://GC 25702K->16404K(34464K), 0.0046970 secs
    http://GC 26004K->16742K(34464K), 0.0040810 secs
    http://GC 26342K->17074K(34464K), 0.0051900 secs
    http://GC 26674K->16471K(34464K), 0.0015760 secs
    http://GC 26071K->16510K(34464K), 0.0033840 secs
    http://GC 26110K->16489K(34464K), 0.0032390 secs
    http://GC 26089K->16509K(34464K), 0.0033230 secs
    http://GC 26108K->16504K(34464K), 0.0032990 secs
    http://GC 26104K->16700K(34464K), 0.0050920 secs
    http://GC 26300K->17007K(34464K), 0.0034080 secs
    http://GC 26607K->17321K(34464K), 0.0043820 secs
    http://GC 26921K->17645K(34464K), 0.0052200 secs
    http://GC 27245K->17948K(34464K), 0.0043760 secs
    http://GC 27548K->17427K(34464K), 0.0050020 secs
    http://GC 15080K->10447K(17220K), 0.0025940 secs
    http://GC 15247K->10601K(17220K), 0.0025860 secs
    http://GC 15401K->10756K(17220K), 0.0025550 secs
    http://GC 15556K->10915K(17220K), 0.0025600 secs
    http://GC 15715K->11076K(17220K), 0.0026360 secs
    http://GC 15876K->11231K(17220K), 0.0025240 secs
    http://GC 16031K->11387K(17220K), 0.0027500 secs
    http://GC 16187K->11544K(17220K), 0.0025050 secs
    http://GC 16344K->11700K(17220K), 0.0024910 secs
    http://GC 16500K->11859K(17220K), 0.0026080 secs
    http://GC 16659K->12018K(17220K), 0.0025760 secs
    http://GC 16818K->11839K(17220K), 0.0174470 secs
    http://GC 16636K->11789K(17220K), 0.0026410 secs
    http://GC 16589K->11804K(17220K), 0.0026160 secs
    http://GC 16604K->11789K(17220K), 0.0025820 secs
    http://GC 16589K->11813K(17220K), 0.0027060 secs
    http://GC 16613K->11810K(17220K), 0.0026490 secs
    http://GC 16610K->11902K(17220K), 0.0036940 secs
    http://GC 16702K->12072K(17220K), 0.0050200 secs
    http://GC 16872K->12238K(17348K), 0.0030590 secs
    [Full GChttp://Unloading class sun.reflect.GeneratedSerializationConstructorAccessor50
    12238K->5055K(17348K), 0.1410630 secs]
    http://GC 9855K->5250K(17220K), 0.0032590 secs
    http://GC 10050K->5424K(17220K), 0.0045800 secs
    http://GC 10220K->5149K(17220K), 0.0034410 secs
    http://GC 9949K->5170K(17220K), 0.0025680 secs
    http://GC 9970K->5179K(17220K), 0.0012050 secs
    http://GC 9979K->5347K(17220K), 0.0018580 secs
    http://GC 10147K->5172K(17220K), 0.0011680 secs
    http://GC 9972K->5327K(17220K), 0.0020900 secs
    http://GC 10127K->5485K(17220K), 0.0026860 secs
    http://GC 10285K->5644K(17220K), 0.0660530 secs
    http://GC 10444K->5800K(17220K), 0.0024990 secs
    http://GC 10600K->5955K(17220K), 0.0023180 secs
    http://GC 10755K->6115K(17220K), 0.0024180 secs
    http://GC 10915K->6273K(17220K), 0.0024120 secs
    http://GC 11073K->6423K(17220K), 0.0024770 secs
    http://GC 11223K->6586K(17220K), 0.0023990 secs
    http://GC 11386K->6745K(17220K), 0.0024570 secs
    http://GC 11545K->6897K(17220K), 0.0212500 secs
    http://GC 11697K->7055K(17220K), 0.0024360 secs
    http://GC 11855K->7217K(17220K), 0.0023740 secs
    http://GC 12017K->7372K(17220K), 0.0023790 secs
    http://GC 12172K->7532K(17220K), 0.0024230 secs
    http://GC 12332K->7691K(17220K), 0.0024540 secs
    http://GC 12491K->7842K(17220K), 0.0023670 secs
    http://GC 12642K->8024K(17220K), 0.0025350 secs
    http://GC 12824K->8181K(17220K), 0.0157440 secs
    http://GC 12981K->8338K(17220K), 0.0024370 secs
    http://GC 13138K->8491K(17220K), 0.0024180 secs
    http://GC 13291K->8654K(17220K), 0.0023860 secs
    http://GC 13454K->8815K(17220K), 0.0024180 secs
    http://GC 13615K->8968K(17220K), 0.0024920 secs
    http://GC 13768K->9122K(17220K), 0.0023730 secs
    http://GC 13922K->9283K(17220K), 0.0024180 secs
    http://GC 14083K->9439K(17220K), 0.0024460 secs
    http://GC 14239K->9599K(17220K), 0.0023950 secs
    http://GC 14399K->9756K(17220K), 0.0023630 secs
    http://GC 14556K->9914K(17220K), 0.0023940 secs
    http://GC 14714K->10071K(17220K), 0.0024770 secs
    http://GC 14871K->10229K(17220K), 0.0024210 secs
    http://GC 15029K->10387K(17220K), 0.0026350 secs
    http://GC 15187K->10548K(17220K), 0.0024560 secs
    http://GC 15348K->10703K(17220K), 0.0111950 secs
    http://GC 15503K->10861K(17220K), 0.0025020 secs
    http://GC 15661K->11019K(17220K), 0.0024990 secs
    http://GC 15819K->11177K(17220K), 0.0024570 secs
    http://GC 15977K->11340K(17220K), 0.0025480 secs
    http://GC 16140K->11489K(17220K), 0.0023490 secs
    http://GC 16289K->11649K(17220K), 0.0025490 secs
    http://GC 16449K->11805K(17220K), 0.0024150 secs
    http://GC 16605K->11963K(17220K), 0.0024460 secs
    http://GC 16763K->12115K(17220K), 0.0024330 secs
    http://GC 16915K->12277K(17348K), 0.0024880 secs
    [Full GChttp://Unloading class sun.reflect.GeneratedSerializationConstructorAccessor51
    12277K->12277K(17348K), 0.1026560 secs]
    http://GC 20099K->12541K(29044K), 0.0275010 secs
    http://GC 20669K->12083K(29044K), 0.0167860 secs
    http://GC 20211K->12092K(29044K), 0.0027670 secs
    http://GC 20220K->12087K(29044K), 0.0026460 secs
    http://GC 20215K->12087K(29044K), 0.0026180 secs
    http://GC 20215K->12090K(29044K), 0.0026630 secs
    http://GC 20218K->12076K(29044K), 0.0026010 secs
    http://GC 20204K->12094K(29044K), 0.0027130 secs
    http://GC 20217K->12091K(29044K), 0.0026900 secs
    http://GC 20218K->12093K(29044K), 0.0026900 secs
    http://GC 20220K->12096K(29044K), 0.0014490 secs
    http://GC 20224K->12105K(29044K), 0.0028610 secs
    http://GC 20233K->12106K(29044K), 0.0027940 secs
    http://GC 20234K->12103K(29044K), 0.0028100 secs
    http://GC 20231K->12117K(29044K), 0.0053410 secs
    http://GC 20245K->12115K(29044K), 0.0029500 secs
    http://GC 20243K->12117K(29044K), 0.0029760 secs
    http://GC 20241K->12102K(29044K), 0.0027860 secs
    http://GC 20226K->12114K(29044K), 0.0028310 secs
    http://GC 20242K->12123K(29044K), 0.0029400 secs
    http://GC 20251K->12128K(29044K), 0.0029430 secs
    http://GC 20255K->12116K(29044K), 0.0027950 secs
    http://GC 20244K->12113K(29044K), 0.0027730 secs
    http://GC 20241K->12120K(29044K), 0.0028110 secs
    http://GC 20248K->12199K(29044K), 0.0035830 secs
    http://GC 20327K->12489K(29044K), 0.0358270 secs
    http://GC 20617K->12774K(29044K), 0.0037710 secs
    http://GC 20902K->13066K(29044K), 0.0053510 secs
    http://GC 21194K->13339K(29044K), 0.0041970 secs
    http://GC 21467K->12998K(29044K), 0.0052640 secs
    http://GC 21126K->13052K(29044K), 0.0043220 secs
    http://GC 21180K->13125K(29044K), 0.0049830 secs
    http://GC 21253K->13415K(29044K), 0.0237750 secs
    http://GC 21543K->13700K(29044K), 0.0105460 secs
    http://GC 21828K->13998K(29044K), 0.0094900 secs
    http://GC 22126K->13533K(29044K), 0.0039890 secs
    http://GC 21661K->13648K(29044K), 0.0039530 secs
    http://GC 21776K->13936K(29044K), 0.0028250 secs
    http://GC 22064K->14222K(29044K), 0.0090810 secs
    http://GC 22350K->13791K(29044K), 0.0034050 secs
    http://GC 21919K->13857K(29044K), 0.0037040 secs
    http://GC 21985K->14143K(29044K), 0.0061730 secs
    http://GC 22271K->14425K(29044K), 0.0039960 secs
    http://GC 22553K->14733K(29044K), 0.0043350 secs
    http://GC 22861K->15008K(29044K), 0.0042110 secs
    http://GC 23134K->14516K(29044K), 0.0040550 secs
    http://GC 22644K->14548K(29044K), 0.0012390 secs
    http://GC 22676K->14843K(29044K), 0.0070020 secs
    http://GC 22971K->15125K(29044K), 0.0034080 secs
    http://GC 23253K->15406K(29044K), 0.0048320 secs
    http://GC 23534K->15691K(29044K), 0.0041580 secs
    http://GC 23819K->15302K(29044K), 0.0047060 secs
    http://GC 23430K->15228K(29044K), 0.0027440 secs
    http://GC 23352K->15211K(29044K), 0.0185430 secs
    http://GC 23339K->15214K(29044K), 0.0026490 secs
    http://GC 23342K->15486K(29044K), 0.0051460 secs
    http://GC 23614K->15299K(29044K), 0.0033780 secs
    http://GC 23427K->15564K(29044K), 0.0055570 secs
    http://GC 23692K->15831K(29044K), 0.0033620 secs
    http://GC 23959K->16095K(29044K), 0.0047330 secs
    http://GC 24223K->16360K(29044K), 0.0038470 secs
    http://GC 24488K->16629K(29044K), 0.0038260 secs
    http://GC 24757K->16904K(29044K), 0.0039380 secs
    15065K->12378K(21400K), 0.4594710 secs]
    http://GC 20698K->12660K(29976K), 0.0024430 secs
    http://GC 20980K->12927K(29976K), 0.0034720 secs
    http://GC 21247K->12465K(29976K), 0.0164940 secs
    http://GC 20785K->12497K(29976K), 0.0031210 secs
    http://GC 20812K->12486K(29976K), 0.0029630 secs
    http://GC 20806K->12497K(29976K), 0.0030520 secs
    http://GC 20817K->12682K(29976K), 0.0048190 secs
    http://GC 21002K->12978K(29976K), 0.0071710 secs
    http://GC 21298K->13285K(29976K), 0.0105550 secs
    http://GC 21605K->12791K(29976K), 0.0162990 secs
    http://GC 21111K->12892K(29976K), 0.0018050 secs
    http://GC 21212K->12828K(29976K), 0.0015180 secs
    http://GC 21148K->13109K(29976K), 0.0031170 secs
    http://GC 21429K->13381K(29976K), 0.0036740 secs
    http://GC 21701K->13654K(29976K), 0.0045870 secs
    http://GC 21974K->13925K(29976K), 0.0039540 secs
    http://GC 22245K->14201K(29976K), 0.0039690 secs
    http://GC 22521K->14472K(29976K), 0.0039170 secs
    http://GC 22792K->14746K(29976K), 0.0039330 secs
    http://GC 23066K->15018K(29976K), 0.0059380 secs
    http://GC 23338K->15293K(29976K), 0.0039360 secs
    http://GC 23613K->15567K(29976K), 0.0041130 secs
    http://GC 23887K->15840K(29976K), 0.0041440 secs
    http://GC 24160K->16120K(29976K), 0.0043940 secs
    http://GC 24440K->16384K(29976K), 0.0041120 secs
    http://GC 24704K->16669K(29976K), 0.0041680 secs
    http://GC 24989K->16969K(29976K), 0.0043450 secs
    http://GC 25289K->17257K(29976K), 0.0044480 secs
    http://GC 25577K->17549K(29976K), 0.0045890 secs
    http://GC 25869K->17820K(29976K), 0.0043210 secs
    http://GC 26140K->18102K(29976K), 0.0042160 secs
    http://GC 26422K->18397K(29976K), 0.0043400 secs
    http://GC 26717K->18634K(29976K), 0.0041000 secs
    http://GC 26954K->18913K(29976K), 0.0041340 secs
    http://GC 27233K->19185K(29976K), 0.0042660 secs
    http://GC 27505K->19458K(29976K), 0.0041070 secs
    http://GC 27778K->19743K(29976K), 0.0041500 secs
    http://GC 28063K->20004K(29976K), 0.0191860 secs
    http://GC 28324K->20280K(29976K), 0.0046220 secs
    http://GC 28600K->19824K(29976K), 0.0174000 secs
    http://GC 28139K->19829K(29976K), 0.0030420 secs
    http://GC 28149K->19837K(29976K), 0.0031130 secs
    http://GC 28156K->19847K(29976K), 0.0031800 secs
    http://GC 28167K->19842K(29976K), 0.0031260 secs
    http://GC 28162K->19833K(29976K), 0.0031150 secs
    http://GC 28148K->19841K(29976K), 0.0031440 secs
    http://GC 28161K->19853K(29976K), 0.0033030 secs
    http://GC 28173K->19846K(29976K), 0.0031930 secs
    http://GC 28166K->19856K(29976K), 0.0034720 secs
    http://GC 28176K->19841K(29976K), 0.0032510 secs
    http://GC 28160K->19853K(29976K), 0.0032700 secs
    http://GC 28173K->19870K(29976K), 0.0034590 secs
    http://GC 28190K->19852K(29976K), 0.0034420 secs
    http://GC 28172K->19856K(29976K), 0.0033570 secs
    http://GC 28176K->19853K(29976K), 0.0034110 secs
    http://GC 28173K->19874K(29976K), 0.0034390 secs
    http://GC 28194K->19874K(29976K), 0.0033860 secs
    http://GC 28194K->19864K(29976K), 0.0033200 secs
    http://GC 28184K->19868K(29976K), 0.0032720 secs
    http://GC 28188K->19869K(29976K), 0.0033200 secs
    http://GC 28188K->19887K(29976K), 0.0034270 secs
    http://GC 28207K->19900K(29976K), 0.0036070 secs
    http://GC 28220K->20201K(29976K), 0.0062500 secs
    http://GC 28521K->20489K(29976K), 0.0297900 secs
    http://GC 28809K->20775K(29976K), 0.0052470 secs
    http://GC 29095K->21067K(29976K), 0.0044330 secs
    http://GC 29387K->20695K(29976K), 0.0311630 secs
    http://GC 29015K->20759K(29976K), 0.0047220 secs
    http://GC 29079K->20837K(29976K), 0.0054250 secs
    http://GC 29157K->21136K(29976K), 0.0034980 secs
    http://GC 29456K->21424K(30232K), 0.0059250 secs
    [Full GChttp://Unloading class sun.reflect.GeneratedSerializationConstructorAccessor55
    http://Unloading class sun.reflect.GeneratedSerializationConstructorAccessor56
    http://Unloading class sun.reflect.GeneratedSerializationConstructorAccessor57
    http://Unloading class sun.reflect.GeneratedSerializationConstructorAccessor58
    21424K->6565K(30232K), 0.1152240 secs]
    http://GC 14885K->6862K(29976K), 0.0022140 secs
    http://GC 15182K->6714K(29976K), 0.0051410 secs
    http://GC 15034K->6834K(29976K), 0.0045080 secs
    http://GC 15154K->7131K(29976K), 0.0031670 secs
    http://GC 15451K->7433K(29976K), 0.0096200 secs
    http://GC 15753K->7006K(29976K), 0.0070910 secs
    http://GC 15326K->7076K(29976K), 0.0044810 secs
    http://GC 15396K->7366K(29976K), 0.0067000 secs
    http://GC 15686K->7658K(29976K), 0.0041160 secs
    http://GC 15978K->7950K(29976K), 0.0041690 secs
    http://GC 16270K->7494K(29976K), 0.0041470 secs
    http://GC 15814K->7478K(29976K), 0.0013520 secs
    http://GC 15798K->7580K(29976K), 0.0018250 secs
    http://GC 15900K->7865K(29976K), 0.0029830 secs
    http://GC 16185K->8163K(29976K), 0.0038140 secs
    http://GC 16483K->8452K(29976K), 0.0050560 secs
    http://GC 16772K->8809K(29976K), 0.0045440 secs
    http://GC 17125K->8255K(29976K), 0.0040100 secs
    http://GC 16575K->8266K(29976K), 0.0030290 secs
    http://GC 16586K->8270K(29976K), 0.0029560 secs
    http://GC 16113K->8747K(29976K), 0.0057800 secs
    http://GC 17067K->8876K(29976K), 0.0082510 secs
    http://GC 17196K->8790K(29976K), 0.0091950 secs
    http://GC 17110K->8985K(29976K), 0.0060200 secs
    http://GC 17305K->9252K(29976K), 0.0035370 secs
    http://GC 17572K->9531K(29976K), 0.0047710 secs
    http://GC 17851K->9804K(29976K), 0.0038680 secs
    http://GC 18124K->10100K(29976K), 0.0039470 secs
    http://GC 18420K->10348K(29976K), 0.0040110 secs
    http://GC 18668K->9903K(29976K), 0.0052700 secs

    Hi,
    I see this error:
    080709_042232065][EXCEPTION java.lang.NullPointerException
    at oracle.apps.xdo.dataengine.DataTemplateParser.GetNodeNumChildren(DataTemplateParser.java:345)
    Can you send me your Data Template XML file and RTF.
    Regards,
    Gareth                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Running Reports with a Process Definition/XMLPublisher App Engine

    Is there any documentation for creating the Application Engine to run XMLP reports from the PeopleSoft menu?  We are converting our Crystal reports to XMLP and I get the report to run fine through Report Viewer but the user wants to access it on the report menu.  The Data Source is query and the query has 7 run control prompts.  I can see how other report App Engines run using three fields UserID, Run Control, Language but this query would have seven prompts to pass from the run control page to the query/report.  I'm assuming I would have to use bind variables.  I don't want to use the method of passing three prompts from the run control table and then setting criteria in the query but to just pass all of the prompt values directly to the report because the query is a union so that complicates the process.  I was wondering if there is a paper, documentation or something to explain the process for passing the prompts (through peoplecode) to the report when running the report from the process definition to the App Engine from the menu?

    Anil and Rohit,
    Thank you both for the help and getting back to me timely. So let me be sure I understand. When running my report in JDeveloper, I am not able to run the rwservlet because it is not deployed on the 9iDS instance of OC4J that JDeveloper uses, because JDeveloper uses a lightweight version of the 9iDS OC4J containers (Or rather, is it not even a version of 9iDS OC4J?). So, I have to start a separate 9iDS OC4J instance which does have rwservlet deployed. So if I try the unsupported trick and deploy reports_ids.ear to the same OC4J instance that Jdeveloper is using, I may be able to get everything working with one instance of OC4J. If I do, what about when I deploy my report to a production 9iAS server? I'm thinking that the 9iAS instance of OC4J would have the rwservlet deployed, so my application would be fit for this environment, and I would still be running everything on one instance of 9iAS OC4J. I also have the idea, for development, of instead of running my application and reports using the internal JDeveloper OC4J instance, I would use a standalone 9iDS OC4J instance on my machine and just run everything (my web application and reports) on this. Do you think this would be feasible? Should I be able to use the JDeveloper debugger to remotely debug all this?
    Thanks and sorry for so many questions!
    Bill

  • Dunning Letter Creation in XMLP running into Error

    Hi All,
    Although I'm trying to create a report from the seeded Dunning Letter concurrent program that is giving the intended XML files but when running the XML Report Publisher Concurrent program, the program is erroring out with the following error:
    *****************************************Start of Log *************************************
    XML Publisher: Version : 11.5.0 - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOREPPB module: XML Report Publisher
    Current system time is 11-AUG-2006 09:13:51
    XML Report Publisher 5.0
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    --XDOException
    java.lang.reflect.InvocationTargetException: oracle.xdo.parser.v2.XPathException: Extension function error: Method not found 'set_xslt_locale'
         at oracle.xdo.parser.v2.XSLExtFunctions.getMethod(XSLExtFunctions.java:285)
         at oracle.xdo.parser.v2.XPathExtFunction.evaluateMethod(XPathExtFunction.java:267)
         at oracle.xdo.parser.v2.XPathExtFunction.evaluate(XPathExtFunction.java:225)
         at oracle.xdo.parser.v2.XSLVariable.getValue(XSLVariable.java:205)
         at oracle.xdo.parser.v2.XSLStylesheet.processVariables(XSLStylesheet.java:638)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:503)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:485)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:264)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:150)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:187)
         at java.lang.reflect.Method.invoke(Native Method)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:580)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:378)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:197)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:156)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:916)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:869)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:204)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1497)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:913)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:1766)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:1277)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:807)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:148)
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 11-AUG-2006 09:13:59
    **************************************End of Log *******************************************
    As u can c from the error, it seems to indicate that I'm using the method 'set_xslt_locale' which evidently I'm not using in my Template. Does anyone 've any ideas as to why this error is been thrown out.
    I even tried putting a template with just the text as 'This is a test Template' in the RTF Template. I still get the above errors.
    Any potential workaround too greatly appreciated.
    Thanks for ur time.

    One thing of note is that when I downloaded the template using XDOLOADER, the xml publisher seems to 've created a .xsl file that has reference to the method mentioned above. So although, I'm not referencing it, XMLPublisher created .xsl is referencing it n hence the error. Also, I do remember having read that 'set variable..' method refernced above is only available for a higher version of XMLP. I think I'm on 5.0.
    So the question is do I've to upgrade to 5.5 or can I make do with 5.0 version? I would love to get around this problem without the upgrade.
    Thanks

  • Questions on Customizing AR Statements Report...

    Hello,
    I developed a .rtf template for AR statements which is working fine. I have two fixes to do..Version is BI 10.1.3
    1. User wants terms and conditions(static data) page for each invoice which should be the last page of the statement or second page ( if we print back to back, it comes on first page).
    2. on the detail section, user wants only one line per invoice#, for example if a invoice has invoice, adjustments...it comes in two line with the amounts in two different columns. we have to merge these lines into one. I don't want to touch the Data definition for it, want to do it template.
    how can I achieve this. Please suggest..
    Thanks,
    Sridhar

    1. User wants terms and conditions(static data) page for each invoice which should be the last page of the statement or second page ( if we print back to back, it comes on first page).Refer https://blogs.oracle.com/xmlpublisher/entry/here_are_my_terms_conditions
    2. on the detail section, user wants only one line per invoice#, for example if a invoice has invoice, adjustments...it comes in two line with the amounts in two different columns. we have to merge these lines into one. I don't want to touch the Data definition for it, want to do it template.You can regroup based on Invoice to have 1 record per invoice. I think this is what you wanted here.

  • XML Publisher report definitions not opening

    Id like to reimport all the XML Pub Report definitions into my PS instance.
    I have a PT 8.49 instance and whenever i click on the report definitions of the XML publisher i get this JAVA error:
    "Java Exception: java.lang.NoCl assDefFoundError: com/peopleso ft/pt/xmlpublisher/PTRTFPocess or: finding class com.peopleso ft.pt.xmlpublisher.PTRTFPocess or (2,725) PSXP_ENGINE.RTFProc essor.OnExecute  Name:generate XSL  PCPC:239  Statement:9 Called from:PSXP_RPTDEFNMANAGE"
    SCREENSHOT: http://imageshack.us/photo/my-images/4/al4q.png/
    I was thinking maybe I could export the report definitions from a working instance and import here. Does that seem like a solution that will work

    PSXPCLEAN isnt part of PT 8.49
    So i tried instead to migrate XMLP definitions using Application Designer from a working instance of PS CS.
    But there error is still the same:
    "Java Exception: java.lang.NoClassDefFoundError: com/peoplesoft/pt/xmlpublisher/PTRTFPocess or: finding class com.peoplesoft.pt.xmlpublisher.PTRTFPocess or (2,725) PSXP_ENGINE.RTFProcessor.OnExecute  Name:generate XSL  PCPC:239  Statement:9 Called from:PSXP_RPTDEFNMANAGE"
    Notice the underlined part.
    In the working instance it is "PTRTFProcess" not "PTRTFPocess"

  • Problem when rendering a report in BI Publisher deployed on Apache Tomcat

    Hello for all.
    First, I am going to tell you technical specifications about the software where I have deployed BI Publisher:
    1. OS: Windows XP SP3
    2. JDK and JRE: 1.6.0_24
    3. Apache Tomcat: 5.5.33 (Set JVM Max Memory in 768MB)
    4. BI Publisher EE: 10.1.3.4.1
    I have deployed BI Publisher on Apache Tomcat without any problem, I uploaded Report files (both XDO and RTF), and I can see the reports in XML output format, but when I try to see the reports rendered by using the rtf file I have configured, BI Publisher shows me an Error; I checked the Apache Tomcat log and the following error is reported:
    [042511_033325984][oracle.apps.xdo.common.xml.XSLTWrapper][ERROR] XSL error:
    <Line 3, Column 123>: XML-22002: (Fatal Error) Error while processing include XSL file (rtf2xsl://http_//localhost:8080/xmlpserver/SubTemplates/sub-template-parameters.rtf?sid=1&eaf=3).
    <Line 296, Column 18>: XML-22000: (Error) Error while parsing XSL file (null).
    [042511_033325984][oracle.apps.xdo.template.FOProcessor][ERROR] End Memory: max=247MB, total=44MB, free=15MB
    [042511_033325984][][EXCEPTION] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.createFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.generate(Unknown Source)
         at oracle.apps.xdo.servlet.RTFCoreProcessor.transform(RTFCoreProcessor.java:91)
         at oracle.apps.xdo.servlet.CoreProcessor.process(CoreProcessor.java:276)
         at oracle.apps.xdo.servlet.CoreProcessor.generateDocument(CoreProcessor.java:82)
         at oracle.apps.xdo.servlet.ReportImpl.renderBodyHTTP(ReportImpl.java:552)
         at oracle.apps.xdo.servlet.ReportImpl.renderReportBodyHTTP(ReportImpl.java:255)
         at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:270)
         at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:250)
         at oracle.apps.xdo.servlet.XDOServlet.doGet(XDOServlet.java:178)
         at oracle.apps.xdo.servlet.XDOServlet.doPost(XDOServlet.java:201)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:647)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:94)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:879)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.util.EmptyStackException
         at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:806)
         at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:571)
         ... 39 more
    [042511_033325984][][EXCEPTION] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.createFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.generate(Unknown Source)
         at oracle.apps.xdo.servlet.RTFCoreProcessor.transform(RTFCoreProcessor.java:91)
         at oracle.apps.xdo.servlet.CoreProcessor.process(CoreProcessor.java:276)
         at oracle.apps.xdo.servlet.CoreProcessor.generateDocument(CoreProcessor.java:82)
         at oracle.apps.xdo.servlet.ReportImpl.renderBodyHTTP(ReportImpl.java:552)
         at oracle.apps.xdo.servlet.ReportImpl.renderReportBodyHTTP(ReportImpl.java:255)
         at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:270)
         at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:250)
         at oracle.apps.xdo.servlet.XDOServlet.doGet(XDOServlet.java:178)
         at oracle.apps.xdo.servlet.XDOServlet.doPost(XDOServlet.java:201)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:647)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:94)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:879)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.util.EmptyStackException
         at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:806)
         at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:571)
         ... 39 more
    I checked that the url http://localhost:8080/xmlpserver/SubTemplates/sub-template-parameters.rtf would be accesible via Internet Explorer, and It is accesible.
    I am glad if you can tell me what could be the cause of the error.
    Thanks.

    Finally, I stop working in the implementation of BIP over Apache Tomcat; I installed OC4J 10.1.3.5.0 (standalone installation) and I deployed BIP on it.
    It seems the error I wrote in last post has been fixed, but actually I am obtaining the following error with the deployment on OC4J:
    [042711_055706687][][ERROR] Namespace 'http://www.oracle.com/XSL/Transform/java/
    oracle.com.xmlpublisher.reports.BIPExtension' failed Secure Java Extensions chec
    k.
    [042711_055706687][oracle.apps.xdo.template.FOProcessor][ERROR] End Memory: max=
    494MB, total=46MB, free=21MB
    [042711_055706687][][EXCEPTION] oracle.apps.xdo.XDOException: XSLT10gR1: Failed
    Secure Java Extensions check.
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(Unknown Source)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(Unknown Source)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
    at oracle.apps.xdo.template.FOProcessor.createFO(Unknown Source)
    at oracle.apps.xdo.template.FOProcessor.generate(Unknown Source)
    at oracle.apps.xdo.servlet.RTFCoreProcessor.transform(RTFCoreProcessor.j
    ava:91)
    at oracle.apps.xdo.servlet.CoreProcessor.process(CoreProcessor.java:276)
    at oracle.apps.xdo.servlet.CoreProcessor.generateDocument(CoreProcessor.
    java:82)
    at oracle.apps.xdo.servlet.ReportImpl.renderBodyHTTP(ReportImpl.java:552
    at oracle.apps.xdo.servlet.ReportImpl.renderReportBodyHTTP(ReportImpl.ja
    va:255)
    at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:270)
    at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:250)
    at oracle.apps.xdo.servlet.XDOServlet.doGet(XDOServlet.java:178)
    at oracle.apps.xdo.servlet.XDOServlet.doPost(XDOServlet.java:201)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterC
    hain.java:64)
    at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilt
    er.java:94)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
    stDispatcher.java:644)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
    vletRequestDispatcher.java:391)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequ
    estHandler.java:908)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpReques
    tHandler.java:458)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpReque
    stHandler.java:226)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:127)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:116)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSo
    cketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:662)
    [042711_055706687][][EXCEPTION] oracle.apps.xdo.XDOException: XSLT10gR1: Failed
    Secure Java Extensions check.
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(Unknown Source)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(Unknown Source)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
    at oracle.apps.xdo.template.FOProcessor.createFO(Unknown Source)
    at oracle.apps.xdo.template.FOProcessor.generate(Unknown Source)
    at oracle.apps.xdo.servlet.RTFCoreProcessor.transform(RTFCoreProcessor.j
    ava:91)
    at oracle.apps.xdo.servlet.CoreProcessor.process(CoreProcessor.java:276)
    at oracle.apps.xdo.servlet.CoreProcessor.generateDocument(CoreProcessor.
    java:82)
    at oracle.apps.xdo.servlet.ReportImpl.renderBodyHTTP(ReportImpl.java:552
    at oracle.apps.xdo.servlet.ReportImpl.renderReportBodyHTTP(ReportImpl.ja
    va:255)
    at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:270)
    at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:250)
    at oracle.apps.xdo.servlet.XDOServlet.doGet(XDOServlet.java:178)
    at oracle.apps.xdo.servlet.XDOServlet.doPost(XDOServlet.java:201)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterC
    hain.java:64)
    at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilt
    er.java:94)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
    stDispatcher.java:644)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
    vletRequestDispatcher.java:391)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequ
    estHandler.java:908)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpReques
    tHandler.java:458)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpReque
    stHandler.java:226)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:127)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.ja
    va:116)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSo
    cketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:662)
    May you know the cause of the error above?
    Thanks,

  • Audit Data in BI Publisher Standalone

    Hi:
    I'm trying to audit who/what/when BI reports are run and I've got the BI Publisher user from XDO_USER_NAME but I need to find out what report is being run. I don't know of an existing XDO parameter or anything else that has that. So I'm trying to set it in the .rtf file as a parameter and get that as an argument to a report trigger but it's not working. Assuming I have the parameter defined in the data template, the .rtf and the database package, what's wrong with the following format (or is it just not possible to do what I want to do?)?
    Thanks
    The parameter in the .rtf file is defined as:
    <?param@begin:rpt_name;’”numUnsuccAuthnsDT.rtf”’?>And I see it in the report page by using
    Report Name is: <?$rpt_name?>
    <dataTrigger name="insertAuditData" source="BI_DataTemplateRT.insertAuditData(:rpt_name)"/>And the BI_DataTemplateRT package has a function:
    FUNCTION insertAuditData(rpt_name varchar) RETURN BOOLEAN;

    See the following blog posts from Kan:
    http://blogs.oracle.com/xmlpublisher/entry/how_to_audit_and_monitor_bi_pu
    http://blogs.oracle.com/xmlpublisher/entry/how_to_visualize_your_audit_da
    http://blogs.oracle.com/xmlpublisher/entry/11_1_1_5_new

  • Checkboxes in BI Publisher not showing up for all reports

    Hi everyone,
    I followed the instructions (uploading fonts, checking the checkbox font property e.t.c) for displaying checkboxes (without the diamond shape) in my BI Publisher reports. It worked for 1 report and still does. Unfortunately the new reports I have uploaded still display the diamond shape. I find this very odd even though followed exactly the same process for all of my reports.
    Is there a way to make sure that checkboxes display properly for all reports? Could there be a mistake I have made and that I am missing out on. Any thoughts will be appreciated.

    Have you set the properties as per
    http://blogs.oracle.com/xmlpublisher/2007/05/wherere_my_checkboxes.html
    especially
    1. The font location, we need to tell the publisher engine where the Wingdings font is located:
    <font family="Wingdings" style="normal" weight="normal">
    <truetype path="c:\windows\fonts\wingding.ttf"/>
    </font>
    2. The glyphs to be used. Here we specify the font family name ie 'Wingdings' and the 253/254 glyphs
    <property name="rtf-checkbox-glyph">Wingdings;253;254</property>
    Do ensure that you use the same glyph character codes defined in ur config and RTF

  • Creating Parameters in RTF Template for BI Publisher Report

    hi,
    I have created Parameters in my BI Publisher Report and in SQL query. But i need to create same parameters in RTF Template , so that when i publish this report in dashboard , parameters will be visible. Can you please tell me how to create Parameters in RTF Template for BI Publisher Report ? I am not finding option. Please let me know .
    Thanks in advance
    Gayathri.

    all the parameter's value will be there in your xml .
    just you need to add parameter heading and corresponding xml tag name to get the parameter value on the report.
    if u dont have you can try like below
    https://blogs.oracle.com/xmlpublisher/entry/get_your_parameters_here_guv
    Declare Parameter in RTF Template
    Before you use the parameter in the RTF template file you need to declare it first. You can do so by having the following syntax.
    <?param@begin:%parameter_name%?>
    Note: where %parameter_name% is the parameter name that you have created at the BI Publisher Server UI.
    Here is an example:
    <?param@begin:param1?>
    Use it in RTF Template!
    Once it’s declared in the RTF template you can start using it as the same way you use the variable. You need to just add ‘$’ prefix in front of the parameter name. Here is the example:
    <?$param1?>
    The above example would print the parameter value in the report output. If you want to use this value in your condition or calculation you can simply use it as ‘$param1’. Yes, it’s that simple.
    If you are not sure if and how the parameter values are passed to the report when you run the report you can use this command in your RTF template, which will return all the parameter values passed to the RTF template at the runtime.
    <?xdoxslt:getXDOProperties($_XDOCTX)?>
    http://kirti-bi-solutions.blogspot.com/2009/06/passing-parameters-from-obiee.html

Maybe you are looking for

  • Mirror ipod touch to apple TV

    I've double tapped, gone left and can get my music through the apple TV but there is no mirror option to choose. What am i doing wrong? version 5.1.1 model MD057BT. Any ideas? Thanks

  • (Problem) Grey empty Word window shows up while opening .doc or .docx files with virtual Internet Explorer 9

    Hi, First i'll explain what i did. I've Thinapped Office 2010 Professional Plus SP2 with an Internet Explorer entry point. (Thinapp version 4.7.3) Made some changes in the registry so .doc and .docx files will open in the virtual IE browser. Here are

  • What imac is my imac?

    Model Name:          iMac   Model Identifier:          iMac7,1   Processor Name:          Intel Core 2 Duo   Processor Speed:          2 GHz   Number Of Processors:          1   Total Number Of Cores:          2   L2 Cache:          4 MB   Memory:   

  • Test node connection

    I have a dual 2.5 G5ppc and I'm running FCS2 on it. I'm trying to encode 7-HDV quicktimes into 7-mpeg 2 files and matching ac3's using compressor. I started reading the qmaster directions and installed FCP, compressor, and qmaster on my MBPro. After

  • Distiller and Cooltype.dll error

    Recently updated Acrobat Pro, and now can't convert and files into PDF. Either running the printer option from MS Office or opening Acrobat and creating a "new" PDF. Even CS2 now won't save as a PDF for me. I get an error from Distiller when generati