XML processing Question

I have an xml stored as Blob in a table .
I want to update a node value and put the xml back to the
table ..
how do i do this ?using the oracle xml apis in the db
Prabu

Retreive & Store XMLType data with XML DB.
http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10790/partpg2.htm#sthref316

Similar Messages

  • Re-Using XML file from decode barcode + extract xml process

    I was hoping someone could put me in the right direction here. I am decodeing the information stored in a 2D Bar code and sending this information to an XML file, then I am trying to combine that xml file with a blank PDF template but the process is failing beacuse there are some additional tag fields the XML data from the  Decode->Extract XML process.
    The XML file from the decode process gives the structure below..notice therer some extra tags (lines 2- 4)
    <?xml version="1.0" encoding="UTF-8"?>
    <xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/">
    <xfa:datasets>
    <xfa:data>
    <form1>
    The XML structure that is expected by the PDF template is as follows
    <?xml version="1.0" encoding="UTF-8"?>
    <form1>
    So the xml output of the Decode barcode + Extract XML process has three extra lines of tag. Is there a way I could use a process within liveCycle to clean out those three lines in real-time before sending the xml to be recombined with the PDF template.
    Thanks

    Hi,
    What you may do is to use the SetValue and its xpath builder functions to "serialize" the xml into string, "substring" to remove the extra tags, and "concat" to add the extra tags and then "deserialize" it again to an xml to be merged with your form.
    Greetings,
    Yasser

  • Java enhancement in XSLT mapping in PI 7.1 and JDK5 XML processing

    Hi,
    I am implementing an XSLT mapping and I need to use java enhancements. I got those working but only if I check "Use SAP XML Toolkit" from Operation Mapping. I would like to use JDK5 XML processing.
    I also got this message to trace:
    Resource not found: META-INF/services/javax.xml.parsers.SAXParserFactory
    Thrown:
    com.sap.aii.ib.server.mapping.execution.MappingClassNotFoundException: META-INF/services/javax.xml.parsers.saxparserfactory
    I tried to use com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl but still couldn't get java enhancement working.
    Is there a way to get JDK5 XML processing working with java enhancements?

    > Is there a way to get JDK5 XML processing working with java enhancements?
    No. Java processing inside XSLT is no standard. So it works only with SAP lib.
    Regards
    Stefan

  • [svn] 2756: -make the flex-sdk-description.xml process work like the trunk.

    Revision: 2756
    Author: [email protected]
    Date: 2008-08-06 08:53:11 -0700 (Wed, 06 Aug 2008)
    Log Message:
    -make the flex-sdk-description.xml process work like the trunk. don't copy the file, create one by echoing the values needed to it.
    -update build.properties, make the release value equal the actual release as in this case 3.1
    bug:https://bugs.adobe.com/jira/browse/SDK-16367
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16367
    Modified Paths:
    flex/sdk/branches/3.1.0/build.properties
    flex/sdk/branches/3.1.0/build.xml
    Removed Paths:
    flex/sdk/branches/3.1.0/collateral/en_US/flex-sdk-description.xml

    Revision: 2756
    Author: [email protected]
    Date: 2008-08-06 08:53:11 -0700 (Wed, 06 Aug 2008)
    Log Message:
    -make the flex-sdk-description.xml process work like the trunk. don't copy the file, create one by echoing the values needed to it.
    -update build.properties, make the release value equal the actual release as in this case 3.1
    bug:https://bugs.adobe.com/jira/browse/SDK-16367
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16367
    Modified Paths:
    flex/sdk/branches/3.1.0/build.properties
    flex/sdk/branches/3.1.0/build.xml
    Removed Paths:
    flex/sdk/branches/3.1.0/collateral/en_US/flex-sdk-description.xml

  • XML Processing in WL 5.1

    Hi,
    I use WebLogic 5.1
    I am trying to do some XML processing in the servlet. I added the Jars in the class
    path for servlet. I Set the System properties prgrammatically. And simple DOM operation
    fails with NoSuchMethod Exception. I see a lot of example in WL 6.1. Does anybody
    know if it is possible with WL 5.1. Please help I have been struggling with this
    for last 7 days.
    -Krishna
    Class path in WebLogic.Properties.
    weblogic.httpd.servlet.classpath=C:/weblogic/myserver/servletclasses;\
    C:/weblogic/lib/xml/jaxp.jar;\
    C:/weblogic/lib/xml/parser.jar;\
    C:/weblogic/lib/xml/xalan.jar;\
    C:/weblogic/lib/xml/xml-apis.jar;\
    C:/weblogic/lib/xml/xercesImpl.jar;\
    C:/weblogic/lib/xml/sax.jar;
    Code Snippet. full code attached.
    StringReader str = new StringReader(XMLField);      
    InputSource input = new InputSource(str);      
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();      
    dbf.setNamespaceAware(false);
    dbf.setValidating(false);
    System.out.println(dbf.getClass().getName());
    DocumentBuilder db = dbf.newDocumentBuilder();
    doc = db.parse(input);
    Sat Jul 13 17:18:30 GMT+10:00 2002:<I> <ServletContext-General> TestProcessCompa
    ny: init
    org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
    Sat Jul 13 17:18:30 GMT+10:00 2002:<E> <ServletContext-General> Servlet failed w
    ith Exception
    java.lang.NoSuchMethodError: javax.xml.parsers.DocumentBuilderFactory: method is
    IgnoringElementContentWhitespace()Z not found
    at org.apache.xerces.jaxp.DocumentBuilderImpl.<init>(DocumentBuilderImpl
    .java:120)
    at org.apache.xerces.jaxp.DocumentBuilderFactoryImpl.newDocumentBuilder(
    DocumentBuilderFactoryImpl.java:88)
    at company.TestProcessCompanyServlet.doGet(TestProcessCompanyServlet.jav
    a:115)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:106)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
    textImpl.java:907)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
    textImpl.java:851)
    at weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
    ContextManager.java:252)
    at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
    a:364)
    at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:252)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    [TestProcessCompanyServlet.java]

    If I remember correctly, in 5.1 you can deploy a web-app by specifying it in
              weblogic.properties (weblogic.httpd.webApp.yourwebapp=..., or defaultWebApp).
              If you do not configure defaultwebapp, it will create one implicitly, and this
              implicitly created one reads it's config from weblogic.properties, not from
              web.xml.
              Frank LaRosa <[email protected]> wrote:
              > Thanks... can I ask exactly what it means to "deploy your app as a webapp"?
              > "Dimitri I. Rakitine" wrote:
              >> It will, if you deploy your app as a webapp.
              >>
              >> Frank LaRosa <[email protected]> wrote:
              >> > Hi,
              >>
              >> > Will a Weblogic 5.1 server recognize the servlet mappings in a web.xml
              >> > file, or must they be configured in the weblogic.properties file?
              >>
              >> > Thanks.
              >>
              >> --
              >> Dimitri
              Dimitri
              

  • ORA-31011: XML parsing failed ORA-19202: Error occurred in XML processing

    Hi,
    I am trying to update an already existing Sales Order through PO Change Inbound 860. When i am performing changes in the line quantity and scheduled ship date with operation code as "Update" then it is successfully updating the Order and also we are able to generate the POAck for the updated sales order lines. But when i am rejecting one of the PO change lines by checking rejected flag, then order is getting imported successfully(I mean sales order is getting updated successfully) but during the POAck Generation i.e. 865 its raising "*ORA-31011: XML parsing failed ORA-19202: Error occurred in XML processing LPX-00103: Warning: document structure does not match DTD Error at line 1*" at XML Gateway. we are using XML Gateway to process the orders, can somebody help me to get rid of this issue. Thanks in advance.
    Thanks,
    Sunil Chauhan

    Hi Kishan
    Thanks for the reply.
    Because this is an outbound transaction so i can not provide you the XML file as we are facing issue to generate the same. Also we are using oracle seeded PO outbound Ack map.
    In addition i can provide you the DTD file.
    <!-- ==================================================== -->
    <!ENTITY % RESOURCES SYSTEM "oagis_resources.dtd">
    %RESOURCES;
    <!-- ==================================================== -->
    <!ELEMENT ACKNOWLEDGE_PO_008 (CNTROLAREA, DATAAREA+)>
    <!ATTLIST VERB
         value CDATA #FIXED "ACKNOWLEDGE"
    >
    <!ATTLIST NOUN
         value CDATA #FIXED "PO"
    >
    <!ATTLIST REVISION
         value CDATA #FIXED "008"
    >
    <!ELEMENT DATAAREA (ACKNOWLEDGE_PO)
    >
    <!ELEMENT ACKNOWLEDGE_PO (POORDERHDR, POORDERLIN*)
    >
    <!ELEMENT POORDERHDR ((%DATETIME.DOCUMENT;)?, (%OPERAMT.EXTENDED.T;)?, POID, POTYPE, ACKREQUEST?, CONTRACTB?, CONTRACTS?, DESCRIPTN?, NOTES*, OPRAMTAUTH?, PORELEASE?, TAXWHEXMPT?, USERAREA?, ACKHEADER, ATTCHREF*, CHARGE*, PARTNER*, POTERM*)
    >
    <!ELEMENT ACKHEADER (SENDER, (%DATETIME.PROMDELV;)?, (%DATETIME.PROMSHIP;)?, ACKCODE, DESCRIPTN?, NOTES*, SALESORDID?, USERAREA?)
    >
    <!ELEMENT POTERM (DESCRIPTN?, TERMID?, ((DAYOFMONTH, PROXMONTH) | DAYSNUM), ((%OPERAMT.EXTENDED.T;) | (%QUANTITY.PERCENT;)), USERAREA?)
    >
    <!ELEMENT POORDERLIN ((%QUANTITY.ORDERED;), (%DATETIME.NEEDDELV;)?, (%OPERAMT.UNIT.T;)?, POLINENUM, DRAWING?, HAZRDMATL?, ITEMRV?, ITEMRVX?, NOTES*, PACKING?, POLNSTATUS?, TAXWHEXMPT?, ((DESCRIPTN, ITEM?, ITEMX?, UPC?) | (ITEM, ITEMX?, UPC?) | (ITEMX, UPC?) | (UPC)), USERAREA?, ACKLINE*, ATTCHREF*, CHARGE*, DISTRIBUTN*, PARTNER*, POTERM*, POSUBLINE*, POLINESCHD*)
    >
    <!ELEMENT ACKLINE ((%DATETIME.PROMDELV;)?, (%DATETIME.PROMSHIP;)?, (%QUANTITY.ORDERED;)?, ACKCODE, NOTES*, SALESORDID?, USERAREA?)
    >
    <!ELEMENT POSUBLINE ((%QUANTITY.ITEM;), DRAWING?, ITEMRV?, ITEMRVX?, PSBLINENUM?, ((DESCRIPTN, ITEM?, ITEMX?, UPC?) | (ITEM, ITEMX?, UPC?) | (ITEMX, UPC?) | (UPC)), USERAREA?)>
    <!ELEMENT POLINESCHD ((%DATETIME.NEEDDELV;), (%QUANTITY.ORDERED;), DESCRIPTN?, PSCLINENUM?, USERAREA?)
    >
    Thanks,S
    --Sunil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • ORA-31011: XML parsing failed ORA-19202: Error occurred in XML processing L

    Hi There,
    I am trying to load XML data [Given Below] into a table using "Load XML Data" option.
    <?xml version="1.0"?>
    <ROWSET>
    <ROW>
    <ID>13</ID>
    <TYPE_SEQ>8</TYPE_SEQ>
    <TYPE>B749</TYPE>
    <TYPE_DESC>B758</_TYPE_DESC>
    <EFFECTIVE_FROM>2099-01-01</EFFECTIVE_FROM>
    <EFFECTIVE_TO>2099-01-01</EFFECTIVE_TO>
    <CREATED_BY>958344</CREATED_BY>
    <CREATED_ON>2099-01-01</CREATED_ON>
    <UPDATED_BY>172283</UPDATED_BY>
    <UPDATED_ON>2099-01-01</UPDATED_ON>
    </ROW>
    </ROWSET>
    It throws the following error.
    ORA-31011: XML parsing failed ORA-19202: Error occurred in XML processing LPX-00222: error received from SAX callback function
    Can any one advice the solution please.
    -Sudheer.

    Hi Sudheer,
    This is caused by the date format you are using. Probably it is not matching with your NLS settings. Check your NLS settings, what the date format is, and use that in the XML.
    Check it with this code:
    SELECT XMLELEMENT("date", sysdate) FROM dual;Make sure, you have your NLS_DATE settings in the same format.
    Check it with:
    SELECT * FROM v$nls_parameters WHERE parameter = 'NLS_DATE_FORMAT'And then make sure it is the same by setting for example:
      ALTER SESSION SET NLS_DATE_FORMAT = 'YYYY-MM-DD';Greetings,
    Rutger

  • ORA-19202: Error occurred in XML processing

    HI,
    I was preparing a support schema which is in synch with the production schema. For one of the UI i am getting the following error when the XML is too large.
    The same code is working in the production schema.
    I did a reconcilation and found the code sources are exactly the same.Pasting the debug lines below.Please help resolving the issue.
    gwpks_service_router.Getting the msg status for
    gwpks_service_router.Inside fn_get_msgstat
    gwpks_service_router.In wot of msg stat extraction: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00225: end-element tag "REC" does not match start-element tag "FCUBS_BODY"
    Error at line 15697
    gwpks_service_router.l_msgstat:
    gwpks_service_router.Returning
    gwpks_service_router.l_msg_stat:
    gwpks_service_router.p_Process_Stat: S
    gwpks_service_router. fn_service_router return true
    gwpks_service_router.After fn_service_router, msgId:
    gwpks_service_router.Logging begins
    gwpks_service_router.Inside fn_populate_logs
    gwpks_service_router.Inside fn_get_msgstat
    gwpks_service_router.In wot of msg stat extraction: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00225: end-element tag "REC" does not match start-element tag "FCUBS_BODY"
    Error at line 15697
    gwpks_service_router.l_msgstat:
    gwpks_service_router.Returning
    gwpks_service_router.Msg Status:
    gwpks_service_router.About to start the logging with MsgId:
    gwpks_service_router.fn_populate_logs returning true
    gwpks_service_router.MsgId:
    gwpks_service_router.SysMsgId:
    gwpks_service_router.MultitripId:
    gwpks_service_router.l_process_stat in pr_process_req_msg : S
    gwpks_service_router.GRAND SUCCESS CLOSING DEBUG
    gwpks_service_router.GRAND SUCCESS CLOSING DEBUG 1

    Hi,
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE     11.2.0.1.0     Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    The code is very big.I prepared another schema on another database and the code is working.
    Then v$ version of the working schema is as below:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE     11.2.0.2.0     Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    Still wonder why this works in the second schema but not the first one.

  • ORA-19202: Error occurred in XML processing  ORA-24333: zero iteration coun

    Hi,
    I have a procedure which craetes a sql v_sql dynamically
    IF v_cnt > 0 THEN
    For c1 in v_curr
    LOOP
    v_sql := ''''||'SELECT * from '|| c1.msg_rcrd_src_tbl_nm||' where rowid = '||''''||''''||c1.msg_rcrd_src_tbl_id||''''||''''||'''';
    select DBMS_XMLGEN.getXMLtype(v_sql) into v_xml from dual ;
    gives me a error
    ORA-19202: Error occurred in XML processing
    ORA-24333: zero iteration count
    ORA-06512: at "SYS.DBMS_XMLGEN", line 288
    ORA-06512: at line 1
    Any help greatly appreciated.
    Thanks,
    Raj

    Answered
    Re: Zero iteration error - when processing dynamic sql in dbms_xmlgen

  • Error while processing XML ; ORA-19202: Error occurred in XML processing

    We have an application, which sends an XML to DB for processing.
    While it works in general, it is failing, when special characters are present in the text node
    see example below
    <?xml version="1.0" encoding="UTF-8"?>
    <Query>
    <Group>
    <Value>  %</Value>
    </Group>
    </Query>
    Db throws following error while parsing this xml
    XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00217: invalid character 15573180 (U+EDA0BC)
    How to fix it?

    The following works for me on 11.2.0.2, db charset AL32UTF8 :
    test_sample.xml, encoding UTF-8 :
    <?xml version="1.0" encoding="UTF-8"?>
    <Query>
    <Group>
    <Value>?%</Value>
    </Group>
    </Query>NB : the characters behind the "?" got lost after posting, they're actually 0xF09F 8C82
    Loading...
    SQL> truncate table tmp_xml;
    Table truncated
    SQL>
    SQL> insert into tmp_xml values (
      2   xmltype(
      3     bfilename('TEST_DIR','test_special.xml')
      4   , nls_charset_id('AL32UTF8')
      5   )
      6  );
    1 row inserted
    SQL> set long 500
    SQL> select * from tmp_xml;
    SYS_NC_ROWINFO$
    <?xml version="1.0" encoding="UTF-8"?>
    <Query>
      <Group>
        <Value>🌂%</Value>
      </Group>
    </Query>
    Edited by: odie_63 on 25 sept. 2012 23:00

  • XML parsing error: xml processing instruction not at start of external entity (error code 17)

    I created a form and recieve the filled in form by email from participants. It has always worked in the past. Recently when importing data into the master form (from filled in forms in xml files sent by applicants) I am getting this error message..."xml processing instruction not at start of external entity (error code 17), line 2, column 1...." pointing to the file of data (xml) I am trying to input.  If I pull up old data forms (from 2009) they work, but now I am getting this error.  I run Adobe Design Premium CS3 for Windows.  Can anyone tell me what to do to fix?

    I created a form and recieve the filled in form by email from participants. It has always worked in the past. Recently when importing data into the master form (from filled in forms in xml files sent by applicants) I am getting this error message..."xml processing instruction not at start of external entity (error code 17), line 2, column 1...." pointing to the file of data (xml) I am trying to input.  If I pull up old data forms (from 2009) they work, but now I am getting this error.  I run Adobe Design Premium CS3 for Windows.  Can anyone tell me what to do to fix?

  • Xml processing.....to get an arry of objects  of same named tags..

    Hello,
    i have the folowing xml data..
    <?xml version="1.0" encoding="UTF-8"?>
    <modules>
    <moule_1>
    <m1_1>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m1_1>
    <m1_2>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m1_2>
    <m1_3>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m1_3>
    </moule_1>
    <module_2>
    <m2_1>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m2_1>
    <m2_2>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m2_2>
    <m2_3>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m2_3>
    </module_2>
    <module_3>
    <m3_1>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m3_1>
    <m3_2>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m3_2>
    <m3_3>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m3_3>
    </module_3>
    </modules>
    .above data is sample one i dont know how many modules are in
    xml document...
    now i need an array of all leaf objects.....
    is there any xml processing methods ?? like
    getElementByTagName()
    please help me!!!

    Hello,
    i have the folowing xml data..
    <?xml version="1.0" encoding="UTF-8"?>
    <modules>
    <moule_1>
    <m1_1>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m1_1>
    <m1_2>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m1_2>
    <m1_3>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m1_3>
    </moule_1>
    <module_2>
    <m2_1>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m2_1>
    <m2_2>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m2_2>
    <m2_3>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m2_3>
    </module_2>
    <module_3>
    <m3_1>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m3_1>
    <m3_2>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m3_2>
    <m3_3>
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    <leaf attr1="" attar2="" />
    </m3_3>
    </module_3>
    </modules>
    .above data is sample one i dont know how many modules are in
    xml document...
    now i need an array of all leaf objects.....
    is there any xml processing methods ?? like
    getElementByTagName()
    please help me!!!

  • XML processing best method

    version 10.2.0.3.0
    (long time lurker, first time poster)
    Hi all,
    I am new to XML processing. Please suggest the best method to accomplish my needs as described below.
    I am developing a package that is accessed by a .NET app. The package needs to provide routines that extract data from multiple tables and pass that data - in an XML formatted string parameter - to the calling app. Other routines will accept data from the calling app - in an XML formatted string parameter - and write that data to multiple tables in the database. We prefer not to pass data in a file but would rather pass data in a procedure parameter.
    I have reviewed several documents on the subject but am confused with the best/quickest approach given all the different methods that are available. I am already developing the packages and could use some advice in accomplishing this as quickly as possible.
    Thanks in advance ya'll,
    Louis

    Hi Lou,
    Welcome to the forum.
    Perhaps you should try the XML forums (as well):
    http://forums.oracle.com/forums/category.jspa?categoryID=51
    General XML
    I'm sure you'll get some advice there.
    We're mostly sort of '(PL/)SQL'ized' on this forum ;)

  • XML Processing Implementaion

    Hi,
    While studying, I found the following sentence :
    The Java API for XML Processing (JAXP) enables applications to parse and transform XML documents independent of a particular XML processing implementation.
    In the above sentence, what is a "XML processing implementation"?
    Regards

    I think an SAP man should answer here, but my common sense and SAP knowledge suggests me:
    A1: yes, evidently
    A2: the fact that DOM4J is quoted in a weblog doesn't mean it's officialy supported by SAP, it's  just an option, just like Apache Xerces and others. You can use them in interface dev, it's up to you, but an Adapter is a completly different story: SAP wants to make sure it has full control over a Certified Adapter, and the only way to do that is to have full control on the additional libraries that this Adapter uses. SAP can have this control on SAP XML Toolkit, but not on DOM4J or Xerces, obviously.
    A3: no difference, except that logically and pragmatically is much more convenient to package and deploy everyhting your stuff needs in order to work properly.
    Regards,
    Alex

  • XML processing conform to Certification of Third-Party XI-Adapters

    We are developing a XI-Adapter which needs xml processing. Actually we use some xml tools to process xml document, but we read in the document named  NW_XI_AF_certification_catalog_2.0.pdf that some requirement are not met, such as
    1. If the adapter must be able to parse XML documents, do you use the SAP J2EE XML parser libraries?
    the answer is no, we use jdom and other ways to handle xml.
    QA1: Is it a must and only way to use SAP J2EE XML parser libraries if want to pass the certification
    QA2: The topic named "Using DOM4J in XI - A More Sophisticated Option for XML Processing than SAP XML Toolkit" available at /people/amjad-ali.khoja/blog/2006/02/07/using-dom4j-in-xi--a-more-sophisticated-option-for-xml-processing-than-sap-xml-toolkit
    If do as the passage shows, will the adapter pass the certification
    QA3: Now we package all the tools we use in the sda package and deploy on the SDM, and it works too, what is the difference between package the util tools for process xml(*.jar) in sda and copy them to the corresponding j2ee dir and bin dir as shown in the passage listed
    Message was edited by: mints yang
    Message was edited by: mints yang

    I think an SAP man should answer here, but my common sense and SAP knowledge suggests me:
    A1: yes, evidently
    A2: the fact that DOM4J is quoted in a weblog doesn't mean it's officialy supported by SAP, it's  just an option, just like Apache Xerces and others. You can use them in interface dev, it's up to you, but an Adapter is a completly different story: SAP wants to make sure it has full control over a Certified Adapter, and the only way to do that is to have full control on the additional libraries that this Adapter uses. SAP can have this control on SAP XML Toolkit, but not on DOM4J or Xerces, obviously.
    A3: no difference, except that logically and pragmatically is much more convenient to package and deploy everyhting your stuff needs in order to work properly.
    Regards,
    Alex

Maybe you are looking for

  • How can i retrieve my old text messages?

    I synced my iphone 5s to the computer for the first time and all my personal data was wiped such as text messages, photos, emails and contacts they were then replaced with my dads information? How do i get my stuff back?

  • I made a path and saved it and when I try to select it, it turns my stage completely black? Can anyone help me?

    As my question says, I am cropping out a figure exactly how I usually do it and for some reason this time it is not working. I made points with the pen tool and then moved it around with the direct selection tool (light grey pointer) and everything w

  • File Transport request failed in PI/PO 7.4 dual stack

    Dear Experts, i am transporting from QA to Production Environment of ESR objects through file transport, it is showing import successfull. but whn i checked the latest version/modified objects those are not reflecting in ESR. cache is clear and i hav

  • Adding lines of users TODO to motd

    Hello, I've been trying to customise radu242's /etc/issue from the thread https://bbs.archlinux.org/viewtopic.php?id=50845&p=3 into a user specific motd by replacing the text in the box with some lines from the users TODO.txt. At the moment I have a

  • How to adjust data in first and next pages in sap smart forms ?

    Hello, i am creating a purchase order and displaying it in a smartform. I have a main window in which i have a table listing the material details nested with item asscoiated with it. Underneath this table/main window, i have another window containing