XML data definitions in R12 Vision instance

In Oracle Vision instance, Oracle provides many reports with XML templates. But, some of the reports do not have any data definitions at all. So, when we run the report it raises error.
For example, Account Analysis report has template definition but there's no data definition file nor the preview file. Is the Vision instance expected to come with the data definitions for all the standard XML templates that are supplied by Oracle.
Select distinct A.TEMPLATE_NAME, A.DESCRIPTION, A.SOURCE_LANG, B.APPLICATION_SHORT_NAME, B.TEMPLATE_TYPE_CODE
FROM apps.XDO_TEMPLATES_TL A , apps.XDO_TEMPLATES_B B
WHERE A.TEMPLATE_CODE=B.TEMPLATE_CODE
and a.template_code='GLACTANL'
AND B.END_DATE IS NULL
--AND SOURCE_LANG  =
ORDER BY A.SOURCE_LANG DESC

FNDLOAD: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
how to fix this?Please make sure you are logged in as applmgr user and you have source the correct (application) env file.
Also, make sure that LD_ASSUME_KERNEL is not set for this user -- Issue "echo $LD_ASSUME_KERNEL" to verify.
Thanks,
Hussein

Similar Messages

  • Customize AP Trial Balance XML Data Definition for adding Aging Buckets

    Hi
    I have to customize AP Trial Balance Report XML Data Definition Template for adding Aging Buckets & Supplier details in R12 , Could you let me know how i can modify XML file?
    Thanks
    Pravin

    Hi,
    My requirement is different from the one which is in below link.
    I need to add Aging Buckets & Supplier details to AP Trial Balance report (R12) , here i need to modify the XML Data definition template.
    Please help me, very urgent.
    Thanks
    Pravin

  • How to use XML data stored in table column in XML Data Definition

    Hi,
    We are using BIP 5.6.3 (Oracle EBS R12).
    We have a table which stores XML data in a column. Is there a way we can use this XML data through a SQL query in XML Data Definition of BI Publisher report instead or writing whole SQL query to fetch same data from Oracle EBS?
    Can some please provide a sample SQL query that we should use in Data Definition?
    Thanks!

    Mark,
    Thanks. This is exactly what I was looking for.
    After doing @Name in both places (SELECT and WHERE clause) it worked.
    Now I have one more question.
    There are multiple DIMENSION tags in my xml, and I want to see the NAME attribute values for all of those DIMENSIONs. The following query returns
    ORA-19025: EXTRACTVALUE returns value of only one node.
    Cause: Given XPath points to more than one node.
    Action: Rewrite the query so that exactly one node is returned.
    SELECT
    extractValue(value(x), '/AW/@Name') as "AW",
    extractValue(value(x), '/AW/Dimension/@Name') as "DIMENSIONS"
    from
    OLAP_AW_PRC,
    table(xmlsequence(extract (xmltype(AW_XML_TMPL_VAL), '/AWXML/AWXML.content/Create/ActiveObject/AW'))) x
    where
    extractValue(value(x) , '/AW/@Name') = 'OMCR4'

  • Error while passing date parameter to the XML data definition

    Hi All,
    I have developed a BI publisher report using XML data definition & RTF template.
    This data definition contains a SQL query in it's CDATA section and runs as a concurrent program(without RDF) . We are looking to pass a date parameter to the SQL query and its not accepting the date parameter. However, when we hardcode SYSDATE in the SQL query in place of the parameter, the report runs fine. In the log file it shows that the parameter is being treated in American date style and we are using DD-MON-RRRR format. I have tried to convert the date format however still the error exists.
    What we did ?
    Created a XML data definition which contains the SQL query in its CDATA section & p_rundate (DATE) parameter.
    Registerd the XML data definition as concurrent program with EXECUTABLE= XDODTEXE and Output format as XML with p_date as a date parameter.
    Looking for any available solution for the same.
    Thanks.

    Hi All,
    I have developed a BI publisher report using XML data definition & RTF template.
    This data definition contains a SQL query in it's CDATA section and runs as a concurrent program(without RDF) . We are looking to pass a date parameter to the SQL query and its not accepting the date parameter. However, when we hardcode SYSDATE in the SQL query in place of the parameter, the report runs fine. In the log file it shows that the parameter is being treated in American date style and we are using DD-MON-RRRR format. I have tried to convert the date format however still the error exists.
    What we did ?
    Created a XML data definition which contains the SQL query in its CDATA section & p_rundate (DATE) parameter.
    Registerd the XML data definition as concurrent program with EXECUTABLE= XDODTEXE and Output format as XML with p_date as a date parameter.
    Looking for any available solution for the same.
    Thanks.

  • What are the minimum CPU and Memory requirements for R12 Vision instance?

    We are in the process of trying to figure out what the minimum hardware requirements are for installing the R12 Vision instance. This Vision instance would only have 5 or less concurrent users. We may have to order a new server and we are wondering what the minimum CPU and memory would be? Oracle Support will not give us this information.
    We aleady know how much disk space it will need.
    Dan

    Hi,
    See these links.
    A Primer on Hardware Sizing for Oracle E-Business Suite
    http://blogs.oracle.com/stevenChan/2010/08/ebs_sizing_primer.html
    What Are the Minimum Desktop Requirements for EBS?
    http://blogs.oracle.com/stevenChan/2010/09/ebs_pc_clients.html
    Also, please see old threads for similar discussion.
    Hardware Requirements
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Hardware+Requirements&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Benchmark
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Benchmark&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • What's wrong in this XML Data Definition

    Can someone point out the mistake in this XML Data Definition??
    <?xml version="1.0" encoding="UTF-8"?>
    <datatemplate name="CASH_BREAKUP" description="cash_breakup" version="1.0" defaultpackage="">
    <parameters>
         <parameter name="p_date" datatype="date" />
         <parameter name="p_date2" datatype="date" />
    </parameters>
    <dataQuery>
    <sqlstatement name="query1">
    select apc.CHECK_NUMBER, apc.CHECK_DATE, apc.VENDOR_NAME, apc.BANK_ACCOUNT_NUM,
    apc.AMOUNT, case when xah.EVENT_TYPE_CODE = 'PAYMENT CANCELLED' then apc.AMOUNT*-1 else apc.AMOUNT end as Accounted,
    xah.EVENT_TYPE_CODE
    from XLA_AE_HEADERS xah,
    XLA_AE_LINES xal,
    XLA_EVENTS xae,
    xla.xla_transaction_entities xte,
    ap_checks_all apc
    where xah.AE_HEADER_ID = xal.AE_HEADER_ID
    and xae.EVENT_ID = xah.EVENT_ID
    and xal.ACCOUNTING_CLASS_CODE = 'CASH'
    and xte.ENTITY_ID = xae.ENTITY_ID
    and xte.APPLICATION_ID = 200
    and apc.ORG_ID = 81
    and apc.check_id = xte.SOURCE_ID_INT_1
    and xah.ACCOUNTING_DATE >= :p_date and xah.ACCOUNTING_DATE >=:p_date2
    </sqlstatement>
    </dataQuery>
    <datastructure>
    <group name="check" source="query1">
         <element name="CHECK_NUMBER" value="Check Number"/>
         <element name="CHECK_DATE" value="Check Date"/>
         <element name="VENDOR_NAME" value="Payee"/>
         <element name="BANK_ACCOUNT_NUM" value="Bank Account"/>
         <element name="AMOUNT" value="Check Amount"/>
         <element name="ACCOUNTED" value="Accounted"/>
         <element name="EVENT_TYPE_CODE" value="Status"/>
    </group>
    </datastructure>
    </datatemplate>
    I registered this XML data definition in EBS using XML publisher but the concurrent program completes with errors...!!!

    The problem persists, So i have attached the XML Data Definition & Log file as you requested.
    Many Thanks for the reply..!!
    <?xml version="1.0" encoding="UTF-8"?>
    <datatemplate name="CASH_BREAKUP" description="cash_breakup" version="1.0" defaultpackage="">
    <parameters>
         <parameter name="p_date" datatype="date" />
         <parameter name="p_date2" datatype="date" />
    </parameters>
    <dataQuery>
    <sqlstatement name="query1">
    select apc.CHECK_NUMBER, apc.CHECK_DATE, apc.VENDOR_NAME, apc.BANK_ACCOUNT_NUM,
    apc.AMOUNT, case when xah.EVENT_TYPE_CODE = 'PAYMENT CANCELLED' then apc.AMOUNT*-1 else apc.AMOUNT end as Accounted,
    xah.EVENT_TYPE_CODE
    from XLA_AE_HEADERS xah,
    XLA_AE_LINES xal,
    XLA_EVENTS xae,
    xla.xla_transaction_entities xte,
    ap_checks_all apc
    where xah.AE_HEADER_ID = xal.AE_HEADER_ID
    and xae.EVENT_ID = xah.EVENT_ID
    and xal.ACCOUNTING_CLASS_CODE = 'CASH'
    and xte.ENTITY_ID = xae.ENTITY_ID
    and xte.APPLICATION_ID = 200
    and apc.ORG_ID = 81
    and apc.check_id = xte.SOURCE_ID_INT_1
    and xah.ACCOUNTING_DATE &gt;= :p_date and xah.ACCOUNTING_DATE &lt;= :p_date2
    </sqlstatement>
    </dataQuery>
    <datastructure>
    <group name="check" source="query1">
         <element name="CHECK_NUMBER" value="Check Number"/>
         <element name="CHECK_DATE" value="Check Date"/>
         <element name="VENDOR_NAME" value="Payee"/>
         <element name="BANK_ACCOUNT_NUM" value="Bank Account"/>
         <element name="AMOUNT" value="Check Amount"/>
         <element name="ACCOUNTED" value="Accounted"/>
         <element name="EVENT_TYPE_CODE" value="Status"/>
    </group>
    </datastructure>
    </datatemplate>
    Error Log File
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    CASH_BREAKUP3 module: Cash Account Breakup
    Current system time is 15-MAY-2013 09:34:28
    XDO Data Engine Version No: 5.6.3
    Resp: 20420
    Org ID : 81
    Request ID: 433616
    All Parameters: p_date=01-FEB-13:p_date2=28-FEB-13
    Data Template Code: CASH_BREAKUP3
    Data Template Application Short Name: XDO
    Debug Flag: N
    {p_date=01-FEB-13, p_date2=28-FEB-13}
    Calling XDO Data Engine...
    [051513_093433589][][EXCEPTION] java.lang.NullPointerException
         at oracle.apps.xdo.dataengine.DataTemplateParser.GetNodeNumChildren(DataTemplateParser.java:334)
         at oracle.apps.xdo.dataengine.DataTemplateParser.templateParser(DataTemplateParser.java:266)
         at oracle.apps.xdo.dataengine.XMLPGEN.setDataTemplate(XMLPGEN.java:140)
         at oracle.apps.xdo.dataengine.DataProcessor.setDataTemplate(DataProcessor.java:193)
         at oracle.apps.xdo.oa.util.DataTemplate.<init>(DataTemplate.java:231)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:283)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at com.sun.java.util.collections.ArrayList.RangeCheck(ArrayList.java:492)
         at com.sun.java.util.collections.ArrayList.get(ArrayList.java:306)
         at oracle.apps.xdo.dataengine.DataTemplateParser.getParentDataSource(DataTemplateParser.java:1801)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeDefaultGroup(XMLPGEN.java:331)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:286)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:273)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:215)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:254)
         at oracle.apps.xdo.dataengine.DataProcessor.processDataStructre(DataProcessor.java:390)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:355)
         at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:334)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:294)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    42
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 15-MAY-2013 09:34:33
    ---------------------------------------------------------------------------

  • Weird issue occurring after cloning the R12 Vision instance.

    Hi everyone,
    We are currently evaluating R12 using the Vision DB instance. Since I'm seeing that the apps processes like to have at least 2gb of memory, the initial server just isn't beefy enough for R12 so I cloned it over to a better server following metalink Note:406982.1 (Cloning Oracle Applications Release 12 with Rapid Clone)
    There were various cloning issues that came up that fortunately, I was able to resolve myself .. still with tarring up directories, ftp'ing the tar files, etc etc it took almost 2 days to finish the clone.
    Upon starting the clone I'm seeing the following errors reported when the db listener and the apps fndfs listener start:
    TNS-01114: LSNRCTL could not perform local OS authentication with the listener
    TNS-01115: OS error 22 creating shared memory segment of 129 bytes with key 2044160132
    However, the listener processes actually do start even though the above errors are reported and I verify that I can see the server processes for both. In addition, I can login to apps and do everything without any issues and login from sqlplus to the database remotely and everything appears to be working.
    But if I try to look at the listener status or try to stop either listener process I get the above errors. So, if I need to bounce the app or the db I have to actually kill the listener processes in order to do so. Then upon startup, the above situation repeats.
    So, I've opened a SR in regards to this as it appears to be a cloning bug. The only metalink hits I found were talking about the shmsys:shminfo_shmmni setting (currently at 200) but I don't think that's it since I've had 6 apps instances up and running on this particular server before.
    Currently the R12 Vision instance is running with RUP 1 applied. I did see there was a new Techstack update and a new RUP 2 update for apps released just last week but thought I would ask if anyone else who's used rapid clone with R12 experienced similiar issue?
    Thanks.
    Chad
    Message was edited by:
    Chad Smith

    I am usually seen on the on ramps with a sign that says will clone for food...
    I think your perl version is a little low for R12. Here is what I have in an upgraded R12 from 11.5.10.2 Vision:
    which perl
    /lv01/oracle/ltest/apps/tech_st/10.1.3/perl/bin/perl
    perl -version
    This is perl, v5.8.3 built for i686-linux-thread-multi
    Copyright 1987-2003, Larry Wall
    Perl may be copied only under the terms of either the Artistic License or the
    GNU General Public License, which may be found in the Perl 5 source kit.
    Complete documentation for Perl, including FAQ lists, should be found on
    this system using `man perl' or `perldoc perl'. If you have access to the
    Internet, point your browser at http://www.perl.com/, the Perl Home Page.
    I was clearing 150 GB for an Oracle Enterprise Linux VM for installing/cloning 11i or R12 into, so I will clone a scratch R12.0.2 upgrade instance there. The prepare scripts completed without error, and the cpios are running now.
    prepare DB:
    ApplyDBTier Finished at Mon Jul 23 22:00:38 PDT 2007
    Status: Completed Successfully
    perpare AppsTier:
    Successfully prepared appl_top for staging. Mon Jul 23 22:07:05 PDT 2007
    Creating zip files for appltop.
    Mon Jul 23 22:07:05 PDT 2007
    Done...
    Successfully created zip files.
    Mon Jul 23 22:07:05 PDT 2007
    StageAppsTier Finished at Mon Jul 23 22:07:05 PDT 2007
    Status: Completed Successfully
    I will update thread with the results of the config clone scripts.
    Make sure you link to your environment files correctly:
    lrwxrwxrwx 1 oracle dba 43 2005-02-10 20:29 vis9.env -> /lv03/oracle/vis9db/9.2.0/vis9_hostname.env
    lrwxrwxrwx 1 oracle dba 62 2007-01-26 22:59 visr12.env -> /lv04/oracle/visr12/db/tech_st/10.2.0/visr12_hostname.env
    ln -s /lv04/oracle/visr12/db/tech_st/10.2.0/visr12_hostname.env visr12.env
    lrwxrwxrwx 1 applmgr appl 33 2005-02-10 20:27 vis9.env -> /lv03/oracle/vis9appl/APPSORA.env
    lrwxrwxrwx 1 applmgr appl 66 2007-01-26 22:56 visr12.env -> /lv04/oracle/visr12/apps/apps_st/appl/APPSvisr12_hostname.env
    ln -s /lv04/oracle/visr12/apps/apps_st/appl/APPSvisr12_hostname.env visr12.env
    Yes, mythtv is fantastic. I also like mythvideo and mytharchive. I needed to move unneeded backups and edelivery downloads to make room for recordings...

  • Establishing Database connection for XML Data Definition?

    I have a XML Data Definition which will query data from Oracle Database.
    I did some research and tried few setting options in JDeveloper (11g), but had no luck on finding a way to connect to Database.
    My goal is to use JDeveloper to run a XML Data Definition against Database and generate a XML File with data.
    Can this be done?
    Data Definition:
    <?xml version="1.0" encoding="WINDOWS-1252"?>
    <dataTemplate name="XX_ATT_VALIDATION" description="description"
    dataSourceRef="MTS-AT"
    version="1.0">
    <properties>
              <property name="include_parameters" value="false" />
              <property name="include_null_Element" value="true" />
              <property name="include_rowset_tag" value="false" />
    </properties>
    <parameters>
              <parameter name="p_batch_id" dataType="character"/>
    </parameters>
    <dataQuery>
         <sqlStatement name="Q_HEADER_VALUES">
              <![CDATA[
    select distinct
    sci.bill_cycle,
    to_char(sci.bill_date,'mm/dd/yyyy') bill_date,
    to_char(sysdate,'mm/dd/yyyy') report_run_date
                   from st_cm_interface sci
                   where sci.record_type='05'
                   and sci.batch_id=:p_batch_id
              ]]>
    </sqlStatement>
    <dataStructure>          
         <group name="G_HEADER_VALUES" source="Q_HEADER_VALUES">
    <element name="bill_cycle" value="bill_cycle"/>
    <element name="bill_date" value="bill_date"/>
    <element name="report_run_date" value="report_run_date"/>
    </group>
    </dataStructure>
    </dataTemplate>

    Hi,
    Consider there is 2 database, Oracle_1 and Oracle_2.
    I want to fetch some table data in Oracle_2 from Oracle_1 database Stored procedure/functions through query staments and cursors. How to establish the Oracle_1 DB connection in Oracle_2 DB stored procedure/function. Is it possible?
    It's not the same how you implement the programs in java or .Net to create DB connection. It's different over here. You have use the DataBase Links in order to make to connection with another DB and use that Link in the stored procedure or function where ever its necessary as per your requirement.
    - Pavan Kumar N

  • FNDLOAD error in R12 vision instance on OEL5

    hi,
    i am trying to run FNDLOAD in R12 vision instance on OEL5 on my personal installation.
    i am getting following error,
    FNDLOAD: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    how to fix this?
    please help.
    thanks,

    FNDLOAD: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    how to fix this?Please make sure you are logged in as applmgr user and you have source the correct (application) env file.
    Also, make sure that LD_ASSUME_KERNEL is not set for this user -- Issue "echo $LD_ASSUME_KERNEL" to verify.
    Thanks,
    Hussein

  • Accessing Your Own R12 Vision Instance remotely

    Hi, so I've got a Mac Mini (home server) setup at home which is on 24/7 and running EBS R12 Vision instance via Oracle Virtual Box.
    I have configured my hosts file on a separate stand along machine so that I can access the R12 Vision instance and all works fine.
    I have also been able to configure a VPN connection from my laptop to my home server and again can access the R12 Vision instance and all works fine.
    What I want to be able to do is access my R12 Vision instance from any machine without having to connect via VPN.
    i.e. I go to my url http://www.mydomain.com:8000 and I'm able to access my R12 Vision instance.
    I have an apple time capsule at home as my router and I'm not sure if there's some kind of configuration required on it to allow acces.
    I would appreciate it if anyone else has come across this!
    Regards,
    John

    Hi, so I've got a Mac Mini (home server) setup at home which is on 24/7 and running EBS R12 Vision instance via Oracle Virtual Box.
    I have configured my hosts file on a separate stand along machine so that I can access the R12 Vision instance and all works fine.
    I have also been able to configure a VPN connection from my laptop to my home server and again can access the R12 Vision instance and all works fine.
    What I want to be able to do is access my R12 Vision instance from any machine without having to connect via VPN.
    i.e. I go to my url http://www.mydomain.com:8000 and I'm able to access my R12 Vision instance.
    I have an apple time capsule at home as my router and I'm not sure if there's some kind of configuration required on it to allow acces.
    I would appreciate it if anyone else has come across this!
    Regards,
    John

  • Error while running XML data definition

    Hi,
    Want to run report using XML Publisher, created one Data Definition using xml file,
    <?xml version="1.0" encoding="WINDOWS-1252" ?>
    <dataTemplate name="EmpDT" description="Employee Details" Version="1.0">
    <parameters>
    <parameter name="p_DeptNo" dataType="character"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="Q1">
    <![CDATA[ SELECT Empno, Ename,Job,Mgr,Hiredate,Deptno FROM Emp WHERE deptno = nvl(:p_DeptNo,deptno) ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_EMP" source="Q1">
    <element name="EMPLOYEE_NUMBER" value="Empno"/>
    <element name="NAME" value="Ename"/>
    <element name="JOB" value="Job"/>
    <element name="MANAGER" value="Mgr"/>
    <element name="HIREDATE" value="Hiredate"/>
    <element name="DEPTNO" value="Deptno"/>
    </group>
    </dataStructure>
    </dataTemplate>
    Added concurrent program and trying to run request but it's getting completed with error, when i checked log file it was showing error like,
    XDO Data Engine Version No: 5.6.3
    Resp: 20420
    Org ID : 204
    Request ID: 5810677
    All Parameters: p_Dept_No=20
    Data Template Code: EMP_DET
    Data Template Application Short Name: AMW
    Debug Flag: N
    {p_Dept_No=20}
    Calling XDO Data Engine...
    [042811_124713802][][EXCEPTION] java.lang.NullPointerException
         at oracle.apps.xdo.dataengine.DataTemplateParser.GetNodeNumChildren(DataTemplateParser.java:334)
         at oracle.apps.xdo.dataengine.DataTemplateParser.templateParser(DataTemplateParser.java:266)
         at oracle.apps.xdo.dataengine.XMLPGEN.setDataTemplate(XMLPGEN.java:140)
         at oracle.apps.xdo.dataengine.DataProcessor.setDataTemplate(DataProcessor.java:193)
         at oracle.apps.xdo.oa.util.DataTemplate.<init>(DataTemplate.java:231)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:283)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at com.sun.java.util.collections.ArrayList.RangeCheck(ArrayList.java:492)
         at com.sun.java.util.collections.ArrayList.get(ArrayList.java:306)
         at oracle.apps.xdo.dataengine.DataTemplateParser.getParentDataSource(DataTemplateParser.java:1796)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeDefaultGroup(XMLPGEN.java:331)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:286)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:273)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:215)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:254)
         at oracle.apps.xdo.dataengine.DataProcessor.processDataStructre(DataProcessor.java:390)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:355)
         at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:334)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:294)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    can any one help me to solve this error? it's urgent.....
    reply awaited..
    Regards,
    Priyanka.

    HI,
    We are facing some issue with CXML. I have posted a new thread [cXML with SAP PI;. 
    The content of that thread is pasted below: You can give your solution in the above mentioned thread so that I can grant points.
    We need to use cXML for our project. Based on the thread ( [Error while uploading CXML data definition.; )
    the following steps need to be done with the cXML DTD.
    1.First Delete the Multiple Declaration of "Method .ANY"
    2.replace all "ds:" character with 'ds_'
    3.replace all "xades: " with 'xades_'
    4.replace all "xmlns" with 'attr_'
    5) After this use Altova to convert the DTD to XSD.
    First of all, we could not carry out the 4th point, as in that case Altova says that it is invalid, and it fails to get imported in PI as well.
    Without step 4 , if we import it as external definition, then there are certain attributes with type xml:lang coming in Red.
    Can anybody tell us on how to fix this.
    Thanks,
    Himadri

  • R12 vision instance

    How to clean Redundant Files in Oracle Apps?
    What are the day 2 day Activities of Oracle Apps?
    Thanks and Regards

    How to clean Redundant Files in Oracle Apps?Cleaning An 11i Apps Instance Of Redundant Files [ID 274666.1]
    Purging Strategy for eBusiness Suite 11i [ID 732713.1]
    Reducing Your Oracle E-Business Suite Data Footprint using Archiving, Purging, and Information Lifecycle Management [ID 752322.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Purge+AND+Log&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Redundant&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    What are the day 2 day Activities of Oracle Apps?What do you mean? If you are referring to the Oracle Database 2 Day DBA manual, then there is no such a doc.
    Oracle EBS R12 docs can be found at http://www.oracle.com/technetwork/documentation/applications-167706.html
    Thanks,
    Hussein

  • How to install a R12 Vision Instance without any internet connection?

    Dear Legends,
    I need to install a R12(12.1.3) but this time i need to install it for practice purpose, so imagine i don't have internet connection and i have to install a R12 instance and how do i install it?
    MY CONFIGURATION
    OS: OEL 5.7 64bit
    RAM 8GB
    HDD: 500GB
    1. Now while installing OEL it will asks for HOSTNAME - in that what is the hostname should i give? either LOCALHOST or any DN i have.
    Then what is the IP to be Given, STATIC or DHCP... If static means whether it is manual or automatic.?
    I don't know whether there is a way to do or am somewhere crazy or wrong, sorry if so.
    2. Then if there is way means i will backup or clone my instance which have already installed and i have to restore it in this scenario. if so what are the steps to be followed.
    Kindly request you to provide steps if any and DOC ID's.
    Thanks in Advance,
    S.karthik Singh

    I need to install a R12(12.1.3) but this time i need to install it for practice purpose, so imagine i don't have internet connection and i have to install a R12 instance and how do i install it?
    MY CONFIGURATION
    OS: OEL 5.7 64bit
    RAM 8GB
    HDD: 500GB
    1. Now while installing OEL it will asks for HOSTNAME - in that what is the hostname should i give? either LOCALHOST or any DN i have.Do not use localhost, and use a different hostname/domainname instead -- Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID 761566.1]
    Then what is the IP to be Given, STATIC or DHCP... If static means whether it is manual or automatic.?Static.
    I do not know what you mean by manual/automatic. You need to set up a fixed IP Address that does not change each time your reboot or reconnect to the network.
    2. Then if there is way means i will backup or clone my instance which have already installed and i have to restore it in this scenario. if so what are the steps to be followed.
    Kindly request you to provide steps if any and DOC ID's.Rapid Clone Documentation Resources For Release 11i and 12 [ID 799735.1]
    Cloning Oracle Applications Release 12 with Rapid Clone [ID 406982.1]
    Thanks,
    Hussein

  • Not getting xml data on creation of second instance

    I'm creating xml objects in a loop with:
    CREATE OBJECT xml_doc.
      xml_doc->parse_string( stream = g_filecontent ).
    and release it with
    xml_doc->Delete( ).
    At the first run, i can reach single notes without a problem with the following code.
      node = xml_doc->find_node( name = 'kvg' root = root ).
    value = xml_doc->get_node_attribute( name = 'patient_id' node = node ).
    After the first loop finishes, i create another object with another xml string.
    Now i cannot reach any notes anymore! Has somebody any ideas what could go wrong?
    Greetings Kay.

    Just a guess ...
    node = xml_doc->find_node( name = 'kvg' root = root ).
    value = xml_doc->get_node_attribute( name = 'patient_id' node = node ).
    would it make a difference if you make 'kvg' as 'KVG' and 'patient_id' as 'PATIENT_ID'?
    Are you not able to debug it ?
    Message was edited by: Ram Manohar Tiwari

  • Oracle ebs r12 vision instance is not working. java j2se instal required.

    i installed every thing but i am unable to open forms on google chorome or internet exp 11.

    please make sure you meet all the requirements
    Recommended Browsers for Oracle E-Business Suite Release 12 [389422.1]
    Chrome is only certified for E-Business Suite customers running web-based (HTML / OA Framework) screens, running Java based content with Chrome is not supported.
    ApPsMaStI
    sharing is Caring

Maybe you are looking for

  • Problem integrating PCI-MIO-16XE-50 and AMUX-64 T multiplexer

    I can test the PCI-MIO-16XE-50 card in MAX but i can not test the virtual channels

  • Logical operator order of operation

    Hello, Does anyone happen to know the order of operation for logical operators? (&&, ||, &, |) For example, if I have the following statement: if (true && false | true || true & false) What is the order of evaluatioin? Thanks a lot - nygrl

  • Office 7 and PDF maker

    My lovely IT department have upgraded my office to version 7 (Yuk). Anyway, the acrobar PDFmaker has now dissapeared as a function. I have downloaded the office plug in for saving and printing to PDF but it is different. Previously on the PDF maker b

  • How can a change a "permission denied" in a JavaScript use on Facebook ?

    Hi, My problem is : On facebook site, clicking on a result from the "searchbox" doesn't rediret me on that page like it used to ( and should )

  • Vista 32 bit to Windows 7 64 bit. How?

    Hi I have a Thinkpad T500 running a Vista 32 bit system. I have 154 days warranty remaining. I missed the free upgrade to Windows 7 by 3 days, if only I had known. I want to upgrade my system to windows 7 64 bit with out voiding my warranty and witho