ABAP XML Processing

Hello,
We are planning to setup our SAP system to generate XML messages (from ABAP transaction/program).  Then it will send this XML message in our counterparts outside our network (i.e. HQ) which is not necessarily using an SAP system.  Then it will send back a response XML message to our SAP system with data that we need to save and process in our database.  We are only using SAP R3 Enterprise 4.7.  My question is, Is this setup is achievable in our current release of SAP?  What other options do we have?  Thank you in advance.
Regards,
Tony

Hi sri,
1. itab --- > xml
xml ---> itab.
2. This program will do both.
(just copy paste in new program)
3.
REPORT abc.
DATA
DATA : t001 LIKE TABLE OF t001 WITH HEADER LINE.
DATA : BEGIN OF itab OCCURS 0,
a(100) TYPE c,
END OF itab.
DATA: xml_out TYPE string .
DATA : BEGIN OF upl OCCURS 0,
f(255) TYPE c,
END OF upl.
DATA: xmlupl TYPE string .
FIRST PHASE
FIRST PHASE
FIRST PHASE
Fetch Data
SELECT * FROM t001 INTO TABLE t001.
XML
CALL TRANSFORMATION ('ID')
SOURCE tab = t001[]
RESULT XML xml_out.
CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
  EXPORTING
    TEXT            = xml_out
IMPORTING
  LENGTH          =
  TABLES
    FTEXT_TAB       = itab.
Download
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filetype = 'BIN'
filename = 'd:\xx.xml'
TABLES
data_tab = itab.
SECOND PHASE
SECOND PHASE
SECOND PHASE
BREAK-POINT.
REFRESH t001.
CLEAR t001.
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
filename = 'D:\XX.XML'
filetype = 'BIN'
TABLES
data_tab = upl.
LOOP AT upl.
CONCATENATE xmlupl upl-f INTO xmlupl.
ENDLOOP.
XML
CALL TRANSFORMATION ('ID')
SOURCE XML xmlupl
RESULT tab = t001[]
BREAK-POINT.
regards,
amit m.

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

  • What is variant in ABAP Program Process Block in Process Chain?

    I wrote an ABAP program:
    REPORT ZTEST,
    PARAMETERS:  PROC(80) TYPE C.
    I can test this PORGRAM from SE38, it shows me a pop-up screen for PROC and I can enter a value and execute.
    Now I want to call this  program ZTEST from a process chain. In Process Chain Selected a Process u201CABAP Programu201D. It asks me program name and Program variant, I entered Program Name as ZTEST and
    Program variant as a character string HELLO.
    When I execute Porcess Chain, ABAP Program errors saying that variant HELLO not found.
    What is Program variant in ABAP Program Process in Process Chain?
    Thanks,

    Dont get confused here.
    Variant name is not which you are pasing to the program.
    You enter some values inside the variant and you specify the program to take the input from the variant.
    Suppose you have to pass 10 parameters to a program.
    user1 creates a variant " hello1" which contains his own selection for the 10 values
    user2 creates another variant "hello2" which contain his own set of selecion values.
    When we use this program in PC, you can use the variant user1 or user2 as per our requirement.
    please check if you are giving variant as input or the proc value.
    Hope this helps,
    Sri....

  • [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

  • ABAP in Process Chains

    I am trying to run an ABAP from a process chain and need some of the information from the process chain itself.  The documentation on ABAPs in process chains includes the following:
    Using the Program variant you can transfer the Process variant to the program at the time of scheduling. Input the Process variant as a value for the Program variant and add the following lines to your program:
    PARAMETERS variant TYPE rspc_variant.
    The system exports the technical name of the latest process chain, as well as the dynamic parameter Instance and Log ID in the shared buffer.To receive this parameter, add the following lines to your program:
    DATA: l_instance TYPE rspc_instance,
          l_logid    TYPE rspc_logid,
          l_chainid  TYPE rspc_chain.
    IMPORT instance TO l_instance
           log_id   TO l_logid
           chain_id TO l_chainid
           FROM DATABASE BUFFER rspc_buffer(ab)
           ID variant.
    Can anyone explain how to "Using the Program variant you can transfer the Process variant to the program at the time of scheduling. Input the Process variant as a value for the Program variant"
    Thanks very much,

    Hi,
    We have a similar requirement where we want to pass the  values of a program into an ABAP program being used in a process chain. For e.g the Program 1 has values entered by the user and we want to make use of those values in Program 2.Program 2 is used in the process chain. Program 1 triggers a process chain. We wanted to make use of following program and we got a syntax error for the "DATABASE BUFFER" statement.
    PARAMETERS variant TYPE rspc_variant.
    DATA: l_instance TYPE rspc_instance,
    l_logid TYPE rspc_logid,
    l_chainid TYPE rspc_chain.
    IMPORT instance TO l_instance
    log_id TO l_logid
    chain_id TO l_chainid
    FROM DATABASE BUFFER rspc_buffer(ab)
    ID variant.
    Any help is appreciated.
    Thanks.

  • 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 ;)

Maybe you are looking for

  • Creating a Time Delay Between 2 Waveforms

    Hi, Please bear with me while I explain what I'm trying to do :-)   Basically, in the attached LabView file ("flow vis + trigger-m.vi"), I am generating 2 signals: a sinusoidal waveform (used to drive an actuator) and a square waveform (used as a TTL

  • Unable to find the content of data source into infosource

    Hi I have successfully created a source system in BW and have activated the business contents but I am unable to find the data source contents in infosource. I have replicated the metadata also but uanble to get?  are there any steps to transfer the

  • Side, back and middle speaker on t7700 not working, please help

    I have had this speaker system for a little while, and it has worked great. Recently the side speakers stopped working, so i unplugged everything, and messed around with some settings. When i plugged it back in it worked fine for about a week or two.

  • Multi Media Key Board

    The  multi media keys on my HP HID wireless Multi Media keyboard no longer work although the rest of the keys are O.K.. I think I did something wrong when I went into the 'properties' as I can no longer see the 'BUTTONS'  listed there. Can anybody he

  • Android-Studio 1.1.0 Crashes

    Hi all, I hope I post this into the correct section. I have installed android-studio through  aur and getting some serious problems. Android Studio crashes nearly every five minutes, making it impossible to work with it. I have run it with Open JDK 8