Possible to get xml output?

I want a button that can save the form data into a xml file is this possible and if it is can someone point me in the right direction.

Can some one please help me here

Similar Messages

  • Get XML Output and parameters

    I'm using Oracle BI Publisher 11.1.1.3.0 and I've created a Dataset with several parameters. (6 to be precise) I'm using the "Get XML Output" button to generate my sample data...
    Without the parameters all is good... but when I add parameters... the parameters line up from left to right three of my parameters "disappears" to the right and even more importantly the "Run" & "Return" buttons disappear and I cannot access them.
    I feel like I'm missing something simple... but I just can't find it. How can I get those parameters to line up some other way?
    (Let me specify once again that I am ONLY in the Dataset area, not the report area)
    Thanks in advance

    Look... this seems like a serious problem...
    I cannot generate the sample data when I add more than 3 parameters (Type Menu with a LOV) ....
    I cannot generate sample data, the parameters do not appear on the report...
    The Run button is off screen and there are no scroll bars...
    I am in the data model area only... NOT the report are and I have NO way of seeing the parameters that are off screen or even accessing the Run & Return button or the "Save sample data"
    What is going on?

  • How to get XML output from a stored procedure

    I have a very simple question:
    I would like to write a stored procedure (SP) that will return results in XML format (as a string). My tables in database are not of XML TYPE. But I need XML output.
    ie, SP will run like a typical SP but the only difference will be its output in XML.
    1) is it possible?
    2) if possible, how?
    Please, help
    Omer Koksal

    Thank you Peter, it was a great problem for me !
    Omer Koksal

  • Is it possible to get the output of a text container into Spool..?

    Hi
    I am trying to write a report for a standard transaction(SM65) in BDC and run thru background job so as to get the output in to Spool. Right now I am facing an issue to get the SM65(text container) tcode output into spool.
    FYI..I am using "CALL TRANSACTION 'SM65' USING BDCDATA MODE 'E'."
    Please provide tour valuable inputs.
    Thanks!
    Shiv

    Hi Shiv,
    Instead of writing BDC for T-code SM65 I would suggest you to use following function module to get the required data.
          CALL FUNCTION 'BPT_ANALYSE_START'
            EXPORTING
              server_name            = servername_tmp
              check_all_btc_servers  = sbpt1020-allsrvchk
              profile_check          = sbpt1020-profilechk
              xpgm_environment_check = sbpt1020-xpgmcheck
            TABLES
              protocol_tbl           = global_protocol_tbl
            EXCEPTIONS
              OTHERS                 = 99.
    Once you got the data into "global_protocol_tbl " you can create spool of it.

  • Error in getting xml output from Apps

    I have developer 10g. Whatever report (rdf) I create I face exactly the same problem. I register the report (rdf) in Apps and select xml format as the output. But when I run it to get the xml file, I get the following error
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    A semi colon character was expected. Error processing resource 'http://XXXX.XXXX.XXX.XXX:8000/OA_CGI/FNDWRR.exe?temp_id=3547...
    <?xml version="1.0" encoding="&Encoding"?>
    ---------------------------------------^If I use Reports 6i to create exactly the same report (rdf) everything works fine (i.e I get the xml file when I run it).
    What is the issue with 10g?

    If you have & or any other special characters like < ,>
    & lt;      <      less than
    & gt;      >      greater than
    & amp;      &      ampersand
    & apos;      '      apostrophe
    & quot;      "      quotation mark
    these , have to replaced by the equivalent in the sql queries. to get like & lt; , & gt; ,
    because these are pre-defined in XML , so the xml will error out , if you any of these characters in the xml element value.

  • Help required in Getting XML output as Required

    Hi All,
    I have below xml
    INSERT INTO XMLTABLE VALUES (4,'<?xml version="1.0"?>
    <Node_1 empID="202" empName="Pro1" oper="Update">
    <Node_2 empID="20" empName="Pro2" oper="Update">
    <Bode_3 empID="2" empName="Pro3" oper="Update">
    <Bode_4 empID="22" empName="Pro4" oper="Update">
    <Bode_5 empID="12" empName="Pro5" oper="Delete"/>
    <Bode_6 empID="223" empName="Pro6" oper="Insert"/>
    <Bode_7 empID="201" empName="Pro7" oper="All"/>
    <Node_3 empID="21" empName="Pro71" oper="ll">
    </Bode_4>
    </Bode_3>
    </Node_2>
    </Node_1>');
    I have a sequence seq_i
    seq_i start with 1 increment by 1
    am able to display output as below,
    Node|EMPID|OPER|EMPNAME|MGRID
    Node_1|202|Update|Pro1|Null
    Node_2|20|Update|Pro2|Node_1
    Bode_3|2|Update|Pro3|Node_2
    Bode_4|22|Update|Pro4|Bode_3
    Bode_5|12|Delete|Pro5|Bode_4
    Bode_6|223|Insert|Pro6|Bode_4
    Bode_7|201|All|Pro7|Bode_4
    Node_3|21|ll|Pro71|Bode_4
    Now I want below one as output
    All nodes starting with Bode_, I need to replace that with sequence, seq_i
    so for the seq_i (starting with i and incrementing by 1)
    Please note when ever node changes to sequence, corresponding mgrid also changes,
    Node|EMPID|OPER|EMPNAME|MGRID
    Node_1|202|Update|Pro1|Null
    Node_2|20|Update|Pro2|Node_1
    1|2|Update|Pro3|Node_2
    2|22|Update|Pro4|1
    3|12|Delete|Pro5|2
    4|223|Insert|Pro6|2
    5|201|All|Pro7|2
    Node_3|21|ll|Pro71|2
    Please let me know your thoughts on this to acheive the same,
    Thanks,

    Well you've already said you can get your XML into the initial flattened hierarchy structure, so you just need to manipulate that to assign a sequence (row number) as appropriate.
    Something like...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (
      2  select 'Node_1' as node, 202 as empid, 'Update' as oper, 'Pro1' as empname, Null as mgrid from dual union all
      3  select 'Node_2', 20, 'Update', 'Pro2', 'Node_1' from dual union all
      4  select 'Bode_3', 2, 'Update', 'Pro3', 'Node_2' from dual union all
      5  select 'Bode_4', 22, 'Update', 'Pro4', 'Bode_3' from dual union all
      6  select 'Bode_5', 12, 'Delete', 'Pro5', 'Bode_4' from dual union all
      7  select 'Bode_6', 223, 'Insert', 'Pro6', 'Bode_4' from dual union all
      8  select 'Bode_7', 201, 'All', 'Pro7', 'Bode_4' from dual union all
      9  select 'Node_3', 21, 'All', 'Pro71', 'Bode_4' from dual
    10  )
    11  -- end of test data obtained from flattening XML - just use query below against own data
    12  select rpad(' ',(level-1)*2,' ')||coalesce(bode_no, node) as tree
    13        ,coalesce(bode_no, node) as node
    14        ,empid
    15        ,oper
    16        ,empname
    17        ,case when bode_no is not null then prior coalesce(bode_no, node) else mgrid end as mgrid
    18  from (
    19    select node
    20          ,case when node like 'Bode%' then
    21                     to_char(row_number() over (partition by case when node like 'Bode%' then 1 else 0 end order by node))
    22                else null
    23           end as bode_no
    24          ,empid
    25          ,oper
    26          ,empname
    27          ,mgrid
    28    from t
    29    )
    30  connect by mgrid = prior node
    31* start with mgrid is null
    SQL> /
    TREE                 NODE                                EMPID OPER   EMPNA MGRID
    Node_1               Node_1                                202 Update Pro1
      Node_2             Node_2                                 20 Update Pro2  Node_1
        1                1                                       2 Update Pro3  Node_2
          2              2                                      22 Update Pro4  1
            Node_3       Node_3                                 21 All    Pro71 Bode_4
            3            3                                      12 Delete Pro5  2
            4            4                                     223 Insert Pro6  2
            5            5                                     201 All    Pro7  2
    8 rows selected.

  • Is it possible to get an output error when there is no error?

    Ok so I did a picture slide show in flash CS5 where I used actionsript 3. I added a button so that when you click it will go to the next picture. Then on the last one it will go from the last picture and reset back to the first picture. I even added some music with a stop and play button so if you are playing some music and say you get tired of it while looking through the pictures you can click the play/ stop button and it will stop.
    I got the following error in my output error-
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@64b30f99 to flash.display.SimpleButton.
    at flash.display::MovieClip/nextFrame()
    at johnexercise3_fla::MainTimeline/fl_ClickToGoToNextFrame_5()
    This error occurs when I go to test movie about half way through my photo gallery this message will pop up. The thing about it is that despite the error all my images load and play correctly as they should and my sound plays and stops as I ask it too. I guess I could ignore the error seeing as how everything works 100% fine despite the error but I was just wondering if this error is something serious or if I should be concerned? If it is something to worry about then what can I do to fix it? Again as I said the error is there but the test movie shows everything perfectly fine.

    Sorry. I may have mis-spoken. I have 2 image gallery projects. One of them has a button that you click to go from one picture to another along with a stop and play button for the music. Now my second project which is in seperate flash document is the same exact project except that instead of using a button to click from one picture to another I am clicking on the picture itself to get from one image to the next. My 2nd project is the one that had the error.  And I also kept the stop and play music button on that one. I am not sure about anything else that would have caused this code error but it went away for now. For some reason it was giving me this error and I closed out of flash and restarted as it kept acting funny at school today and for some reason the error went away. I will keep what you and kglad said in case the error comes back just do that. Thanks again to the both of you.

  • How to produce an XML output

    Hi,
    can someone tell me if and how it's possible to get an output of a select in XML format in Oracle? Is there some PDF explaining how to do it?
    I work on Oracle version 8i
    Thanks!

    i dont no in version 8i
    but i working on oracle 9i & 10g with xml..
    sample...
    xml-select statement..
    SELECT XMLAGG(XMLELEMENT("UsageRecord",
    XMLFOREST(DU.METER,
    TO_CHAR(DU.DAILYTIMESTAMP, g_timeStampFormat) DAILYTIMESTAMP,
    DU.TOTALENERGY,
    DU.STATUSID,
    DU.AVERAGEUSAGEDAYS,
    DU.SPIKEPERCENT,
    DECODE(DU.STATUSID, 3, 'Estimated', 5, 'Averaged', 2, 'Error', 'Calculated') "USAGETYPE",
    (SELECT ( XMLAGG(XMLELEMENT("Validation",XMLFOREST(ED.ERRORID, DECODE(ED.ERRORID, 10, 'Illegal Usage', 11, 'Usage Spike') "ERRORDESC")))) xe FROM ERROR_DETAIL ED WHERE ED.ERRORKEY = DU.USAGEID) "Validations"
    ).GETCLOBVAL()
    FROM DAILY_USAGE DU LEFT OUTER JOIN ERROR_DETAIL ED ON DU.USAGEID = ED.ERRORKEY
    WHERE DU.METER = cp_meter AND DU.DAILYTIMESTAMP >= cp_usageFrom AND DU.DAILYTIMESTAMP <= cp_usageTo;
    output is:
    Input: '<InputParameters><ParamSet>
    <METER>17209346</METER>
    <READINGSSTARTTIME>31-MAR-10</READINGSSTARTTIME>
    <READINGSENDTIME>15-APR-10</READINGSENDTIME>
    </ParamSet></InputParameters>';
    Output:
    <Output><UsageRecords><UsageRecord><METER>17209346</METER><DAILYTIMESTAMP>06/15/2010 00:00:00.000000</DAILYTIMESTAMP><TOTALENERGY>29</TOTALENERGY><STATUSID>1</STATUSID><USAGETYPE>Calculated</USAGETYPE><PEAKKVAR>0</PEAKKVAR><ENDREADING>66882
    </ENDREADING><USAGEID>32151771</USAGEID><LATESTREADINGID>29049733</LATESTREADINGID></UsageRecord><UsageRecord><METER>17209346</METER><DAILYTIMESTAMP>06/16/2010 00:00:00.000000</DAILYTIMESTAMP><TOTALENERGY>57</TOTALENERGY><STATUSID>1</STATUS
    ID><USAGETYPE>Calculated</USAGETYPE><PEAKKVAR>0</PEAKKVAR><ENDREADING>66939</ENDREADING><USAGEID>32217320</USAGEID><LATESTREADINGID>29049735</LATESTREADINGID></UsageRecord><UsageRecord><METER>17209346</METER><DAILYTIMESTAMP>06/17/2010 00:00
    :00.000000</DAILYTIMESTAMP><TOTALENERGY>58</TOTALENERGY><STATUSID>1</STATUSID><USAGETYPE>Calculated</USAGETYPE><PEAKKVAR>0</PEAKKVAR><ENDREADING>66997</ENDREADING><USAGEID>32282871</USAGEID><LATESTREADINGID>29049737</LATESTREADINGID></Usage
    Record><UsageRecord><METER>17209346</METER><DAILYTIMESTAMP>06/18/2010 00:00:00.000000</DAILYTIMESTAMP><TOTALENERGY>56</TOTALENERGY><STATUSID>1</STATUSID><USAGETYPE>Calculated</USAGETYPE><PEAKKVAR>0</PEAKKVAR><ENDREADING>67053</ENDREADING><U
    SAGEID>32348421</USAGEID><LATESTREADINGID>29049739</LATESTREADINGID></UsageRecord><UsageRecord><METER>17209346</METER><DAILYTIMESTAMP>06/19/2010 00:00:00.000000</DAILYTIMESTAMP><TOTALENERGY>35</TOTALENERGY><STATUSID>1</STATUSID><USAGETYPE>C
    alculated</USAGETYPE><PEAKKVAR>0</PEAKKVAR><ENDREADING>67088</ENDREADING><USAGEID>35780363</USAGEID><LATESTREADINGID>34626182</LATESTREADINGID></UsageRecord><UsageRecord><METER>17209346</METER><DAILYTIMESTAMP>06/20/2010 00:00:00.000000</DAI

  • XML Output doesn't work

    Hi everyone, im a newer in using BI Publisher, so when I create the Data Model then save and click Get XML Output, it's not work( just blank window is appear, what's wrong with it?

    are you sure that your query is correct ?
    or may be no data for query for some values of parameters ?

  • Getting XML Data

    I create a Data Model and Save it When i click on Get XML output the data it shows a blank page XML data is not displayed and later when i try to create a Report based on existing DM it gives a message...NO Sample data is saved for the existing DM.... Can anyone help?

    From 11g
    When you created data model and view xml you gave drow down option on the right top saying
    Export xml
    Save as sample data
    Get data engine log.
    Once you completed creating daramodel and view xml please click that option save as sample data . The xml which you viewed will be saved as sample xml file for that data model.
    It is must if you want ti upload a template to created data model.
    It is a one time job that we need to do whenever we create a new datamodel.
    for reference u can check the below link.
    Viewing the XML Output and Saving the Sample Data
    1 You may have observed that In the current version of the BI Publisher, you can preview the XML data for the data model.
    Click the XML icon (found at the right top corner of the page), to see the XML output for the data model you defined in previous topic.
    Select All for the number of rows, and click Run to see the XML data output for all the departments:
    ( A portion of the XML data is displayed here in the screen)
    2 .To save this as sample data, click the Open Menu drop-down list icon, and select Save as Sample Data.
    You can see that the sample.xml is listed in the Sample Data section of the Data Model ( as shown below):
    Note: It is very important to save sample data for a data model, else when creating Layouts, the previews do not appear correctly.
    http://st-curriculum.oracle.com/obe/fmw/bi/bip/bip11g/gettingstarted/gettingstarted.htm
    Assign me some points if helpful.

  • GET XML in Sproxy

    Hi all,
    Is it possible to get XML into the tab Original Response after sproxy execution with error?
    Regards,

    Let me re-phrase your question.
    You want to have a mechanism by which the request message ( in xml format ) can be passed to one of the fields of the response message.
    Solution 1:-
    1. If you have an inbound synchronous proxy, design the response structure in such a way that the response message will have a root element which is 0.. unbounded. It helps when you don't have an error you don't need to populate the fields.
    2. The second part of the synch inbound proxy would be the response message structure containing the error, you can also use the standard fault message structure. So your response proxy would look like this.
       Root ( 1... unbounded )
         Response ( 1... unbounded )
             faulttext
             faulturl
             faultDetail ( 0... unbounded )
                 severity
                 text
                 url
                 id
           RequestMsg ( 0... unbounded)
             <messg structure>
    Solution 2:-
    1. You can include a field in the response message to contain the entire source xml.
    2. To do that you need to generate the xml format data and then convert the xml xstring into string and pass it on the field data.
    Regards,
    Indranil

  • How to get multiple output formats for each execution of the report?

    Hi,
    Is it possible to get multiple output formats for each execution of the report? If so can you provide some details?
    Thanks

    In Reports 6i, Reports Distribution was introduced. This allows you to run the report once and output to a number of destinations with a different format. It also allows you to distribute individual sections within a report to different destinations in different formats.
    The Destinations for a Report to distribute to are defined either in a distribution file and passed on the command line or inside of the report definition.
    To add a destination to the the report definition, bring up the property palette against the report object and then select the "Distribution" property under the "Report" node. This will bring up a dialog that allows you to create a distribution list. You can then test this list by selecting "file->distribute" from the menu.
    To run a report that is to be distributed through rwrun60, you need to add "distribute=yes" to the command line. It will pick up the destinations from the report definition. If you add "destination=<filename>" then it will pick up the destinations from the specified "<filename>" and ignore the destinations in the report definition.
    Note: if "distribute=yes" is specified on the command line then the destype/desname/desformat parameters will be used to format the report (ie: which printer/display to use during formatting for sizing objects) but will be ignored when the report is sent to the destinations.

  • How to Create XML output for EFT payments.....?

    I am new to creating eText templates. My Understanding is to get XML output then build a template based on the XML output. Right or wrong I am not totally sure. Either way, here is what I need to accomplish and I am not sure where to start.
    (We are in R12....)
    Select EFT payments and create EFT output to send to the bank. I am looking for some guidence. Is there a generic payment program I can relate to an eft payment bank to generate the xml output? Is there a template already built for EFT payments? Does anyone out there have a solution that they are willing to share? Any guidence would be greatly appreciated.

    Figured this out on our own

  • I am not getting required output after importing xml file having HTML tags, MathML and Latex code

    I created well formatted xml having html tags, MathML code and Latex code inside
    XML with sample latex
    <question>
        <p> 8. In this problem, <Image  style="vertical-align: -9pt" title="5a\frac{7b}{3}" alt="5a\frac{7b}{3}" href="http://www.snapwiz.com/cgi-bin/mathtex.cgi?%205a%5Cfrac%7B7b%7D%7B3%7D%0A"></Image> and <Image href="http://www.snapwiz.com/cgi-bin/mathtex.cgi?%207b%5Cfrac%7B5a%7D%7B3%7D" style="vertical-align: -9pt" title="7b\frac{5a}{3}" alt="7b\frac{5a}{3}"> </Image>are both mixed numbers, like <Image src="http://www.snapwiz.com/cgi-bin/mathtex.cgi?%203%20%5Cfrac%7B1%7D%7B2%7D%20=%203.5" style="vertical-align: -9pt" title="3 \frac{1}{2} = 3.5" alt="3 \frac{1}{2} = 3.5"></Image>. The expression <Image style="vertical-align: -9pt" title="5a \frac{7b}{3} \ \times 7b \frac{5a}{3}" alt="5a \frac{7b}{3} \ \times 7b \frac{5a}{3}" href="http://www.snapwiz.com/cgi-bin/mathtex.cgi?%205a%20%5Cfrac%7B7b%7D%7B3%7D%20%5C%20%5Ctimes %207b%20%5Cfrac%7B5a%7D%7B3%7D"> </Image>is equal to which of the following choices? </p>
    </question>
    XML with sample html tags
    <p>4. Examine the expression 3<i>k</i><sup>2</sup> + 6<i>k</i> - 5 + 6<i>k</i><sup>2</sup> + 2.</p><p>When it is simplified, which of the following is the equivalent expression?</p>
    XML with sample MathML tags
    <p>5. Find the vertex of the parabola associated with the quadratic function <math xmlns="http://www.w3.org/1998/Math/MathML"><mi>y</mi><mo> </mo><mo>=</mo><mo> </mo><mo>-</mo><msup><mi>x</mi><mn>2</mn></msup><mo> </mo><mo>+</mo><mo> </mo><mn>10</mn><mi>x</mi><mo> </mo><mo>+</mo><mo> </mo><mn>4</mn></math></p>
        <math xmlns="http://www.w3.org/1998/Math/MathML"><mfenced><mrow><mo>-</mo><mn>5</mn><mo>,</mo><mo> </mo><mn>69</mn></mrow></mfenced></math><br>
        <math xmlns="http://www.w3.org/1998/Math/MathML"><mfenced><mrow><mn>5</mn><mo>,</mo><mo> </mo><mn>29</mn></mrow></mfenced></math><br>
        <math xmlns="http://www.w3.org/1998/Math/MathML"><mfenced><mrow><mn>5</mn><mo>,</mo><mo> </mo><mn>69</mn></mrow></mfenced></math><br>
        <math xmlns="http://www.w3.org/1998/Math/MathML"><mfenced><mrow><mo>-</mo><mn>5</mn><mo>,</mo><mo> </mo><mn>29</mn></mrow></mfenced></math>
    None of the above works fine after importing xml to Indesign document/templete, it is not renderting equivalent out instead it is showing the same text inside tags in the Indesign document.
    I have lot of content in our database, I will export to XML, import to Indesign, Indesign should render required output like what we see in the browser and export the output to printed format.
    Import formated XML to indesign --> Export to Quality Print Format
    Can any one guide me and let me know whether it is posible to do with Indesign, if so let me know in case if I am missing anything in importing xml and get required output.
    Thanks in advance. Waiting for reply ASAP.

    Possibly your expectations are too high. ... Scratch that "possibly".
    XML, in general, cannot be "rendered". It's just an abstract data format. Compare it to common markup such as *asterisks* to indicate emphasized words -- e-mail clients will show this text in bold, but InDesign, and the vast majority of other software, does not.
    To "render" XML, HTML, MathML, or LaTeX -- you seem to freely mix these *very* different markup formats, unaware of the fact that they are vastly different from each other! -- in the format you "expect", you need to apply the appropriate software to each of  the original data files. None of these markup languages are supported natively by InDesign.

  • Instead of getting PDF got XML output Bi publisher report

    Hi ,
    While i run the concurrent request i got the below :
    Executing request completion options...
    Output file size:
    335
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 3715769 on node CORPT228V at 14-SEP-2012 07:50:11.
    Post-processing of request 3715769 failed at 14-SEP-2012 07:50:11 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    instead of getting pdf output i got xml o/p....
    thanks in advance....
    Regards,
    Doss

    Alex,
    I have checked the log ...i did find the below,
    [9/14/12 8:13:23 AM] [90939:RT3715787] Output file was found but is zero sized - Deleted
    [9/14/12 8:13:23 AM] [UNEXPECTED] [90939:RT3715787] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:611)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:239)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:182)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1665)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:975)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5936)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3459)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3548)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:302)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:176)
    Caused by: oracle.xdo.parser.v2.XPathException: Namespace prefix 'ref' used but not declared.
         at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:806)
         at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:571)
         ... 17 more
    [9/14/12 8:13:23 AM] [90939:RT3715787] Completed post-processing actions for request 3715787.
    [9/14/12 8:15:47 AM] [GSMServiceController:90939] New Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=5
    [9/14/12 9:03:39 AM] [GSMServiceController:90939] Received shutdown request.
    [9/14/12 9:03:39 AM] [GSMServiceController:90939] Preparing to shutdown service.
    [9/14/12 9:03:39 AM] [GSMServiceController:90939] Stopping all Service Threads.
    [9/14/12 9:03:39 AM] [OPPServiceThread0] Preparing to shut down service thread.
    [9/14/12 9:03:39 AM] [OPPServiceThread1] Preparing to shut down service thread.
    [GC 25492K->7906K(63424K), 0.0562769 secs]

Maybe you are looking for

  • InDesign CS6 to Interactive PDF

    I want to design an Newsletter in CS6 and export it as a interactive PDF. The end goal is to be able to email the Newsletter out, but allow the end user to be able to modify the text in each section so they can personalize it as necessary. Additional

  • How to read 'clicked header' AND selected row from multicolumn listbox?

    I have a multicolumn listbox filled with 6 columns and about 500 rows. I want the user to be able to click on a column header, and sort the listbox alphabetically on that column. I've written the code for that, and that works. (using the 'itemnames'

  • A default value in tabular form

    Hi all, I have a simple tabular form, and i'd like that if a certain field doesn't contain any value to fill it with a default value. I tried to do it via default value attribute, but i'd like it to take place in a certain record in the table and not

  • Creating Client-side Image Map in Web Dynpro

    Hi, How can I create a client-side Image Map in Web Dynpro application? My application consists of a screen-size image in which several areas will have to link to URLs and actions. I have browsed through the "Web Dynpro UI Element Reference Guide," b

  • How to refresh bean value in advanced table from vo/database value in PR.

    Hi, I have requirement in which I have two OAF pages. First is the base page and second is popup page. Base page displays some values in table with messagetextinput. When user clicks button on the base page it is calling popup page. Now user changes