Is it possible to use xml publisher with xml document as data source ?

I have an application that have to publish document from xml document that are not part a oracle 10g database but will be stored into Oracle Berkeley XML database insteed. Is it possible to use server and/or desktop to publish these documents ?
I test the desktop edition using the source xml document but it render no data when the template is executed (vizualization)
I installed the server edition and i'm not able to declare xml document as a data source
So i have a doubt that xml publisher is able to publish something from a xml datasource
Thanks

Yes, it is possible.
The problem should come from your template. Refer to "edit a RTF template" in the docs.
A fact is that XML Publisher server edition is not very adapted to an XML file datasource. In order to use it, you should use an HTTP datasource, with the URL of your XML document (that you should place on a web server...). The problem is that this URL is fixed and point always on the same reference...so XML Publisher server edition is not very good for that use.
I choose to use the XML Publisher Java API which is better for this task.

Similar Messages

  • 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 with graph not refresh date

    Hi
    I use EBS r12, and i create report using XML and BI Publisher rtf file, this report include graph, the problem is when i add the graph according to xml data and run the report throw bi publisher desktop its work fine, but when i run it in concurrent it will show table data OK but graph data will not change according to XML data,
    Any suggestion?

    Hi,
    Please refer note:
    BI Publisher Graphing On A Unix Platform Not Handling XML Data [ID 1189413.1]
    Best Regards

  • XML publisher with jdeveloper

    Hi all,
    I'm wondering if there is an API of XML Publisher for using with jdeveloper for development a reporting system. After I have run queries in database, I want to present tuples in a formatted fashion in PDF, RTF document etc. There are open source facilities like jasper reports etc, if XML publisher facilitates my reporting part of my system, I want to plan reporting development via XML Publisher!
    So, How I can integrate XML Publisher with jdeveloper? Is there any API documentation?
    best regards...
    --barisk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    XML Publisher ships with 2 XDK parsers a 9i version for backward compatibility and 10g version - you can switch at runtim using the properties. However, you have to make sure that the XML Publisher versions of the libraries are used and not the ones coming with i.e. jdeveloper version or oc4j version that you are using. You should use the version shipped with XML Publisher, because these versions are thoroughly tested with XML Publisher.
    See the deployment notes in the install document:
    Oracle OC4J Deployment Notes
    The version of the XML Parser shipped with Oracle OC4J is incompatible with XML Publisher. When you create an XML Publisher application for OC4J you need to configure the system to use the XML Publisher version of the XML Parser. This can be accomplished by setting an orion-web.xml configuration file with the following content:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <orion-web-app>
    <web-app-class-loader search-local-classes-first="true" />
    </orion-web-app>

  • Is it possible to use List Type in XML schema within the SOA Rule author?

    Is it possible to use List Type in XML schema within the SOA Suite Rule author? The reason is that with the following XSD, Rule author generates XML facts of type "List" for the element "ResultSet". Basically I want to check the Input facts (Input1, Input2, Input3) for some conditions and then assign action to the element Resultset of type List (array). The output Resultset can contain multiple values based on the input facts. My problem is that I am unable to see the ResultSet in the "Assign" action type of the action block. Is it possible to use the Resultset of type List with the Rule author or is there any limitation on the rule author and any workaround for this?
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/ns/TestMultipleOutputs"
    elementFormDefault="qualified">
    <element name="TestMultipleOutputs">
    <complexType>
    <sequence minOccurs="0">
    <element name="Input1" type="string" minOccurs="0"/>
    <element name="Input2" type="string" minOccurs="0"/>
    <element name="Input3" type="string" minOccurs="0"/>
    <element name="ResultSet" type="string" minOccurs="0"
    maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    --Thanks a lot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Richard,
    I have slightly modified the xml schema you suggested and was able to import into the rule author. the following is the modified XSD. Rule Author created a List type for the "ResultSet" . I still don't see "Resultset" in the assign action, so I tried creating RL function in order to assign the output to the "Resultset", but was unsuccessful so far. can you please let me know how to populate the resultset with the output values? Thanks a lot.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema attributeFormDefault="unqualified"
    xmlns:ns1="http://www.oracle.com/ns/TestComplexOutputs"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/ns/TestComplexOutputs"
    xmlns:tns="http://www.oracle.com/ns/TestComplexOutputs"
    elementFormDefault="qualified">
    <xsd:element name="TestComplexOutputs">
    <xsd:complexType>
    <xsd:sequence minOccurs="0">
    <xsd:element name="Input1" type="xsd:string" minOccurs="0"/>
    <xsd:element name="Input2" type="xsd:string" minOccurs="0"/>
    <xsd:element name="Input3" type="xsd:string" minOccurs="0"/>
    <xsd:element name="ResultSet" type="tns:ResultSetType" minOccurs="0"
    maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:complexType name="ResultSetType">
    <xsd:sequence>
    <xsd:element name="ResultSet" type="tns:ResultSetStructure" minOccurs="1"
    maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="ResultSetStructure">
    <xsd:sequence>
    <xsd:element name="ErrorReason">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string"/>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>

  • Where we get real time XML publisher with neat explanation

    hi every one
    where we get real time XML publisher with neat explanation for oracle apps

    Why XML Publisher Reports Why NOT Traditional Oracle Reports?
    Oracle Applications, SQL, PL/SQL: Why XML Publisher Reports Why NOT Traditional Oracle Reports?
    Developing XML Publisher Report - using Data Source as PL/SQL Stored Procedure
    Oracle Applications, SQL, PL/SQL: Developing XML Publisher Report - using Data Source as PL/SQL Stored Procedure
    Developing XML Publisher Report - Using Data Template as Data Source
    Oracle Applications, SQL, PL/SQL: Developing XML Publisher Report - Using Data Template as Data Source
    Regards,
    Srini

  • Xml publisher with xe

    HI TO ALL,
    i have a question: can i try to use xml publisher with oracle xe.
    Does it work?
    I haven't read anything about xml pubblisher configuration and requirements
    Thankx

    hey, it works
    you need only to set the jdbc connection for a user that got the demo tables (the builtin HR user with all the tables of the demo application works super).
    Now it's all about money....
    bye bye

  • XML Publisher with Non Oracle databases

    Hi,
    Can we use XML Publisher with non oracle databases like Postgres ,mySQL etc.

    Hi
    Not sure if you're talking Apps or non but you can do it equally with both. Check out the Data Engine in the user guide and look for Distributed Queries. XMLP will need a jdbc connection to the db but you can then pass a query and get XML back.
    You can even write one query to pull back say customers from Oracle and their invoices from MySQL, you'll get a merged data set back with a master detail relationship btw customers-invoices
    Regards, Tim

  • Is it possible to use variant configuration (with a Non-SAP solution) when creating ERP sales orders in SAP CRM WebUI

    Hello,
    our customer plans to use a Non-SAP solution for variant configuration (Camos) in SAP ERP (ECC 6.0) and in SAP CRM 7.0 EHP1 as well.
    ERP sales orders (and ERP quotations) should be created in SAP CRM (CRM WebUI).
    Is it possible to use variant configuration (with an external variant configuration tool) when creating ERP sales orders and quotations in the SAP CRM WebUI or do we have to implement SAP IPC for this?
    Thanks in advance.
    Regards,
    AEV

    Dear AEV,
    I think LORD (lean orders) should work with variant configuration as well. In the note 1236015 there is not restriction listed. However you need lord2 activated in ECC, and ECC system should be on EHP4.
    Best regards
    Rene

  • I have a touchscreen laptop running Windows 8.1. Is it possible to use the touchscreen with Firefox? I've installed Firefox but it only works with the mouse etc

    have a touchscreen laptop running Windows 8.1. Is it possible to use the touchscreen with Firefox? I've installed Firefox but it only works with the mouse etc

    Hello Sirving575, sorry but the metro version of firefox has been cancelled, see : https://blog.mozilla.org/futurereleases/2014/03/14/metro/
    thank you

  • Is it possible to use Speech Recognition with Final Cut Studio?

    Is it possible to use Speech Recognition with Final Cut Studio?
    Using either Speech, AppleScript, Automator or a 3rd party app
    like iListen, can I enable Final Cut Studio apps to respond
    to voice commands?
    (e.g. I say "I" in Final Cut Pro and it sets an in point)
    thanks

    Yes, I wish "Make it really good" and "Fix my rough cut"
    were commmands too
    I did hear from the folks at iListen that
    they are planning on releasing a ScriptPak
    for Final Cut Studio next year which could be
    cool
    and that yes, iListen has some capability to
    integrate Speech Recognition with Final Cut,
    guess I need to give it a try for a test ride

  • Install XML Publisher with iAS 10g

    Hello,
    Can we install/integrate XML Publisher with iAS 10g (10.1.2) and how can we integrate published reports with it.
    We don't have SSO,OID
    Regards

    When you say integrate, do you mean you want to install XMLP on top of it or you want to report data from it?
    Tim

  • Is it possible to use apple tv with my mobile 3g internet connection

    is it possible to use apple tv with my iphone 4s mobile 3g internet connection?

    This has already been discussed here:
    https://discussions.apple.com/thread/4819472?start=0&tstart=0

  • Is it possible to use lite sessions with AppLogic's?

    Hi everybody,
    I have one doubt about lite sessions. Is it possible to use lite sessions with AppLogic's?
    If it's possible, which steps do I have to take to use them?
    Thanks a lot,
    Alberto

    The following is the basic procedure to extend one 802.11n AirPort with another:
    AEBSn - Extending a wireless network Setup
    o If practical, place the base stations in near proximity to each other during the setup phase. Once done, move them to their desired locations.
    o Open AirPort Utility and select the base station that will connect to the Internet.
    o Choose Manual Setup from the Base Station menu, or double-click the base station to open the configuration in a separate window. Enter the base station password if necessary.
    o Click AirPort in the toolbar, and then click Wireless.
    o Choose “Create a wireless network” from the Wireless Mode pop-up menu, and then select the “Allow this network to be extended” checkbox.
    o Next, select the base station that will extend this network, and choose Manual Setup from the Base Station menu, or double-click the base station to open its configuration in a separate window. Enter the base station password if necessary.
    o Choose “Extend a wireless network” from the Wireless Mode pop-up menu, and then choose the network you want to extend from the Network Name pop-up menu.
    o Enter the base station network and base station password is necessary.
    o Click Update to update the base station with new network settings.
    (ref: Page 46 of "Designing AirPort Networks Using AirPort Utility.)

  • Is it possible to use lion recovery with PPPoE connection?

    hi, i dont have a wifi connection at home.
    but i want to use lion recovery to download a frsh copy of lion and  then make USB flash drive with it.
    is it possible to use lion recovery with PPPoE connection?

    raghav malhotra wrote:
    is it possible to use lion recovery with PPPoE connection?
    No.
    Read more here:
    http://support.apple.com/kb/HT4718

Maybe you are looking for

  • ERROR_WAIT_NO_CHILDREN error while native method calling

    I have some self-made DLL and call it from Java over JNI. Under 100% repeatable conditions, the calling of the native method conduce to java.exe(JVM) termination with errorlevel 128L. Without any trace or reports. If to assume, that java.exe uses OS

  • E-filing of quarterly TDS returns..

    Hi Experts, We have activated Extended Withholding Taxes in our ECC 6.0 version. But we have Not done any E Filing of quarterly and Annual Returns. Now we want to start doing the e filing. Could any body please send the detailed steps for this E Fili

  • Pasta drivers

    Hi, Please explain me in detail about pasta,Please dont give me metalink documents. According to me what is pasta 1)pasta is driver or utility in oracle which supports text reports to be printed on postscript enabled printers RIGHT And some were i re

  • Creating Mailing Labels

    How do I send out my Holiday Cards when my address book is full of individuals and I want to send out cards with mailing labels to "Mr & Mrs XXX" or to "The XXXXX Family"?  Any tips on address book name formatting for mailings would be appreciated. I

  • Query suggestions needed

    Please help with this complex query, I have been working on a solution for hours now. Here is a simplified version: I have 3 fields in tableA:field1, field2, field3 I want to return all those records that have both field2 and field3 the same but fiel