XML PDS in Reports9i

Hi There!
I find problem in creating a report in Reports9i using XML as the PDS.
The following is my DTD (family.dtd)
<!ELEMENT family (member*)>
<!ATTLIST family lastname CDATA #REQUIRED>
<!ELEMENT member (#PCDATA)>
<!ATTLIST member memberid ID #REQUIRED>
<!ATTLIST member dad IDREF #IMPLIED>
<!ATTLIST member mom IDREF #IMPLIED>
The following is my XML file(family.xml), stored in the same folder as of DTD
<?xml version="1.0" standalone="no"?>
<!DOCTYPE family SYSTEM "family.dtd">
<family lastname="Smith">
<member memberid="m1">Sarah</member>
<member memberid="m2">Bob</member>
<member memberid="m3" mom="m1" dad="m2">Joanne</member>
<member memberid="m4" mom="m1" dad="m2">Jim</member>
</family>
The following xmlpds.conf
<?xml version="1.0" encoding="UTF-8"?>
<!-- The Reference implementation is based on the inline DTD below
If the DTD is changed then XMLPDS code should also be modified.
Default size of column is 4000 bytes
-->
<!DOCTYPE xmlpds [
<!ELEMENT xmlpds (columnInfo?)>
<!ELEMENT columnInfo (columnLength?)>
<!ELEMENT columnLength (#PCDATA)>
]>
<xmlpds>
<columnInfo>
<columnLength>4000</columnLength>
</columnInfo>
</xmlpds>
The DTD and XML, when I use from the browser, works quite fine. The moment I try to create the layout i get the following error
ERR 63001: Invalid stream in the Data Definition URL file ......
String index out of range:-9
Any help is highly appreciated

Hi Ratheesh !!
Thanks for your suggestion.
I have the following DTD
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSPY v2004 rel. 2 U (http://www.xmlspy.com) by aichs (siss soln) -->
<!--DTD generated by XMLSPY v2004 rel. 2 U (http://www.xmlspy.com)-->
<!ELEMENT G_VAR_CD_COL1 (VAR_CD_COL1, VAR_CD_COL2, VAR_CD_COL3)>
<!ELEMENT LIST_G_VAR_CD_COL1 (G_VAR_CD_COL1+)>
<!ELEMENT VAR_CD_COL1 (#PCDATA)>
<!ELEMENT VAR_CD_COL2 (#PCDATA)>
<!ELEMENT VAR_CD_COL3 (#PCDATA)>
My XML file is as follows
<?xml version="1.0" encoding="WINDOWS-1252"?>
<!-- Generated by Oracle Reports version 9.0.2.0.3 -->
<!DOCTYPE LIST_G_VAR_CD_COL1 SYSTEM "C:\docs\x1.dtd">
<LIST_G_VAR_CD_COL1>
     <G_VAR_CD_COL1>
          <VAR_CD_COL1>1</VAR_CD_COL1>
          <VAR_CD_COL2>abcd</VAR_CD_COL2>
          <VAR_CD_COL3>2</VAR_CD_COL3>
     </G_VAR_CD_COL1>
     <G_VAR_CD_COL1>
          <VAR_CD_COL1>4</VAR_CD_COL1>
          <VAR_CD_COL2>d</VAR_CD_COL2>
          <VAR_CD_COL3>5</VAR_CD_COL3>
     </G_VAR_CD_COL1>
     <G_VAR_CD_COL1>
          <VAR_CD_COL1>1</VAR_CD_COL1>
          <VAR_CD_COL2>abcd</VAR_CD_COL2>
          <VAR_CD_COL3>2</VAR_CD_COL3>
     </G_VAR_CD_COL1>
     <G_VAR_CD_COL1>
          <VAR_CD_COL1>4</VAR_CD_COL1>
          <VAR_CD_COL2>d</VAR_CD_COL2>
          <VAR_CD_COL3>5</VAR_CD_COL3>
     </G_VAR_CD_COL1>
     <G_VAR_CD_COL1>
          <VAR_CD_COL1>1</VAR_CD_COL1>
          <VAR_CD_COL2>abcd</VAR_CD_COL2>
          <VAR_CD_COL3>2</VAR_CD_COL3>
     </G_VAR_CD_COL1>
     <G_VAR_CD_COL1>
          <VAR_CD_COL1>4</VAR_CD_COL1>
          <VAR_CD_COL2>d</VAR_CD_COL2>
          <VAR_CD_COL3>5</VAR_CD_COL3>
     </G_VAR_CD_COL1>
     <G_VAR_CD_COL1>
          <VAR_CD_COL1>1</VAR_CD_COL1>
          <VAR_CD_COL2>abcd</VAR_CD_COL2>
          <VAR_CD_COL3>2</VAR_CD_COL3>
     </G_VAR_CD_COL1>
     <G_VAR_CD_COL1>
          <VAR_CD_COL1>4</VAR_CD_COL1>
          <VAR_CD_COL2>d</VAR_CD_COL2>
          <VAR_CD_COL3>5</VAR_CD_COL3>
     </G_VAR_CD_COL1>
</LIST_G_VAR_CD_COL1>
Hope this conforms the standard. This time the error comes after I say finish while coming thru the Report Wizard. The error says XMLPDS-63002
May you please tell me the area where I am making the mistake.
Thanks,

Similar Messages

  • XML PDS Error 63001

    I developed a Report which proces an XML document based on the following schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema targetNamespace="http://palaciohierro.com.mx/mde/ebre"
    xmlns="http://palaciohierro.com.mx/mde/ebre"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:phtypes="http://palaciohierro.com.mx/mde/phtypes"
    elementFormDefault="qualified">
         <xsd:import namespace="http://palaciohierro.com.mx/mde/phtypes"
         schemaLocation="http://serreg2.palaciohierro.com.mx:8888/mdews/schema/services-types.xsd"/>
         <xsd:annotation>
              <xsd:documentation xml:lang="es">
    Esquema de respuesta de busqueda de eventos para la Mesa de Eventos Web
    Copyright 2002 palaciodehierro.com.mx. Todos los derechos reservados.
    </xsd:documentation>
         </xsd:annotation>
         <xsd:element name="evento-busqueda-respuesta">
              <xsd:complexType>
                   <xsd:complexContent>
                        <xsd:extension base="erType">
                             <xsd:attributeGroup ref="phtypes:servicioIdGroup"/>
                        </xsd:extension>
                   </xsd:complexContent>
              </xsd:complexType>
              <xsd:unique name="id_busqueda">
                   <xsd:selector xpath="busqueda"/>
                   <xsd:field xpath="@id_busqueda"/>
              </xsd:unique>
         </xsd:element>
         <xsd:complexType name="erType">
              <xsd:annotation>
                   <xsd:documentation>respuesta de busqueda de eventos</xsd:documentation>
              </xsd:annotation>
              <xsd:sequence>
                   <xsd:element name="busqueda" type="busquedaType" maxOccurs="unbounded"/>
              </xsd:sequence>
         </xsd:complexType>
         <xsd:complexType name="busquedaType">
              <xsd:annotation>
                   <xsd:documentation>evento</xsd:documentation>
              </xsd:annotation>
              <xsd:sequence>
                   <xsd:element name="evento" type="eventoType" minOccurs="0"/>
              </xsd:sequence>
              <xsd:attribute name="id_busqueda" type="phtypes:identifierType" use="required"/>
              <xsd:attribute name="encontrado" type="xsd:boolean" use="optional" default="true"/>
              <xsd:attribute name="comentario" type="phtypes:comentarioType" use="optional"/>
         </xsd:complexType>
         <xsd:complexType name="eventoType">
              <xsd:annotation>
                   <xsd:documentation>datos del evento</xsd:documentation>
              </xsd:annotation>
              <xsd:sequence>
                   <xsd:element name="organizador" type="organizadorType" minOccurs="0" maxOccurs="unbounded"/>
                   <xsd:element name="entrega" minOccurs="0" maxOccurs="unbounded">
                        <xsd:complexType>
                             <xsd:complexContent>
                                  <xsd:extension base="domicilioType">
                                       <xsd:sequence>
                                            <xsd:element name="persona" type="phtypes:personaType" minOccurs="0" maxOccurs="unbounded"/>
                                       </xsd:sequence>
                                  </xsd:extension>
                             </xsd:complexContent>
                        </xsd:complexType>
                   </xsd:element>
              </xsd:sequence>
              <xsd:attribute name="id_evento" type="phtypes:identifierType" use="required"/>
              <xsd:attribute name="numero" type="phtypes:identifierType" use="optional"/>
              <xsd:attribute name="envoltura" type="xsd:string" use="optional"/>
              <xsd:attribute name="usuario" type="xsd:string" use="required"/>
              <xsd:attribute name="tipo_evento" type="xsd:string" use="required"/>
              <xsd:attribute name="tipo_cliente" type="xsd:string" use="required"/>
              <xsd:attribute name="tienda" type="xsd:positiveInteger" use="required"/>
              <xsd:attribute name="plan" type="xsd:string" use="optional"/>
              <xsd:attribute name="fecha_evento" type="xsd:date" use="required"/>
              <xsd:attribute name="fecha_registro" type="xsd:date" use="required"/>
              <xsd:attribute name="fecha_lista" type="xsd:date" use="optional"/>
              <xsd:attribute name="fecha_cierre" type="xsd:date" use="optional"/>
              <xsd:attribute name="estado" type="phtypes:estadoEventoType" use="optional"/>
              <xsd:attribute name="com_general" type="xsd:string" use="optional"/>
              <xsd:attribute name="com_envio" type="xsd:string" use="optional"/>
              <xsd:attribute name="NIP" type="xsd:string" use="optional"/>
              <xsd:attribute name="VIP" type="xsd:boolean" use="optional" default="false"/>
         </xsd:complexType>
         <xsd:complexType name="organizadorType">
              <xsd:annotation>
                   <xsd:documentation>datos del organizador</xsd:documentation>
              </xsd:annotation>
              <xsd:complexContent>
                   <xsd:extension base="phtypes:personaType">
    <xsd:attribute name="id_participante" type="phtypes:identifierType" use="required"/>
              <xsd:attribute name="tipo" type="xsd:string" use="required"/>
                   </xsd:extension>
              </xsd:complexContent>
         </xsd:complexType>
    <xsd:complexType name="entregaType">
              <xsd:annotation>
                   <xsd:documentation>domicilio de entrega de regalos</xsd:documentation>
              </xsd:annotation>
              <xsd:sequence>
                   <xsd:element name="domicilio" type="domicilioType" minOccurs="0" maxOccurs="unbounded"/>
              </xsd:sequence>
              <xsd:attribute name="tipo" type="xsd:string" use="required"/>
              <xsd:attribute name="nombre" type="xsd:string" use="required"/>
         </xsd:complexType>
    <xsd:complexType name="domicilioType">
              <xsd:annotation>
                   <xsd:documentation>datos del domicilio</xsd:documentation>
              </xsd:annotation>
              <xsd:complexContent>
                   <xsd:extension base="phtypes:domicilioType">
                        <xsd:attribute name="id_domicilio" type="phtypes:identifierType" use="required"/>
                   </xsd:extension>
              </xsd:complexContent>
         </xsd:complexType>
    </xsd:schema>
    after setting both the schema and the XML document I want the Report to be based on, I get the following error:
    ERROR 63001: Invalid stream in the URL address of the data definition http://myserver:8888/myapp/evento-estadocuenta-respuesta.xsd eventoType.
    Are there any restrictions on the schema that the XML Reports PDS can process?
    Where could I find documentation on this isssues?
    Thanks,
    Fedro

    Indeed, I have found that no xsd includes and complex types will work. There's a faint mention of this in the Report's Realease Notes, but nothing complete and thorough.
    I have found that only the simpliest XML schemas with no custom types and (only a few elements of simple types will work). And also, a simple File-Row-column XML layout will work.
    It seems to me that the XML PDS is still a newborn, and a lot of work still needs to be done to be practical and useful... long way to get something like FOP.
    Well, the whole idea of having a web service which will feed XML docs to both parties and Report's services will have to stay in the oven a little longer (or may be not so little).
    Thanks anyway,
    Fedro

  • XML PDS report

    I have a report with two queries. The master query is a regular SQL query. The detail query uses XML datasource (a servlet that returns XML stream). The two queries are linked by a column, say, ACCOUNT_ID. When I run the report, for every master record, it requests data from the XML source defined in the child query. So if the master query returns 10000 rows, the servlet is invoked 10000 times. Is there a way to do it such that the servlet is invoked only once to get the entire XML dataset and then the report gets the detail rows from this temporary dataset?
    Thanks,
    Sameer

    Haven't heard from anyone on this. Any ideas?

  • Use dtd with multi queries in Reports9i

    Hi,
    How can i create a dtd file and an xml file for reports with multi queries i.e. join or seperate queries?
    thnx

    hello,
    not sure what you are asking for. do you want to know how to create such a file WITH or FOR reports ?
    the XML PDS can only consume rowset-row style XML data, so if you want to join XML data you will need multiple XML files or one file with associated XSLT to split it up at runtime and feed into different data sources.
    to generate XML, just use desformat=XML. we do not provide DTD generation though.
    thanks,
    ph.

  • Developer Suite

    iii
    Preface.............................. xvii
    Intended Audience... xvii
    Documentation Accessibility .................................................................................................................. xvii
    Organization ............ xviii
    Related Documents . xviii
    Product Accessibility xix
    Related Documents ... xix
    Conventions ............... xx
    Part I Product Release Notes
    1 What¡¯s New in the Oracle Developer Suite 10g Release Notes?
    1.1 Chapter 4 "Known Issues" ......................................................................................................... 1-1
    1.1.1 New Topics ........................................................................................................................... 1-1
    1.2 Chapter 7 "Oracle Discoverer Administrator" ........................................................................ 1-1
    1.2.1 New Topics ........................................................................................................................... 1-1
    1.3 Chapter 9 "Oracle Forms Developer" ....................................................................................... 1-2
    1.3.1 New Topics ........................................................................................................................... 1-2
    1.3.2 Updated Topics .................................................................................................................... 1-2
    1.4 Chapter 10 "Oracle Reports"...................................................................................................... 1-2
    1.4.1 New Topics ........................................................................................................................... 1-2
    1.4.2 Updated Topics .................................................................................................................... 1-2
    2 Product Naming
    2.1 Windows Components............................................................................................................... 2-1
    2.2 Linux, Solaris, and HP-UX Components................................................................................. 2-1
    3 Certification Information
    3.1 Certification Information ........................................................................................................... 3-1
    iv
    4 Known Issues
    4.1 Preinstallation Issues .................................................................................................................. 4-1
    4.1.1 Assistive Technologies (Windows only) .......................................................................... 4-1
    4.1.2 Oracle Business Intelligence Beans ................................................................................... 4-2
    4.1.3 Oracle9i Warehouse Builder .............................................................................................. 4-2
    4.2 Installation Issues........................................................................................................................ 4-2
    4.3 Postinstallation Issues ................................................................................................................ 4-3
    4.3.1 Java Versions ........................................................................................................................ 4-3
    4.4 Deinstallation Issues................................................................................................................... 4-3
    4.5 Platform-specific Issues.............................................................................................................. 4-3
    4.5.1 Linux Issues .......................................................................................................................... 4-3
    4.5.1.1 Revised Linux Operating Environment Software Requirements.......................... 4-3
    4.5.1.2 Setting the PATH environment variable in Linux................................................... 4-3
    4.6 Configuration Issues................................................................................................................... 4-3
    4.7 Administration Issues ................................................................................................................ 4-3
    4.8 Documentation Errata ................................................................................................................ 4-4
    4.8.1 Oracle Developer Suite 10g Installation Guide ............................................................... 4-4
    4.8.2 Oracle Developer Suite 10g Quick Installation Guide.................................................... 4-4
    4.8.3 Linux Operating Environment Software Requirements ................................................ 4-4
    4.8.3.1 Red Hat Linux 2.1 Requirements ............................................................................... 4-5
    4.8.3.2 Red Hat Linux 3.0 Requirements ............................................................................... 4-6
    4.8.3.3 UnitedLinux 1.0 Requirements................................................................................... 4-8
    Part II Component Release Notes
    5 Oracle9i JDeveloper
    5.1 General Issues and Workarounds ............................................................................................ 5-1
    5.1.1 Introd 5-1
    5.1.1.1 Support for Oracle9i Release 2 (9.2) ........................................................................... 5-2
    5.1.2 Deploying to OC4J............................................................................................................... 5-2
    5.1.2.1 OC4J Version Shipped with Oracle JDeveloper 9.0.4.............................................. 5-2
    5.1.2.2 OC4J Memory Requirements...................................................................................... 5-2
    5.1.3 Deploying to Other Application Servers.......................................................................... 5-3
    5.1.3.1 Problems Running UIX Web Applications (including the BC4J JSP Admin Page)
    Deployed to Non-Oracle Application Servers (2577293) ........................................ 5-3
    5.1.3.2 Deploying Web Applications to Apache Tomcat 4.1 .............................................. 5-4
    5.1.3.3 Problems in JSP Applications Deployed to Tomcat (2615358)............................... 5-4
    5.1.3.4 XSQL Page Processor Cannot Read Pages from Unexpanded Servlet 2.2 WAR File
    (1552039) ........................................................................................................................ 5-4
    5.1.3.5 Type Incompatibilities when Deploying to WebLogic ........................................... 5-4
    5.1.3.6 WebLogic6.1 Fails to Understand Windows-1252 Encoding in XML Files ......... 5-4
    5.1.3.7 CORBA Requires JDK 1.3 at Runtime (2685103)...................................................... 5-5
    v
    5.1.4 Miscellaneous Deployment Issues .................................................................................... 5-5
    5.1.4.1 ejb-ref in web.xml not Updated if the Bean Type is Changed from Remote to Local
    (2589997) ........................................................................................................................ 5-5
    5.1.5 BC4J Is 5-5
    5.1.5.1 Available Tables not Visible Under Java Type Map and SQL92 SQL Flavor
    (2693168) 5-5
    5.1.5.2 902 Projects with VO or Attribute Names Containing $ do not Migrate (2701773)....
    5-5
    5.1.5.3 JDeveloper 9.0.4 *.jpr File Format Not Backward Compatible with 9.0.3 (2682921) ..
    5-6
    5.1.5.4 Migrated Project: Export Interface is Removed but Still Implemented in IMPL
    Class (2676186) .............................................................................................................. 5-6
    5.1.5.5 Bean Name in <EJB-LOCAL-REF> not Updated when Underlying Entity is
    Renamed (2587916) ....................................................................................................... 5-6
    5.1.5.6 Setting Current Database Time Using Entity Facades (2525437) .......................... 5-6
    5.1.5.7 Replace qView with getRowSet in Migration Documentation (2723075) ............ 5-6
    5.1.5.8 Documentation Refers to BC4J "Wizards" ................................................................ 5-6
    5.1.5.9 Unable to Run a BC4J JSP in OC4J in VB Bind Mode (2594776) ............................ 5-6
    5.1.5.10 Problem Running Struts Actions in 9.0.3 Project After Upgrade (2756440) ........ 5-7
    5.1.5.11 Help Sometimes Not Available for Business Component Browser...................... 5-7
    5.1.5.12 jbo.debugoutput Property can Take Value of "file"................................................. 5-7
    5.1.6 EJB Issues .............................................................................................................................. 5-7
    5.1.6.1 Cannot Run EJB in Embedded OC4J Server if Workspace Has Two Projects
    (2096700, 2591173) ........................................................................................................ 5-7
    5.1.7 JClient Issues ........................................................................................................................ 5-7
    5.1.7.1 JTree Binding is not Editable (2061405)..................................................................... 5-8
    5.1.7.2 Cannot Run JClient Applications in EJB Mode Running in Webstart 1.2 (2699458) ..
    5-8
    5.1.7.3 Webstart not Launched in IE 5.5 Due to Mimetype Problems (2573655)............. 5-8
    5.1.7.4 SpinnerNumberModel for JSpinner Control does not Work for
    oracle.jbo.domain.Number (2738858) ........................................................................ 5-8
    5.1.8 Source Control Support Issues........................................................................................... 5-8
    5.1.8.1 Oracle SCM: JDeveloper Does Not Share Folder Mappings with the Oracle SCM
    RON 5-8
    5.1.8.2 Oracle SCM: Using JDeveloper and the Oracle SCM VHV.................................... 5-9
    5.1.8.3 Oracle SCM: Connecting to Oracle Software Configuration Manager 6i Release
    4.1.1 or Above ................................................................................................................ 5-9
    5.1.9 Modeling Issues: General ................................................................................................... 5-9
    5.1.9.1 Performing Source Control Operations On Model Element and Diagram Files
    (2211605) ........................................................................................................................ 5-9
    5.1.9.2 Exceptions on Startup if Install Directory Has a Space in Name (2709528)......... 5-9
    5.1.10 Modeling Issues: Modeling Java Classes, BC4J or EJB Components ........................... 5-9
    5.1.10.1 Deleting Modeled Java Classes (2706800)................................................................. 5-9
    5.1.11 Modeling Issues: Modeling Activities for E-Business Integration ............................... 5-9
    5.1.11.1 E-Business Integration Generator Generates Propagations Using Public Database
    Links (2063917) .............................................................................................................. 5-9
    5.1.11.2 Using HTTP Propagation on a 9.0.1 Database ...................................................... 5-10
    vi
    5.1.12 Web Services Issues .......................................................................................................... 5-10
    5.1.12.1 Renaming a Method on a Modeled Web Service Fails to Expose It (2702659) . 5-10
    5.1.12.2 SOAP Web Service Does Not Start New Session (2218102) ................................ 5-10
    5.1.12.3 Using JMS Web Services with OC4J ....................................................................... 5-10
    5.1.12.4 Creating JMS Web Services that Use Both Send and Receive Operations ........ 5-10
    5.1.12.5 Running the PL/SQL Web Service Generator with JDK 1.4............................... 5-11
    5.1.12.6 Runtime Error Calling a Web Service from a Generated Stub (2389203).......... 5-11
    5.1.12.7 Cannot Model Web Services Based on PL/SQL Packages (2466833) ................ 5-11
    5.1.12.8 Creating a Stub with Overloaded Methods to a .NET Web Service (2689939). 5-11
    5.1.12.9 Web Service Stub if Generated from JDeveloper Install Path has Space (3068701) ....
    5-11
    5.1.12.10 Generating Stubs for WSDL Files That Refer to Other WSDL Files (2627242). 5-12
    5.1.13 Using WebDAV Connections in JDeveloper ................................................................ 5-12
    5.1.14 Miscellaneous Issues ........................................................................................................ 5-12
    5.1.14.1 PL/SQL Compilation Errors Not Displayed (2688533) ....................................... 5-12
    5.1.14.2 Allowable Values for Columns Must be Given a Display Sequence (2717508) 5-12
    5.1.14.3 Toystore Demo Contains Obsolete bc4jstruts.jar File........................................... 5-12
    5.1.14.4 Right Mouse Menu "Go to Source" no Longer Working (3146584).................... 5-13
    5.1.14.5 Passivation/Activation of interMedia Domain Objects with Media Content to
    Upload does not Work in 3 Tier Environment (2887647) .................................... 5-13
    5.2 Platform-specific Issues and Workarounds ......................................................................... 5-13
    5.2.1 Windows Platform Issues and Workarounds .............................................................. 5-13
    5.2.1.1 Updated JDK Required for Windows Preview Oracle9i JDeveloper ................ 5-13
    5.2.2 Linux, Solaris, and HP-UX Platform Issues and Workarounds................................. 5-13
    5.2.2.1 General Linux, Solaris, and HP-UX Platform Issues and Workarounds........... 5-13
    5.2.2.2 Solaris-specific Issues and Workarounds .............................................................. 5-14
    5.2.2.3 Linux-specific Issues and Workarounds................................................................ 5-14
    5.2.2.4 HP-UX Issues and Workarounds ............................................................................ 5-14
    5.3 Configuration Issues and Workarounds .............................................................................. 5-15
    5.4 Administration Issues and Workarounds ............................................................................ 5-15
    5.5 Documentation Errata ............................................................................................................. 5-15
    5.5.1 Replace qView with getRowSet in Migration Documentation (2723075) ................ 5-15
    5.5.2 Documentation Refers to BC4J "Wizards"..................................................................... 5-15
    6 Oracle Business Intelligence Beans
    6.1 Introduction . 6-1
    6.2 General Issues and Workarounds ............................................................................................ 6-2
    6.2.1 Tutorials and samples ......................................................................................................... 6-2
    6.2.2 QueryBuilder and queries .................................................................................................. 6-2
    6.2.3 Presentations ........................................................................................................................ 6-3
    6.2.4 BI Beans Catalog .................................................................................................................. 6-3
    6.2.5 General deployment issues ................................................................................................ 6-5
    6.2.6 Configuration steps for deploying HTML-client applications ..................................... 6-5
    6.2.6.1 Deploying to OC4J........................................................................................................ 6-5
    6.2.6.2 Migrating Applications Deployed to OC4J .............................................................. 6-6
    6.2.6.3 Deploying to Tomcat.................................................................................................... 6-6
    6.2.6.4 Deploying to JBoss........................................................................................................ 6-7
    vii
    6.2.7 Deploying to Java Web Start .............................................................................................. 6-7
    6.2.8 Internationalization issues.................................................................................................. 6-8
    6.2.9 Accessibility limitations...................................................................................................... 6-8
    6.3 Platform-specific Issues and Workarounds ............................................................................ 6-9
    6.4 Configuration Issues and Workarounds ................................................................................. 6-9
    6.4.1 JDBC Drivers ........................................................................................................................ 6-9
    6.4.1.1 Upgrading the drivers automatically ........................................................................ 6-9
    6.4.1.2 Upgrading the drivers manually................................................................................ 6-9
    6.4.1.3 Restoring the original drivers .................................................................................. 6-10
    6.4.2 Changing from the thin to the thick drivers ................................................................. 6-10
    6.4.3 BI Beans configuration diagnostic utility ...................................................................... 6-10
    6.4.4 Connections ....................................................................................................................... 6-11
    6.5 Administration Issues and Workarounds ............................................................................ 6-11
    6.6 Documentation Errata ............................................................................................................. 6-11
    7 Oracle Discoverer Administrator
    7.1 General Issues and Workarounds ............................................................................................ 7-1
    7.1.1 "Cannot find a required file: dcmresus.msb." When Trying to Launch Oracle
    Discoverer 9.0.2 after Installing 9.0.4 ................................................................................ 7-1
    7.1.2 ORA-3113 Errors when Using Heterogeneous Data Services with Oracle Discoverer
    Administrator ....................................................................................................................... 7-2
    7.1.3 JOB_QUEUE_INTERVAL Settings and Oracle Applications Users ............................ 7-2
    7.1.4 Recommended Update for Batch Repository Created with Oracle Discoverer 9.0.2 7-2
    7.2 Platform-specific Issues and Workarounds ............................................................................ 7-3
    7.3 Configuration Issues and Workarounds ................................................................................. 7-3
    7.4 Administration Issues and Workarounds ............................................................................... 7-3
    7.5 Useful I 7-3
    7.5.1 Upgrading from Oracle Discoverer 3.1 ............................................................................ 7-3
    7.5.2 Manually Editing the End User Layer Tables ................................................................. 7-3
    7.5.3 Availability of HWOnline files .......................................................................................... 7-3
    7.5.4 Setting Oracle Discoverer Registry Variables for Use by Oracle Discoverer EUL
    Command Line for Java Commands ................................................................................ 7-4
    7.5.5 Additional Oracle Discoverer Registry Variables........................................................... 7-4
    7.5.6 Required Privileges For the Scheduled Workbook Results Schema ............................ 7-5
    7.5.6.1 How to grant the SELECT privilege on the synonym v$parameter to enable you to
    run scheduled workbooks ........................................................................................... 7-5
    7.5.7 Running the Oracle Discoverer EUL Command Line for Java (Linux, Solaris, and
    HP-UX only) ......................................................................................................................... 7-7
    7.5.8 Oracle Discoverer and Real Application Clusters (RAC)/Transparent Application
    Failover (TAF) ...................................................................................................................... 7-7
    7.5.9 Installing the Lineage workbook for use with Oracle Warehouse Builder................. 7-8
    7.5.10 Using the Discoverer workbook dump utility ................................................................ 7-9
    viii
    7.6 Documentation Errata ............................................................................................................. 7-12
    7.6.1 Item Class Wizard: Choose Attributes dialog description ......................................... 7-12
    7.6.2 Correction to /export (EUL Objects) Example............................................................. 7-13
    7.6.3 Missing ¡®-jar¡¯ in Example Syntax given for Running Oracle Discoverer EUL Command
    Line for Java commands .................................................................................................. 7-13
    7.6.4 About Scheduled Workbooks and Compatibility Between the Current Version of
    Oracle Discoverer and Previous Releases 7-13
    7.6.5 <ORACLE_HOME>\discoverer\util should read <ORACLE_HOME>\discoverer\sql
    7-13
    8 Oracle Discoverer Desktop
    8.1 General Issues and Workarounds ............................................................................................ 8-1
    8.1.1 "Cannot find a required file : dcmresus.msb." When Trying to Run Oracle Discoverer
    9.0.2 after Installing 9.0.4 .................................................................................................... 8-1
    8.2 Platform-specific Issues and Workarounds ............................................................................ 8-2
    8.3 Configuration Issues and Workarounds ................................................................................. 8-2
    8.4 Administration Issues and Workarounds ............................................................................... 8-2
    8.5 Useful I 8-2
    8.5.1 Manually Editing the End User Layer Tables ................................................................. 8-2
    8.5.2 Refresh Query For Users Only Able to Run Scheduled Workbooks ........................... 8-2
    8.5.3 Availability of HWOnline files .......................................................................................... 8-2
    8.5.4 Additional Oracle Discoverer Registry variables ........................................................... 8-3
    8.5.5 Oracle Discoverer and Real Application Clusters (RAC)/Transparent Application
    Failover (TAF) ...................................................................................................................... 8-3
    8.6 Documentation Errata ................................................................................................................ 8-4
    9 Oracle Forms Developer
    9.1 General Issues and Workarounds ............................................................................................ 9-1
    9.1.1 No Need To Recompile Forms When Upgrading To Oracle Forms 10g (9.0.4) ......... 9-1
    9.1.2 Obtaining Environment Handles and Service Contexts in V8 Mode .......................... 9-1
    9.1.3 Forms Cannot Handle Multibyte CLOB Data Correctly................................................ 9-2
    9.1.4 Embedded Fonts in Forms Developer .............................................................................. 9-2
    9.1.5 Iconic Push Buttons ............................................................................................................. 9-2
    9.1.5.1 Restriction For Data Block Wizard............................................................................. 9-2
    9.2 Platform-specific Issues and Workarounds ............................................................................ 9-3
    9.2.1 Windows Platform Issues and Workarounds ................................................................. 9-3
    9.2.1.1 Oracle Forms Accessibility Information.................................................................... 9-3
    9.2.1.1.1 Using a Screen Reader and Java Access Bridge with Oracle Forms .............. 9-3
    9.2.1.2 Java Related Dialogs And Windows Are Not Read By Jaws ................................. 9-4
    9.2.1.3 Workaround for Reading Accessibility PL/SQL Error Messages......................... 9-5
    9.2.1.4 Location of JAWS Scripts............................................................................................. 9-5
    9.2.1.5 Graphics Fails Against Database 9.0.1.4.0 (64bit) .................................................... 9-5
    9.2.1.6 List of Colors in the Default Color Palette ................................................................ 9-5
    9.2.1.7 Changing the Look-and-Feel for the Property Inspector and Navigator............. 9-5
    9.2.1.8 8.2.1.1 FRM-18113 Error When Clicking On Design Capture................................ 9-5
    ix
    9.2.2 UNIX Platform Issues and Workarounds ........................................................................ 9-5
    9.2.2.1 General UNIX Platform Issues and Workarounds .................................................. 9-6
    9.2.2.1.1 USER_EXIT in UNIX............................................................................................. 9-6
    9.2.2.2 Using TK90_UNKNOWN........................................................................................... 9-7
    9.2.3 HP-UX Issues and Workarounds ..................................................................................... 9-7
    9.3 Configuration Issues and Workarounds ................................................................................. 9-7
    9.3.1 Forms and Reports Integration.......................................................................................... 9-7
    9.3.1.1 (2228305) Cannot Invoke Reports Builder from Form Builder .............................. 9-7
    9.3.1.2 Restarting OPMN In-process Reports Server Raises Error .................................... 9-8
    9.3.1.3 Forms Migration Assistant: RUN_PRODUCT(Reports) rp2rro Reports Object Is
    Not Created in Object Library .................................................................................... 9-8
    9.4 Documentation Errata ................................................................................................................ 9-8
    9.4.1 Oracle Forms Developer (Builder) Online Help ............................................................. 9-8
    9.4.1.1 About Run Form........................................................................................................... 9-8
    10 Oracle Reports
    10.1 General Issues and Workarounds ......................................................................................... 10-1
    10.1.1 Creating an Express Server Query ................................................................................. 10-1
    10.1.2 Inserting a Graph in the Paper Design View for a Matrix-with-Group Report ...... 10-2
    10.1.3 Running a Report containing non-encoded URL streams in Internet Explorer ...... 10-2
    10.1.4 Running a Simple Matrix Report to the Web ............................................................... 10-2
    10.1.5 Opening / Running an encoded JSP report.................................................................. 10-2
    10.1.6 Dynamically Embedding a Character Set in a JSP file ................................................ 10-3
    10.1.7 Running a Multibyte report containing an embedded Oracle Object....................... 10-4
    10.1.8 Viewing Oracle Enterprise Manager screens in non European languages .............. 10-4
    10.1.9 Specifying the encoding of an XML PDS Report ......................................................... 10-4
    10.1.10 FTP and WebDaV Destinations Not Supported from Reports Builder .................... 10-4
    10.1.11 Oracle9i JDeveloper Integration ..................................................................................... 10-4
    10.1.11.1 Deadlock When Debugging JSP Reports in Oracle9i JDeveloper ...................... 10-5
    10.1.11.2 Graph Not Appearing in Oracle9i JDeveloper...................................................... 10-5
    10.1.11.3 Reports in-process server ......................................................................................... 10-5
    10.2 Platform-specific Issues and Workarounds ......................................................................... 10-5
    10.2.1 Windows Platform Issues and Workarounds .............................................................. 10-5
    10.2.1.1 Running a Report with an Embedded 6i Graphic on an OPMN-Managed Reports
    Server ........................................................................................................................... 10-5
    10.2.1.2 Starting a Reports Server Registered with Oracle Enterprise Manager as a
    Windows Service ....................................................................................................... 10-6
    10.2.1.3 Using osfind with JDK 1.4........................................................................................ 10-6
    10.2.1.4 Invoking the Getting Started Page From Reports Builder................................... 10-6
    10.2.1.5 Printing Reports Without Hardware-based Left Margins................................... 10-7
    10.2.2 Linux, Solaris, and HP-UX Platform Issues and Workarounds................................. 10-7
    10.2.2.1 General Linux, Solaris, and HP-UX Platform Issues and Workarounds .......... 10-8
    10.2.2.1.1 Running a Report to DelimitedData on OracleAS Portal............................. 10-8
    10.2.2.1.2 Providing the location to a character set-specific Tk2Motif.rgb file ........... 10-8
    10.2.2.1.3 Implementing removal of DISPLAY and printer dependencies ................. 10-8
    x
    10.2.2.2 Solaris Issues and Workarounds ............................................................................. 10-9
    10.2.2.2.1 Reports Builder stops responding on Solaris 2.9 ........................................... 10-9
    10.2.2.2.2 Invoking the Graph Wizard in a multibyte environment ............................ 10-9
    10.2.2.3 Linux Issues and Workarounds ............................................................................ 10-10
    10.2.2.3.1 Radio box selection using mouse in New Program Unit dialog box does not
    take effect (3209858) ......................................................................................... 10-10
    10.2.2.4 HP-UX Issues and Workarounds .......................................................................... 10-10
    10.2.2.4.1 Running Oracle Reports in a Japanese Environment on HP-UX .............. 10-10
    10.3 Configuration Issues and Workarounds ............................................................................ 10-10
    10.3.1 Changing the Administrator Login by Using Reports Queue Manager ................ 10-11
    10.3.2 Repairing Fonts Not Appearing Correctly in Web Source View............................. 10-11
    10.3.3 Optimizing the Deployment of Reports ...................................................................... 10-12
    10.3.4 Improving Image Resolution of Graphs Displayed in a PDF File or on a Printer 10-12
    10.3.5 Specifying the Values for Oracle Reports' Java Virtual Machine ............................ 10-13
    10.3.6 Resolving Reports-Portal Integration Error When Attempting OID Create Resource .....
    10-13
    10.3.7 Running to Web Layout on Reports Builder .............................................................. 10-14
    10.4 Administration Issues and Workarounds .......................................................................... 10-14
    10.4.1 Authenticating Enterprise Manager Access to Reports Server Information.......... 10-15
    10.4.2 Running Reports on OracleAS Portal as an Item Link.............................................. 10-15
    10.5 Documentation Errata ........................................................................................................... 10-16
    10.5.1 REPORTS_CLASSPATH variable in Linux, Solaris, and HP-UX............................ 10-16
    10.5.2 Oracle Reports Documentation Page on Oracle Technology Network .................. 10-16
    10.5.3 Dynamic Environment Switching in Oracle Reports ............................................... 10-17
    10.5.4 Revised Section 13.3.3.2 of Oracle Application Server Reports Services Publishing
    Reports to the Web ......................................................................................................... 10-17
    10.5.4.1 Deploying an Oracle Reports JSP to an OC4J_BI_FORMS Instance ................ 10-17
    10.5.4.1.1 To deploy to an existing OC4j_BI_FORMS instance: .................................. 10-17
    10.5.4.1.2 To deploy to a new OC4j_BI_FORMS instance:........................................... 10-18
    10.5.4.1.3 To configure the new OC4J instance: ............................................................ 10-18
    10.5.5 Possible Outdated Screenshots in Oracle Reports Server Reports Services Publishing
    Reports to the Web ......................................................................................................... 10-20
    11 Oracle Designer
    11.1 General Issues and Workarounds ......................................................................................... 11-1
    11.1.1 Installation ......................................................................................................................... 11-1
    11.1.1.1 Oracle Designer patchsets to 9.0.4........................................................................... 11-1
    11.1.1.2 Oracle Designer/SCM Patchset 9.0.4.3: immediate installation may be required......
    11-1
    11.1.1.3 Japanese in the multi-language environment ....................................................... 11-2
    11.1.1.4 Setting up the repository for NLS operation ......................................................... 11-2
    11.1.1.5 Enabling repository support for Oracle Designer Objects when the repository only
    supports core objects ................................................................................................. 11-3
    xi
    11.1.1.6 Migration from Oracle Designer Web Assistant (ODWA) to Repository Object
    Browser (ROB) ........................................................................................................... 11-3
    11.1.1.6.1 Installing ROB..................................................................................................... 11-3
    11.1.1.6.2 ODWA Data ........................................................................................................ 11-3
    11.1.1.6.3 Migration to ROB ............................................................................................... 11-4
    11.1.1.6.4 ODWA Preferences ............................................................................................ 11-4
    11.1.2 System Modeling and Design Tools .............................................................................. 11-5
    11.1.3 Database Design Transformer ........................................................................................ 11-8
    11.1.4 Form Generator................................................................................................................. 11-9
    11.1.5 Web PL/SQL Generator ................................................................................................ 11-11
    11.1.6 Report Generator, Design Capture and Application Logic Capture ...................... 11-12
    11.1.7 Server Generator ............................................................................................................. 11-13
    11.1.8 Repository Reports ......................................................................................................... 11-14
    11.1.9 Matrix Diagrammer........................................................................................................ 11-15
    11.1.10 Accessibility ..................................................................................................................... 11-15
    11.1.11 Other problems and restrictions................................................................................... 11-15
    11.2 Platform-specific Issues and Workarounds ....................................................................... 11-16
    11.3 Configuration Issues and Workarounds ............................................................................ 11-17
    11.4 Administration Issues and Workarounds .......................................................................... 11-17
    11.5 Documentation Errata ........................................................................................................... 11-17
    12 Oracle Software Configuration Manager
    12.1 General Issues and Workarounds ......................................................................................... 12-1
    12.1.1 Patchs 12-1
    12.1.2 Oracle Forms Developer and Oracle Reports Developer Users ................................ 12-2
    12.1.3 Certification against Oracle RDBMS.............................................................................. 12-2
    12.1.4 Upgrading from Oracle Designer Release 1.3.2 ........................................................... 12-2
    12.1.5 Multi-Language Environment ........................................................................................ 12-2
    12.1.6 Compatibility of Oracle SCM and Oracle Repository 6i Repositories ...................... 12-2
    12.1.7 Changes from the Previous Release (iDS 9.0.2 maintenance release 9.0.2.5) ........... 12-3
    12.1.8 Fixed Bugs.......................................................................................................................... 12-3
    12.1.9 API and Model Reference Guide.................................................................................... 12-4
    12.2 Known Problems and Restrictions ........................................................................................ 12-4
    12.2.1 Migra 12-4
    12.2.2 SCM Java Tools ................................................................................................................. 12-6
    12.2.3 Repository Administration Utility (RAU)..................................................................... 12-7
    12.2.4 Repository Object Navigator........................................................................................... 12-8
    12.2.5 Compare Utility .............................................................................................................. 12-10
    12.2.6 Merge 12-11
    12.2.7 Version History Viewer ................................................................................................. 12-11
    12.2.8 Version Event Viewer .................................................................................................... 12-12
    12.2.9 Importing and Exporting............................................................................................... 12-12
    12.2.10 Dependency Manager .................................................................................................... 12-14
    12.2.11 Command Line Tool....................................................................................................... 12-14
    12.2.12 Other Known Problems and Restrictions.................................................................... 12-15
    xii
    12.3 Known Restrictions to Keyboard Controls ........................................................................ 12-18
    12.3.1 General Keyboard Control Restrictions ...................................................................... 12-18
    12.3.2 Non-Standard Keyboard Controls ............................................................................... 12-18
    12.3.2.1 Dependency Manager............................................................................................. 12-18
    12.3.2.2 Repository Administration Utility ........................................................................ 12-19
    12.3.2.3 Repository Object Navigator ................................................................................. 12-19
    12.3.2.4 General Restrictions for Java Tools ....................................................................... 12-20
    12.3.3 Known Problems and Workarounds ........................................................................... 12-21
    12.3.3.1 Merge Window........................................................................................................ 12-21
    12.3.3.2 Repository Object Navigator ................................................................................. 12-21
    12.3.3.3 Other Known Problems and Restrictions ............................................................ 12-21
    12.3.4 Command Line Tool Accessibility ............................................................................... 12-22
    12.4 Platform-specific Issues and Workarounds ....................................................................... 12-22
    12.4.1 Windows Platform Issues and Workarounds ............................................................ 12-22
    12.4.2 Linux, Solaris, and HP-UX Platform Issues and Workarounds............................... 12-22
    12.4.2.1 General Linux, Solaris, and HP-UX Platform Issues and Workarounds......... 12-22
    12.4.2.2 Solaris Issues and Workarounds ........................................................................... 12-22
    12.4.2.3 Linux Issues and Workarounds ............................................................................ 12-22
    12.4.2.4 HP-UX Issues and Workarounds .......................................................................... 12-22
    12.5 Configuration Issues and Workarounds ............................................................................ 12-22
    12.6 Administration Issues and Workarounds .......................................................................... 12-22
    12.7 Documentation Errata ........................................................................................................... 12-22
    Part III Other Release Notes
    13 Oracle Application Server Containers for J2EE (OC4J)
    13.1 Configuration Issues and Workarounds .............................................................................. 13-1
    13.1.1 OPMN Does Not Properly Assign CORBA SSL Client Ports for Default ................ 13-2
    13.1.2 Sharing and Using Libraries ........................................................................................... 13-2
    13.1.3 Invalid or Unneeded Library Elements Degrade Performance ................................. 13-2
    13.1.4 Custom User Managers Deployed Within EJB JAR Files ........................................... 13-2
    13.1.5 Considerations for Startup and Shutdown................................................................... 13-3
    13.1.6 Supported JDK Versions.................................................................................................. 13-3
    13.1.7 Migrating Source Code from JDK 1.4 to JDK 1.3 ......................................................... 13-3
    13.1.8 Migrating Source Code from JDK 1.3 to JDK 1.4 ......................................................... 13-3
    13.1.9 OC4J Demo Downloads................................................................................................... 13-4
    13.2 Release Notes for JSP, Tag Libraries, and Related Demos................................................. 13-4
    13.2.1 Cannot Invoke Classes That Are Not in Packages....................................................... 13-4
    13.2.2 Set the SAX Driver When Starting OC4J ....................................................................... 13-5
    13.2.3 JSP ojspc Issues.................................................................................................................. 13-5
    13.2.3.1 Debug Option Has No Effect on ojspc Output...................................................... 13-5
    13.2.3.2 The /WEB-INF/lib or /WEB-INF/classes Directories Should Not Contain .java
    Files ............................................................................................................................. 13-6
    xiii
    13.2.4 JESI Tag Release Notes..................................................................................................... 13-6
    13.2.4.1 JESI Tags No Longer Require Conditional Treatment ......................................... 13-6
    13.2.4.2 JESI personalize Tag Now Adds Single Quotes.................................................... 13-6
    13.2.4.3 A fragment Tag Can Be Inside an Included Page................................................. 13-6
    13.2.4.4 Multiple control or template Tags Can Be Used................................................... 13-6
    13.2.4.5 No Response Output Outside the Tags of a template Tag .................................. 13-7
    13.2.4.6 Do Not Use Explicit ESI Markup With JESI Tags ................................................. 13-7
    13.2.5 Tag Library Descriptors Must Be Under WEB-INF..................................................... 13-7
    13.2.6 Adding Tag Library JAR Files to /WEB-INF/lib While OC4J Is Running.............. 13-7
    13.2.7 Search Local Classes First ................................................................................................ 13-7
    13.2.8 java.lang.ClassFormatError: (Truncated Class File) .................................................... 13-8
    13.3 Release Notes for Servlets....................................................................................................... 13-8
    13.3.1 Cannot Invoke Classes Not in Packages ....................................................................... 13-8
    13.3.2 Servlet Invocation by Class Name Is Available During Development..................... 13-8
    13.3.3 Do Not Use Certain <orion-web-app> Attributes ....................................................... 13-9
    13.4 Release Notes for EJB .............................................................................................................. 13-9
    13.4.1 Client Requests Must Include a Port Number.............................................................. 13-9
    13.4.2 MDB Transaction Timeout .............................................................................................. 13-9
    13.4.3 Create and Release JMS Connections for JMS in the MDB onMessage() Method 13-10
    13.4.4 Considerations When Modifying Your orion-ejb-jar.xml File ................................. 13-10
    13.4.5 Static Block in an EJB...................................................................................................... 13-10
    13.4.6 OC4J Instances Terminating Due To ping Timeout .................................................. 13-10
    13.4.7 Miscellaneous EJB Release Notes ................................................................................. 13-11
    13.5 Release Notes for OC4J Services .......................................................................................... 13-12
    13.5.1 Release Notes for Java Object Cache (JOC)................................................................. 13-12
    13.5.1.1 Use javacache.xml for JOC Configuration ........................................................... 13-12
    13.6 Release Notes for DataDirect Connect for JDBC............................................................... 13-12
    13.6.1 Considerations When Using DataDirect Connect for JDBC..................................... 13-12
    13.6.2 Installing DataDirect Connect for JDBC...................................................................... 13-13
    13.7 Documentation Errata ........................................................................................................... 13-15
    13.7.1 Servlet Developer's Guide Errata ................................................................................. 13-15
    13.7.1.1 The OC4J 9.0.4 JSP Container Supports the persistence-path Flag .................. 13-15
    13.7.2 Support for JavaServer Pages Developer¡¯s Guide Errata ......................................... 13-15
    13.7.2.1 mod_oc4j Does Not Restart OC4J Processes........................................................ 13-16
    13.7.3 OC4J User¡¯s Guide Errata .............................................................................................. 13-16
    13.7.3.1 End to End Test Results for Metrics Load Balancing ......................................... 13-16
    Index

    I am not quite sure what either of you are after, but if you hit the "Documentation" link on OTN you will find the documentation, such as the above list, for almost all of Oracle products. Most are available online in HTML format or PDF and some have a part number so that they can be ordered.
    The 10g Developer Suite Documentation is here: http://otn.oracle.com/documentation/dev10g.html
    Regards
    Sue

  • Using user parameter for

    Hello,
    I have created a report using an xml pds. I am using a servlet for the xml data stream source. Everything works great with the url to the servlet hard-coded between the <xml></xml> tags (ex. <xml>http://10.3.35.119:9004/ssapp/servlet/ScheduleDataServlet</xml>) but when I try using a user parameter between the tags (so I will be able to dynamically change the url to this servlet) it bombs. Please see my source code and error message below. Any help would be greatly appreciated, I've been stuck on this for days! Thanks!
    <rw:report id="recoveryCenterScheduleReport" parameters="server=myreportserver&userid=ssstage/ssstage@DEVL&p_xmlDataURL=http://10.3.35.119:9004/ssapp/servlet/ScheduleDataServlet">
    <rw:objects id="objects">
    <?xml version="1.0" encoding="WINDOWS-1252" ?>
    <report name="XMLscheduleReport" DTDVersion="9.0.2.0.0">
    <xmlSettings xmlTag="XMLSCHEDULEREPORT" xmlPrologType="text">
    <![CDATA[<?xml version="1.0" encoding="&Encoding"?>]]>
    </xmlSettings>
    <data>
    <userParameter name="XML_HTTPS" datatype="character"
    pluginClass="oracle.reports.plugin.datasource.xmlpds.XMLDataSourceFactory"
    width="255" defaultWidth="0" defaultHeight="0" display="no"/>
    <userParameter name="p_xmlDataURL" datatype="character" width="100"
    precision="10" defaultWidth="0" defaultHeight="0"/>
    <dataSource name="QP_1">
    <plugin
    factoryClass="oracle.reports.plugin.datasource.xmlpds.XMLDataSourceFactory"
    majorVersionNumber="1" minorVersionNumber="2"
    signOnParameter="XML_HTTPS">
    <![CDATA[<xmlpds DTDVersion=" 1.0">
    <dtd>null</dtd>
    <schema>file:///C:/Practic Workspace/Practice/WEB-INF/xsd/scheduleReport.xsd</schema>
    <XSQLschema>null</XSQLschema>
    <XSQLWithDTD>false</XSQLWithDTD>
    <type>false</type>
    <xmlWritten>true</xmlWritten>
    <validate>true</validate>
    <xml>&<[b]p_xmlDataURL></xml>
    <xsl>null</xsl>
    javax.servlet.jsp.JspException: rwlib-1: REP-0002: Unable to retrieve a string from the report builder message file.
    REP-0069: Internal error
    XMLPDS-63004:Generic error while parsing the URL stream name instead of <.
    REP-4111: Fail to create pluggable data source 'QP_1'
         at oracle.reports.jsp.ObjectsTag.doEndTag(ObjectsTag.java:180)
         at jsp.reports._schedule._XMLscheduleReport._jspService(_XMLscheduleReport.java:87)
    ....

    Never mind, I discovered the problem. I wasn't using the necessary xml escape characters for the user parameter embedded in the xml.

  • PDS - XML format, unable to read special characters in a string.

    Hi All,
    I've been using XML files to create my report with Oracle9i's new featue of PDS.
    Now, I'm unable to read a file if it contains '&' or '<' in the string. In fact, the xml file itself not able to crate a xml page in the browser, if these special characters are present.
    Is there any way to solve this problem ?
    I can't tell the users to remove &, < from the description data. Is there any way to workaround for this ?
    Thanks in advance,
    Satya.

    Hi Rohit and Rajesh
    Thanks for your reply.
    In fact, my problem is like this:
    I'll get data in .txt file and save that as a .xml file in the network before calling Oracle report ,which gets data from the .xml.
    The contents are like this:
    <Comapy name> Ford Motors UK & Europe</Company name>
    <Department> HR & Pensions</Depatrment>
    <Salary>Grad4 < 25000 </Salary>
    As per XML entity character representation, I need to replace '&' with '&amp;' and '<' with '<lt;'
    I'm wondering is there any other way to solve this problem as it is difficult to replace '<' and '>' generically.
    Honestly, I couldn't understand what Mr. Rajesh was trying to tell.
    'for & use & ( with semicolon at the end)'
    'for < use <'
    'for > use >'
    Can you shed some light on this ?
    Many thanks
    Satya.

  • Oracle Reports9i - PDS features

    I am doing some Oracle Reports work at the moment and am having a few problems. I am trying to do a report of the format
    Work order schedule for dates from XXXX to XXXX, description YYYYYYYY
    About 20 fields detailing each work order
    Details of next work order etc
    The data is not coming from an Oracle database but from an XML file using the Pluggable Data Sources feature of Oracle 9i Reports. The problem is that only one work order is showing up, despite the fact that there are five in the file. I have a repeating frame for the upper level of data i.e the dates/description etc and another repeating frame for all the work order details. I have tried putting the inner one within the outer one and just having them separate within the Paper Layout view, but whichever I do only one row of data shows up.
    I have two groups in my data model view, one containing the work order dates and description, and under that a group containing the rest of the details. There is only one query involved in the report (which is just reading an XML file).
    Does anyone have any bright ideas,
    Thanks in advance

    Ramesh,
    You can enable the trace in server conf ile and see whta is the resuktset got from XML first
    Thanks
    The Oracle Reports team

  • Reports9i PDS to Progress Database

    We're looking to move to 9iReports on Oracle dbs, and with the PDS I want to know if it is possible to connect to a Progress Database also, and if so how? my knowledge of JDBC is very low. I'm struggling to find an example for this data source.
    thanks
    john

    Hello John,
    Yes JDBC is the good way to go to integrate Progress RDBMS with Oracle9i Reports.
    You can find some help in the Building Reports documentation and also so configuration tips in this doc. (http://otn.oracle.com/products/reports/htdocs/getstart/whitepapers/dataDirect_Sybase/dataDirect_Sybase.htm)
    Regards
    Tug

  • Statusformat=xml in Reports6i

    Reports9i servlet has a parameter statusformat=xml which allows you to get back jobid and some statusinformations after starting them over web.
    Are there any plans backport and incorporate this in a current Reports6i patch?
    This would help us a lot!
    Cheers, Stefan

    nhmm ... what a pitty!
    That makes Oracle Reports6i pretty unflexible to integrate with it!
    I am looking for a generic way to handle delayed/asynchronous printing from our application ... but of course monitoring the whole process in an administration screen.
    So the only way to get back a reports internal jobid to access the reports api tables for checking status is by using run_report_object in Oracle Forms. No other way (Reports OCI doesn't return anything, and websubmit also doesn't return anything).
    statusformat=xml would solve our problems (and a lot of other peoples). Any chance this feature can get implemented in a upcomming patch?
    Cheers, Stefan

  • Tips for parsing xml in a shell script?

    Hello,
    I'm writing a shell script to extract info from an xml file to create various text files that share data in the form of custom entities declared at the top of the document (product id, name, version, copyright date, etc.). So far I'm using xmllint which is working well. I'm extracting text for my project files using xmllint --shell:
    <pre style="padding-left: .75ex; padding-top: .25em; padding-bottom: .25em; margin-top: .5em; margin-bottom: .5em; margin-left: 1ex; max-width: 80ex; overflow: auto; font-size: 10px; font-family: Monaco, 'Courier New', Courier, monospace; color: #222; background: #eee; line-height: normal">echo cat lls_cd_product/plist | xmllint --noent --shell xyz.xml | sed -e '1d; $d'</pre>
    This is working well, but --shell mode adds an extra line to the beginning and end which I let sed cleanup, but then I need to strip the enclosing tags as well.
    Xmllint does a good job of filling in my entities with the exception of MacRoman bullet characters that I've entered as &#165;. These are just converted to the same entity in hex, &#xA5;. I suppose I can replace those with sed, but that's starting to feel kludgey.
    I'm beginning to wonder if there may be a better way to do this. I'm not very familiar with XSL, but I am considering ramping up on that.
    Any suggestions would be welcome.
    Cole

    etresoft wrote:
    It may be a few hours before I get time to work on it.
    Or not.
    Here is your XML file:
    <?xml version="1.0" encoding="UTF-8"?>
    <info>
    <ver>2.1.1</ver>
    <tag>abc</tag>
    <name>Product Name</name>
    <filename>productname</filename>
    <copyright>2008</copyright>
    </info>
    This generates the cd product file:
    <?xml version="1.0"?>
    <xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
    <xsl:output method="xml" indent="yes" version="1.0" encoding="UTF-8"
    doctype-system="http://www.apple.com/DTDs/PropertyList-1.0.dtd"
    doctype-public="-//Apple Computer//DTD PLIST 1.0//EN"/>
    <!-- You could access addition data from some other XML file. -->
    <!-- <xsl:variable name="data" select="document('data.xml')/data"/> -->
    <xsl:template match="info">
    <plist version="1.0">
    <dict>
    <key>hfs-openfolder</key>
    <string>.</string>
    <key>hfs-volume-name</key>
    <string><xsl:value-of select="name"/></string>
    <key>hide-hfs</key>
    <string>./{Norton,*.txt,*.exe,.inf}</string>
    <key>hide-iso</key>
    <string>./{PDS,*Rename,readme,.Volume*,Norton*,*icns,Run*.app,Icon*,Desktop*,TheFolder}</string>
    <key>hide-joliet</key>
    <string>./{PDS,*Rename,readme,.Volume*,Norton*,*icns,Run*.app,Icon*,Desktop*,TheFolder}</string>
    <key>iso-volume-name</key>
    <string><xsl:value-of select="tag"/></string>
    <key>joliet-volume-name</key>
    <string><xsl:value-of select="name"/></string>
    </dict>
    </plist>
    </xsl:template>
    </xsl:stylesheet>
    and this generates the Mac read me file in XML:
    <?xml version="1.0"?>
    <xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
    <xsl:output method="xml" indent="yes" version="1.0" encoding="UTF-8"/>
    <!-- You could access addition data from some other XML file. -->
    <!-- <xsl:variable name="data" select="document('data.xml')/data"/> -->
    <xsl:template match="info">
    <!-- You don't have to deal with these entities anymore. You should be
    able to save this xsl file in UTF-8 format and just type in the
    bullets. But the entities work too. -->
    <readme_mac><xsl:value-of select="concat(name, ' ', ver)"/>
    Copyright <xsl:value-of select="copyright"/>, Laureate Learning Systems¨, Inc.
    Minimum System Requirements:
    ¥ 300 MHz or faster PowerPC, Intel or better CPU
    ¥ Mac OS 8.1 or later, including any Mac OS X
    ¥ 64 MB available RAM
    ¥ 60 MB available disk space
    </readme_mac>
    </xsl:template>
    </xsl:stylesheet>
    This one will output the readme in HTML:
    <?xml version="1.0"?>
    <xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
    <xsl:output method="html" indent="yes" version="4.0" encoding="UTF-8"/>
    <!-- You could access addition data from some other XML file. -->
    <!-- <xsl:variable name="data" select="document('data.xml')/data"/> -->
    <xsl:template match="info">
    <!-- You don't have to deal with these entities anymore. You should be
    able to save this xsl file in UTF-8 format and just type in the
    bullets. But the entities work too. -->
    <html>
    <head>
    <title><xsl:value-of select="concat(name, ' ', ver)"/></title>
    </head>
    <body>
    <xsl:value-of select="concat(name, ' ', ver)"/>
    Copyright <xsl:value-of select="copyright"/>, Laureate Learning Systems¨, Inc.
    Minimum System Requirements:
    300 MHz or faster PowerPC, Intel or better CPU
    Mac OS 8.1 or later, including any Mac OS X
    64 MB available RAM
    60 MB available disk space
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>
    Yes. I do enjoy XSL quite a bit

  • Error using xmlparserv2-904.jar in Reports9i to BI Publisher conversion

    I'm attempting a conversion of an Oracle Reports9i report in XML format to BI Publisher, as described in http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10416/convertrpts.htm.
    I run the following command:
    java.exe -classpath %classpath% oracle.apps.xdo.rdfparser.BIPBatchConversion -source F:\CF_Reports_10g -target F:\CF_Reports_OBI -debug
    This returns the following error:
    java.lang.UnsupportedClassVersionError: /oracle/apps/xdo/rdfparser/BIPBatchConversion (Unsupported major.minor version 49.0)
    The above web page specifies that xmlparserv2-904.jar be used in %classpath%. However, my installation of JDK6 update 14 doesn't contain this library. It only contains xmlparserv2.jar, so I use this in %classpath%.
    I'm assuming that this is causing the error.
    I also installed JDK5 update 17, but got the same error.
    Has anyone had any experience of this?
    Thanks,
    Stephen

    Hi,
    I am unable to locate in xmlparserv2-904.jar under JAVA_TOP/classes in oracle apps. Or in Oracle TopLink Software Downloads. Were you able to download/locate these mandatory files?
    Thanks,
    XRAV

  • XML Output and DTD

    I use Reports9i to generate a XML report output.
    How do I generate the associated DTD? Do I need to manually
    write it.
    Thanks,
    Alex

    To add, if your application needs a DTDyou an use any XML IDE ( like xmlspy) to automatically write a bare minimal DTD for the XML and you can modify to impose /alter the restrictions
    Thanks
    The Oracle Reports team

  • XML Quote report

    We have a problem with our XML Quote report that cuts off the report at 26 pages when it should go to about 200 pages.
    We have another report the Acknowledge Quote and it works fine.

    Finally we found the solution for this problem.
    1. Open qotSCocPrint.jsp and add below line inside <SELECT id="qotOutFrmt" name="qotOutFrmt"> statement. This line should be added after "for" loop.
    <OPTION value="EXCEL">Excel Format</option>
    We can add as many options the XML Publisher supports.
    2. Decompile oracle.apps.aso.print.webui.MainCO.class (Controller).
    Change the below line
    httpservletresponse.setContentType("application/pdf");
    to
    httpservletresponse.setContentType("application/"+quoteOutputFormat.toLowerCase());
    Take a backup of the original file, compile the java in the same directory.
    3. Decompile oracle.apps.aso.print.server.PrintQuoteAMImpl.class and change this line
    Field field = class2.getDeclaredField("OUTPUT_TYPE_PDF");
    to
    String outputFormat="OUTPUT_TYPE"+as[12].trim();
    Field field = class2.getDeclaredField(outputFormat);
    Bounce Apache and generate the Quote output in desired format.

  • Issue in Creation of XML file from ABAP data

    Hi,
    I need to create a XML file, but am not facing some issues in creation of XML file, the in the required format.
    The required format is
    -<Header1 1st field= u201CValueu201D 2nd field= u201CValueu201D>
       - <Header2 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 10 fields>
              <Header3 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
              <Header4  1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 4 fields/.>
               <Header5 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
          </Header2>
       </Header1>
    Iu2019m using the call transformation to convert ABAP data to XML file.
    So please anybody can help how to define XML structure in transaction XSLT_TOOL.
    And one more thing, here I need to put the condition to display the Header 3, Header 4, Header 5 values. If there is no record for a particular line item in header 3, 4 & 5, I donu2019t want to display full line items; this is only for Header 3, 4 & 5.
    Please help me in this to get it resolved.

    Hello,
    you can use CALL TRANSFORMATION id, which will create a exact "print" of the ABAP data into the XML.
    If you need to change the structure of XML, you can alter your ABAP structure to match the requirements.
    Of course you can create your own XSLT but that is not that easy to describe and nobody will do that for you around here. If you would like to start with XSLT, you´d better start the search.
    Regards Otto

Maybe you are looking for