Reg: xml file

hi,
how to extract xml file to database.....
what are different methods in it...how useful it is in real time scenario?
what is the adv in it...
awaiting for ur kindly reply..
cheers,

Lots of examples in the official documentation too : Generating XML Data from the Database

Similar Messages

  • Reg:Integrate third party xml file into sap in RFC without using XI

    Hai Experts,
                        i have a third party web page which is converted to IDOC XML file .i have to get the file and integrate to sap .
    Can u suggest ways of doing it.
    Regards,
    Vikram

    Hai Experts,
                        i have a third party web page which is converted to IDOC XML file .i have to get the file and integrate to sap .
    Can u suggest ways of doing it.
    Regards,
    Vikram

  • Reg:Parsing of an xml file in Wed Dynpro for java

    Hi all,
    I have an Xml file in my local pc and i have to parse that xml file i.e in that xml file i have to get the values of some fields and i have to set those values to the attributes of a node.so can any one help me out in solving this issue.
    Thanks,
    Mahesh

    hi mahesh,
    check this link
    http://help.sap.com/saphelp_nw04s/helpdata/en/5d/d0e678bcf90e46bf31447e7f38c9d6/frameset.htm
    thanks and regrads
    bvr

  • What am I missing to successfully validate an xml file to a reg'd schema?

    Greetings
    My data base is 10.1 and xdb is installed. I've done the following.
    Created xsd and ftp to public dir, my xsd file looks like
    <?xml version="1.0" encoding="UTF-8"?>
    <!--W3C Schema generated by XMLSpy v2007 rel. 3 (http://www.altova.com)-->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb">
         <xs:element name="namexml">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="firstname"/>
                        <xs:element ref="lastname"/>
                        <xs:element ref="fullname"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="lastname">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:minLength value="1"/>
                        <xs:maxLength value="30"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="fullname">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:minLength value="1"/>
                        <xs:maxLength value="60"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="firstname">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:minLength value="1"/>
                        <xs:maxLength value="30"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
    </xs:schema>
    My xml file I'm trying to validate
    <?xml version="1.0" encoding="UTF-8"?>
    <!--Sample XML file generated by XMLSpy v2007 rel. 3 (http://www.altova.com)-->
    <namexml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\DOCUME~1\wleonard\Desktop\namexml.xsd">
         <firstname>Bob</firstname>
         <lastname>Smith</lastname>
         <fullname>Bob Smith</fullname>
    </namexml>
    Registration plsql
    BEGIN
    dbms_xmlschema.registerSchema(
    'http://planmsdev02:8080/public/UTP/XSD/namexml.xsd',
    xdbURIType('/public/UTP/XSD/namexml.xsd').getClob(),
    TRUE,TRUE,FALSE,TRUE
    END;
    I created a table to load the xml into
    CREATE TABLE UTP_INPUT_XML
    I_XML CLOB,
    SERVICE_NAME VARCHAR2(30 BYTE)
    Insert into the table...
    When I try to validate the xml doc with the following plsql, I get invalid. The xml document is valid according to xmlspy using a local xsd on my laptop
    DECLARE
    xmldoc XMLTYPE;
    isSV NUMBER;
    BEGIN
    -- populate xmldoc (for example, by fetching from table)
    SELECT XMLTYPE(i_xml).isSchemaValid('http://planmsdev02:8080/public/UTP/XSD/namexml.xsd')
    INTO isSV
         FROM UTP_INPUT_XML
    WHERE service_name = 'WAYNE_NAME_2';
    -- validate against XML schema
    --xmldoc.isSchemaValid('http://planmsdev02:8080/public/UTP/XSD/serviceRequest.xsd');
    IF isSV = 1 THEN
         DBMS_OUTPUT.PUT_LINE('VALID');
    ELSE
         DBMS_OUTPUT.PUT_LINE('INVALID');
    END IF;
    END;

    [Oracle 9.2.0.8]
    I've got the same than wleonard to validate some files. For XMLSpy the file is valid and Oracle told me that the file was invalid.
    Any idea ?

  • REG: WRITE XML STRING INTO XML FILE

    Hi All, I have a XML FILE on PC. I get a xml string from my server.
    My Task: I want to append the xml string coming from the server into the existing xml file at a particular Node. Given below is my code :
    String xmlString = baos.toString();
                      DocumentBuilder db4XMLString = docBuilderFactory.newDocumentBuilder();
                      InputSource inStream = new InputSource();
                      inStream.setCharacterStream(new StringReader(xmlString));
                      Document doc4XMLString = db4XMLString.parse(inStream);
                      Node root4XMLString = doc4XMLString.getElementsByTagName("epg").item(0);
                      doc.appendChild(doc.importNode(root4XMLString, true));
                      File file = new File(Constant.XMLFILEPATH);
                      Result result = new StreamResult(file.toURI().getPath());
                      Source source = new DOMSource(doc);
                      Transformer xformer = TransformerFactory.newInstance().newTransformer();
                      xformer.transform(source, result);But, wen i run my application I get following exception:
    The markup in the document following the root element must be well-formed.
    org.xml.sax.SAXParseException: The markup in the document following the root element must be well-formed.
    at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
    Is that my XML string is not well formed. Is it so then please let me how to convert my xml string into well formed XML data.
    Please help me out.
    Thanking You.

    There are many reasons why xmlString could be not well formed. There is no magic recipe for making it well formed: just look at it and see why it is not parseable.
    Note that this line:
    String xmlString = baos.toString();can be problematic if you have non ASCII-7 characters in your XML document. baos could then contain a byte representation of these characters in one particular encoding, but, since you use the .toString() method that relies on the default encoding of your system, you can end up with a mismatch and garbage in your XML.

  • Parsing XML file & insert into Oracle Tables

    Hi,
    Following is a sample xml file which is an input for a oracle procedure :
    <Sales ID="1" CreatedDate="16-Jan-2007" CreatedTime="16:09:40">
    <Customer ID="1" Name="Scott" Address="City1">
         <Order ID="1" Date="15-Jan-2007" TotItems="2" Value="200">
              <Item ID="01" Name="Chocolate" Qty="2" Amount="80" />
              <Item ID="03" Name="Biscuit" Qty="5" Amount="120" />
         </Order>
    </Customer>
    <Customer ID="2" Name="Tiger" Address="City2">
         <Order ID="1" Date="15-Jan-2007" TotItems="1" Value="500">
              <Item ID="01" Name="Pizza" Qty="3" Amount="500" />
         </Order>
    </Customer>
    <User ID="ABC" Name="TestUser" LastLogin="16-Jan-2007" />
    <City Code="NY" Name="New York" />
    <City Code="NJ" Name="New Jersy" />
    </Sales>
    I have individual tables for Sales, Customer, Order, Item, User & City tags with proper referential constraints. I have to parse the xml & have to insert the corresponsing tables for each & every tag if the ID in individual tag does not exists in the table. If the ID already exist, then, I have to update other attributes in the table for the corresponding ID.
    Can anyone suggest me the simplest way to perform the above said scenario?

    Dera Michael,
    Sorry for the confusing previous reply. I went through your solution again and tried for my XML File.
    I have stored the XML File in table XXLF_DS_XML.Should I make use of the table in the below query.
    Here is my SQL Query erroring Out
    SQL> SELECT EXTRACTVALUE(s.COLUMN_VALUE,
    2 '/Header@orderID') ID
    3 ,EXTRACTVALUE(c.COLUMN_VALUE,
    4 '/Detail@lineNumber') lienum
    5 ,EXTRACTVALUE(t.COLUMN_VALUE,
    6 '/Detail/Tax@currency') currency
    7 ,EXTRACTVALUE(t.COLUMN_VALUE,
    8 '/Detail/Tax/Money') customer_name
    9 FROM TABLE(XMLSEQUENCE(EXTRACT(XMLTYPE('- <Recordset>
    10 - <Header dueDate="2007-01-17T16:09:05" orderDate="2004-01-17" orderID="0009" transactionID="1389"
    type="new">
    11 <KeyIndex>2</KeyIndex>
    12 - <BillTo>
    13 - <Address addressID="5619" isoCountryCode="US">
    14 <Name>fMat</Name>
    15 - <PostalAddress name="default">
    16 <Street>34545</Street>
    17 <City>dfgfg</City>
    18 <State>AZ</State>
    19 <PostalCode>85086-1693</PostalCode>
    20 <County>Maricopa</County>
    21 <Country>US</Country>
    22 </PostalAddress>
    23 <Email name="default">[email protected]</Email>
    24 </Address>
    25 </BillTo>
    26 <PromotionCode />
    27 - <SubTotal>
    28 <Money currency="USD">32.49</Money>
    29 </SubTotal>
    30 - <Tax>
    31 <Money currency="USD">2.32</Money>
    32 <Description />
    33 </Tax>
    34 - <Shipping>
    35 <Money currency="USD">8.95</Money>
    36 <Description />
    37 </Shipping>
    38 </Header>
    39 - <Detail lineNumber="1" quantity="1">
    40 - <ItemDetail>
    41 - <UnitPrice>
    42 <Money currency="USD">29.99</Money>
    43 </UnitPrice>
    44 <ShortName>Little;reg; pxxxx® Learning System</ShortName>
    45 </ItemDetail>
    46 - <Tax>
    47 <Money currency="USD">1.68</Money>
    48 <Description />
    49 - <TaxDetail category="sales">
    50 - <TaxAmount>
    51 <Money currency="USD">1.68</Money>
    52 </TaxAmount>
    53 <TaxLocation>AZ</TaxLocation>
    54 </TaxDetail>
    55 </Tax>
    56 </Detail>
    57 - <Detail lineNumber="2" quantity="1">
    58 - <ItemDetail>
    59 - <UnitPrice>
    60 <Money currency="USD">29.99</Money>
    61 </UnitPrice>
    62 <ShortName>Little;reg; pxxxx® Learning System</ShortName>
    63 </ItemDetail>
    64 - <Tax>
    65 <Money currency="USD">1.68</Money>
    66 <Description />
    67 - <TaxDetail category="sales">
    68 - <TaxAmount>
    69 <Money currency="USD">1.68</Money>
    70 </TaxAmount>
    71 <TaxLocation>AZ</TaxLocation>
    72 </TaxDetail>
    73 </Tax>
    74 - <Tax>
    75 <Money currency="USD">0.68</Money>
    76 <Description />
    77 - <TaxDetail category="sales">
    78 - <TaxAmount>
    79 <Money currency="USD">0.68</Money>
    80 </TaxAmount>
    81 <TaxLocation>DISTRICT</TaxLocation>
    82 </TaxDetail>
    83 </Tax>
    84 </Detail>
    85 </Recordset>'),'/Recordset/Header'))) s
    86 ,TABLE(XMLSEQUENCE(EXTRACT(c.COLUMN_VALUE,
    87 '/Recordset/Detail'))) c
    88 ,TABLE(XMLSEQUENCE(EXTRACT(t.COLUMN_VALUE,
    89 '/Recordset/Detail/Tax'))) t
    90 /
    ,TABLE(XMLSEQUENCE(EXTRACT(c.COLUMN_VALUE,
    ERROR at line 86:
    ORA-00904: "C"."COLUMN_VALUE": invalid identifier
    Here is my XML Data
    <Recordset>
    <Header dueDate="2007-01-17T16:09:05" orderDate="2004-01-17" orderID="0009" transactionID="1389"
    type="new">
    <KeyIndex>2</KeyIndex>
    <BillTo>
    <Address addressID="5619" isoCountryCode="US">
    <Name>fMat</Name>
    <PostalAddress name="default">
    <Street>34545 </Street>
    <City>dfgfg</City>
    <State>AZ</State>
    <PostalCode>85086-1693</PostalCode>
    <County>Maricopa</County>
    <Country>US</Country>
    </PostalAddress>
    <Email name="default">[email protected]</Email>
    </Address>
    </BillTo>
    <PromotionCode/>
    <SubTotal>
    <Money currency="USD">32.49</Money>
    </SubTotal>
    <Tax>
    <Money currency="USD">2.32</Money>
    <Description/>
    </Tax>
    <Shipping>
    <Money currency="USD">8.95</Money>
    <Description/>
    </Shipping>
    </Header>
    <Detail lineNumber="1" quantity="1">
    <ItemDetail>
    <UnitPrice>
    <Money currency="USD">29.99</Money>
    </UnitPrice>
    <ShortName>Little;reg; pxxxx® Learning System </ShortName>
    </ItemDetail>
    <Tax>
    <Money currency="USD">1.68</Money>
    <Description/>
    <TaxDetail category="sales">
    <TaxAmount>
    <Money currency="USD">1.68</Money>
    </TaxAmount>
    <TaxLocation>AZ</TaxLocation>
    </TaxDetail>
    </Tax>
    </Detail>
    <Detail lineNumber="2" quantity="1">
    <ItemDetail>
    <UnitPrice>
    <Money currency="USD">29.99</Money>
    </UnitPrice>
    <ShortName>Little;reg; pxxxx® Learning System </ShortName>
    </ItemDetail>
    <Tax>
    <Money currency="USD">1.68</Money>
    <Description/>
    <TaxDetail category="sales">
    <TaxAmount>
    <Money currency="USD">1.68</Money>
    </TaxAmount>
    <TaxLocation>AZ</TaxLocation>
    </TaxDetail>
    </Tax>
    <Tax>
    <Money currency="USD">0.68</Money>
    <Description/>
    <TaxDetail category="sales">
    <TaxAmount>
    <Money currency="USD">0.68</Money>
    </TaxAmount>
    <TaxLocation>DISTRICT</TaxLocation>
    </TaxDetail>
    </Tax>
    </Detail>
    </Recordset>
    Thanks

  • Reg XML generation from java objects using SAX 2.0

    i'm using java 1.6 and i've imported following class to generate XML from java objects
    import com.sun.org.apache.xml.internal.serialize.OutputFormat;
    import com.sun.org.apache.xml.internal.serialize.XMLSerializer;
    the following class has been imple her to create a Xml file and tag elements ,
    OutputFormat of = new OutputFormat("XML", "iso-8859-1", true);
    XMLSerializer serializer = new XMLSerializer(fos, of);
    ContentHandler hd = serializer.asContentHandler();
    hd.startDocument();
    everything works fine but i'm getting warrnin reg the serializer and outputformat
    warring is:
    com.sun.org.apache.xml.internal.serialize.OutputFormat is Sun proprietary API and may be removed in a future release
    com.sun.org.apache.xml.internal.serialize.OutputFormat is Sun proprietary API and may be removed in a future release
    HOW CAN I AVOID DS WARRING PLZ HELP REG DS
    thanks ,
    with regards,
    Rajesh.S

    I've been having the same problem. Here is what i found:
    [http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6476630]
    Hope that helps (or at least helps you feel better).

  • Open Dataset for XML not reading the XML file, Returning Code 8.

    Dear all,
    Im trying to open an XML file using Open Dataset, since i have to execute this report in background and GUI_upload doesnt work in background.
    The XML file is available in my C:\, say, C:\xmlfile.xml.
    But  the open dataset is not reading any value into the g_xml_line . it is returning sy-subrc = 8.
    Below is my code for that, can anybody help me out to resolve.
    DATA : lv_filename LIKE rlgrap-filename.
      CLEAR: lv_filename.
      lv_filename = p_input.
      OPEN DATASET lv_filename FOR INPUT IN BINARY MODE.
      IF sy-subrc ne 0.
        WRITE:/ 'invalid file'.
      else.
      DO.
        READ DATASET lv_filename INTO  g_xml_line.
        IF sy-subrc EQ 0.
          APPEND g_xml_line TO g_xml_table.
        ELSE.
          EXIT.
        ENDIF.
      ENDDO.
      CLOSE DATASET lv_filename.
       ENDIF.
    TYPES: BEGIN OF t_xml_line,
            data(256) TYPE x,
          END OF t_xml_line.
    DATA: g_xml_table       TYPE TABLE OF t_xml_line,
          g_xml_line        TYPE t_xml_line,
          g_xml_table_size  TYPE i.
    GET REFERENCE OF gt_person INTO gs_result_xml-value.
      gs_result_xml-name = 'IPIX'.
      APPEND gs_result_xml TO gt_result_xml.
    Perform the XSLT stylesheet
      TRY.
          CALL TRANSFORMATION zaum_manh_sync_rpt
          SOURCE XML g_xml_table
          RESULT (gt_result_xml).
        CATCH cx_root INTO gs_rif_ex.
          gs_var_text = gs_rif_ex->get_text( ).
          MESSAGE gs_var_text TYPE 'E'.
      ENDTRY.
    Kindly suggest me a solution. Points assured
    regs,
    raja

    After saving the file , below is the code i wrote, but it gives a runtime error with message
    No roll storage space of length 3788808 available for internal storage.
    ***Coding****
    PARAMETERS: p_file TYPE pathintern LOWER CASE DEFAULT '/usr/sap/DEV/SYS/global/XMLABAP2.XML'.
    DATA : lv_filename LIKE rlgrap-filename.
      CLEAR: lv_filename.
      lv_filename = p_file.
      DATA: l_fname TYPE filename-fileintern. " File name
    *GET THE FILENAME FROM THE APPLICATION SERVER
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
        EXPORTING
          directory        = p_file
          filemask         = '*'
        IMPORTING
          serverfile       = l_fname
        EXCEPTIONS
          canceled_by_user = 1
          OTHERS           = 2.
      IF sy-subrc NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    */usr/sap/DEV/SYS/global/substanc
      lv_filename = l_fname.
      OPEN DATASET lv_filename FOR INPUT IN BINARY MODE.
      IF sy-subrc NE 0.
        WRITE:/ 'invalid file'.
      ELSE.
        DO.
          READ DATASET lv_filename INTO  g_xml_line.
       IF sy-subrc EQ 0.
          APPEND g_xml_line TO g_xml_table.
       ELSE.
         EXIT.
       ENDIF.
        ENDDO.
        CLOSE DATASET lv_filename.
      ENDIF.

  • Reading XML file to ABAP internal table

    Hi all,
    Iam trying to convert a XLM file into abap internal table , am using XSLT transformation to parse the XML file and i am using "CALL METHOD cl_gui_frontend_services=>gui_upload" for reading the XML file.
    below is the XML file.
    ===========================================================================
    - <PIXBridge version="2.2" timestamp="2003-04-09T15:27:00">
    - <PIX>
      <TransactionType>605</TransactionType>
      <TransactionCode>98</TransactionCode>
      <TransactionNumber>6888965</TransactionNumber>
      <SequenceNumber>40001</SequenceNumber>
    - <SKUDefinition>
      <Company>GZL</Company>
      <Division>BMD</Division>
      <Season />
      <SeasonYear />
      <Style>ORT002A</Style>
      <StyleSuffix />
      <Color>K13</Color>
      <ColorSuffix />
      <SecDimension />
      <Quality />
      <SizeRangeCode />
      <SizeDesc>M</SizeDesc>
      <SkuID>200140577</SkuID>
      </SKUDefinition>
      </PIX>
      </PIXBridge>
    =================================================================
    and my Transformation code is as below
    <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
      <xsl:output encoding="iso-8859-1" indent="yes" method="xml" version="1.0"/>
      <xsl:strip-space elements="*"/>
      <xsl:template match="/">
        <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
          <asx:values>
            <IPIX>
              <xsl:apply-templates select="//PIX"/>
            </IPIX>
          </asx:values>
        </asx:abap>
      </xsl:template>
      <xsl:template match="PIX">
        <item>
          <TRANSACTIONTYPE>
            <xsl:value-of select="TransactionType"/>
          </TRANSACTIONTYPE>
          <TRANSACTIONCODE>
            <xsl:value-of select="TransactionCode"/>
          </TRANSACTIONCODE>
          <TRANSACTIONNUMBER>
            <xsl:value-of select="TransactionNumber"/>
          </TRANSACTIONNUMBER>
          <SEQUENCENUMBER>
            <xsl:value-of select="SequenceNumber"/>
          </SEQUENCENUMBER>
          <SKUDEFINITION>
            <COMPANY>
              <xsl:value-of select="Company"/>
            </COMPANY>
            <DIVISION>
              <xsl:value-of select="Division"/>
            </DIVISION>
            <SEASON/>
            <SEASONYEAR/>
            <STYLE>
              <xsl:value-of select="Style"/>
            </STYLE>
            <STYLESUFFIX/>
            <COLOR>
            <xsl:value-of select="Color"/>
            </COLOR>
            <COLORSUFFIX/>
            <SECDIMENSION/>
            <QUANTITY/>
            <SIZERANGECODE/>
            <SIZEDESC>
              <xsl:value-of select="SizeDesc"/>
            </SIZEDESC>
            <SKUID>
              <xsl:value-of select="SkuID"/>
            </SKUID>
          </SKUDEFINITION>
          </item>
        </xsl:template>
    When i run my program i am getting the values only till the sequence number part and im not getting any values  that is read in between <SKUDEFINITION> ..... </SKUDEFINITION>
    I need help to sort this , kindly help me in this.
    regs,
    raja

    I am not able to get a clue out of that, can Get Durairaj Athavan Raja in to loop for sorting this out.
    I made changes to my transformation program , but still not getting the output of the components inside the
    <SKUDefinition> , but when i debug  the transformation i can able to see the output values for those components but when i get the values in the result table im not getting values of those components.
    <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
      <xsl:output encoding="iso-8859-1" indent="yes" method="xml" version="1.0"/>
      <xsl:strip-space elements="*"/>
      <xsl:template match="/">
        <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
          <asx:values>
            <IPIX>
              <xsl:apply-templates select="//PIX"/>
            </IPIX>
          </asx:values>
        </asx:abap>
      </xsl:template>
      <xsl:template match="PIX">
        <item>
          <TRANSACTIONTYPE>
            <xsl:value-of select="TransactionType"/>
          </TRANSACTIONTYPE>
          <TRANSACTIONCODE>
            <xsl:value-of select="TransactionCode"/>
          </TRANSACTIONCODE>
          <TRANSACTIONNUMBER>
            <xsl:value-of select="TransactionNumber"/>
          </TRANSACTIONNUMBER>
          <SEQUENCENUMBER>
            <xsl:value-of select="SequenceNumber"/>
          </SEQUENCENUMBER>
          <xsl:for-each select="SKUDefinition">
          <SKUDEFINITION>
          <COMPANY>
              <xsl:value-of select="Company"/>
          </COMPANY>
          <DIVISION>
              <xsl:value-of select="Division"/>
          </DIVISION>
          <SEASON/>
          <SEASONYEAR/>
          <STYLE>
            <xsl:value-of select="Style"/>
          </STYLE>
          <STYLESUFFIX/>
          <COLOR>
            <xsl:value-of select="Color"/>
          </COLOR>
          <COLORSUFFIX/>
          <SECDIMENSION/>
          <QUANTITY/>
          <SIZERANGECODE/>
          <SIZEDESC>
              <xsl:value-of select="SizeDesc"/>
          </SIZEDESC>
          <SKUID>
              <xsl:value-of select="SkuID"/>
          </SKUID>
          </SKUDEFINITION>
          </xsl:for-each>
        </item>
      </xsl:template>
    </xsl:transform>
    ==================
    Below is my main program
    ===================
    TYPE-POOLS abap.
    CONSTANTS gs_file TYPE string VALUE 'C:\XMLABAP1.xml'.
    This is the structure for the data from the XML file
    TYPES: BEGIN OF ty_text,
             TransactionType(3) type n,
             TransactionCode(2) type n,
             TransactionNumber(7) type n,
             SequenceNumber(5) type n,
             Company(3) type c,
             Division(3) type c,
             Season(3) type c,
             SeasonYear(4) type c,
             Style(8) type c,
             Color(3) type c,
             SecDimension(3) type c,
             Quality(3) type n,
             SizeRangeCode(2) type c,
             SizeDesc(1) type c,
             SkuID(10) type c,
           END OF ty_text.
    Table for the XML content
    DATA: gt_itab       TYPE STANDARD TABLE OF char2048.
    data: xmlstr        TYPE XSTRING.
    Table and work ares for the data from the XML file
    DATA: gt_person     TYPE STANDARD TABLE OF ty_text,
          gs_person     TYPE ty_text.
    Result table that contains references
    of the internal tables to be filled
    DATA: gt_result_xml TYPE abap_trans_resbind_tab,
          gs_result_xml TYPE abap_trans_resbind.
    For error handling
    DATA: gs_rif_ex     TYPE REF TO cx_root,
          gs_var_text   TYPE string.
    Get the XML file from your client
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
        filename                = gs_file
      CHANGING
        data_tab                = gt_itab
      EXCEPTIONS
        file_open_error         = 1
        file_read_error         = 2
        no_batch                = 3
        gui_refuse_filetransfer = 4
        invalid_type            = 5
        no_authority            = 6
        unknown_error           = 7
        bad_data_format         = 8
        header_not_allowed      = 9
        separator_not_allowed   = 10
        header_too_long         = 11
        unknown_dp_error        = 12
        access_denied           = 13
        dp_out_of_memory        = 14
        disk_full               = 15
        dp_timeout              = 16
        not_supported_by_gui    = 17
        error_no_gui            = 18
        OTHERS                  = 19.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Fill the result table with a reference to the data table.
    Within the XSLT stylesheet, the data table can be accessed with
    "IPERSON".
    GET REFERENCE OF gt_person INTO gs_result_xml-value.
    gs_result_xml-name = 'IPIX'.
    APPEND gs_result_xml TO gt_result_xml.
    Perform the XSLT stylesheet
    TRY.
        CALL TRANSFORMATION ZAUM_MANH_SYNC_RPT
        SOURCE XML XMLSTR
        RESULT (gt_result_xml).
      CATCH cx_root INTO gs_rif_ex.
        gs_var_text = gs_rif_ex->get_text( ).
        MESSAGE gs_var_text TYPE 'E'.
    ENDTRY.
    Now let's see what we got from the file
    LOOP AT gt_person INTO gs_person.
    WRITE: / 'Transaction Type:', gs_person-TransactionType.
      WRITE: / 'Transaction Code :', gs_person-TransactionCode.
      WRITE: / 'Transaction Number :', gs_person-TransactionNumber.
       WRITE: / 'SequenceNumber :', gs_person-SequenceNumber.
       WRITE: / 'Company : ', gs_person-Company.
      WRITE : /.
    ENDLOOP. "gt_person.

  • How to apply style to partial text within a tag in xml file

    I have created a webpage using Dreamweaver CS4 Spry Regions. Everything is functioning as expecting, however now I need to apply a style to part of the text. Every occurance of the company name needs to be in italics - the problem is that the company name appears within different parts of the text within a set of tags.
    http://www.certifiedangusbeef.com/private1/sales/facts/index.php
    ie - <description> this is my company name which must appear in italics</description>
    In this example, only "company name" needs to be italicized. We have created an XSL file that applies the italics properly when the XML file is viewed in the browser. But it does not have any effect on the final web page - as though spry is blocking the XSL or we've missed a step in linking all the files together.
    Here's the XSL code:
    <?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="facts.xml" --><!DOCTYPE xsl:stylesheet  [
    <!ENTITY nbsp   "&#160;">
    <!ENTITY copy   "&#169;">
    <!ENTITY reg    "&#174;">
    <!ENTITY trade  "&#8482;">
    <!ENTITY mdash  "&#8212;">
    <!ENTITY ldquo  "&#8220;">
    <!ENTITY rdquo  "&#8221;">
    <!ENTITY pound  "&#163;">
    <!ENTITY yen    "&#165;">
    <!ENTITY euro   "&#8364;">
    ]>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        <xsl:template match="node()|@*">
            <xsl:copy>
                <xsl:apply-templates select="node()|@*"/>
            </xsl:copy>
        </xsl:template>
        <xsl:template match="text()[ancestor::description]" name="replace">
            <xsl:param name="pString" select="."/>
            <xsl:choose>
                <xsl:when test="contains($pString,'Certified Angus Beef ®')">
                    <xsl:value-of select="substring-before($pString,'Certified Angus Beef ®')"/>
                    <i>Certified Angus Beef<sup> &reg;</sup> </i>
                    <xsl:call-template name="replace">
                        <xsl:with-param name="pString"
                        select="substring-after($pString,'Certified Angus Beef ®')"/>
                    </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:value-of select="$pString"/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:template>
        <xsl:template match="text()[ancestor::item]" name="replace1">
            <xsl:param name="pString" select="."/>
            <xsl:choose>
                <xsl:when test="contains($pString,'Certified Angus Beef ®')">
                    <xsl:value-of select="substring-before($pString,'Certified Angus Beef ®')"/>
                    <i>Certified Angus Beef<sup> &reg;</sup> </i>
                    <xsl:call-template name="replace">
                        <xsl:with-param name="pString"
                        select="substring-after($pString,'Certified Angus Beef ®')"/>
                    </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:value-of select="$pString"/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:template>
    </xsl:stylesheet>

    An element attribute is set with the method
    setAttribute(String name,
                             String value)or the
    setAttributeNode(Attr newAttr)method.

  • This XML file does not appear to have any style information...

    hello,
    i am a new oracle spatial developer and also i am new in XML. i want to see the demos in oracle 10g enterprise edition. i imported the necessary dump files and i created the necessary user defined as mvdemo/mvdemo. when i want to see the demos in mapviewer, i come accross this error:
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
         <oms_error>
    Message:[XMLHelper] xml eşleme isteği incelenirken hata.
    Fri Feb 25 01:37:39 EET 2005
    Severity: 0
    Description:
    Message:[XMLHelper] xml eşleme isteğinde geçersiz geometri.
    Fri Feb 25 01:37:39 EET 2005
    Severity: 0
    Description:
    Message:GML Geometry type Point not suppoted.
    Description:
         at oracle.sdovis.JSDOGeometry.fromNodeToGeometry(JSDOGeometry.java:3185)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.parseGeoFeature(XMLHelper4Mapper.java:712)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:223)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:167)
         at oracle.lbs.mapserver.oms.getMapRequest(oms.java:678)
         at oracle.lbs.mapserver.oms.doPost(oms.java:314)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    </oms_error>
    for now, i dont know what to do.. if someone recommend any useful idea, i would be greatful.
    best regards..

    hello,
    thank you for your reply..
    i made some changes and i dont see the errors that i mentioned above any more. but still some problems..
    firstly, i decided to change the settings in the mapViewerConfig.xml file in order to add a new datasource. i copied it and that is the reason why you see the '!' in my explanation. the new situation in the mapViewerConfig.xml file like this:
    <map_data_source name="mvdemo"
    jdbc_host="c-0y5wp0jvd2bf8"
    jdbc_sid="orcl"
    jdbc_port="1521"
    jdbc_user="mvdemo"
    jdbc_password="nzKVD/KFZYkGc0uF7EL7/vPibuAPpQ9j"
    jdbc_mode="thin"
    number_of_mappers="3"
    />
    "c-0y5wp0jvd2bf8" is my computer name. jdbc password was encrypted when i started the mapviewer. this is the new screen of the mapviewer after starting:
    05/03/01 17:49:58 INFO [oracle.lbs.mapserver.oms] oms root path: C:\mapviewer10
    12_qs\mv1012qs\oc4j\j2ee\home\applications\mapviewer\web\
    05/03/01 17:49:58 Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)
    initialized
    05/03/01 17:49:58 INFO [oracle.lbs.mapserver.core.MapperConfig] using default co
    nfig file: C:\mapviewer1012_qs\mv1012qs\oc4j\j2ee\home\applications\mapviewer\we
    b\WEB-INF\conf\mapViewerConfig.xml
    05/03/01 17:49:58 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL map
    maker instances.
    05/03/01 17:50:17 INFO [oracle.sdovis.CacheMgr2] Spatial Data Cache opened. Regi
    on=SDOVIS_DATA.
    05/03/01 17:50:17 INFO [oracle.sdovis.CacheMgr2] max_cache_size=32 MB.
    05/03/01 17:50:17 INFO [oracle.sdovis.CacheMgr2] sub region sdovis_subreg_mvdemo
    _jdbc:oracle:thin:@c-0y5wp0jvd2bf8:1521:orcl created in cache.
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper ins
    tance to the pool [data src=mvdemo]
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper ins
    tance to the pool [data src=mvdemo]
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper ins
    tance to the pool [data src=mvdemo]
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperConfig] Map Recycling th
    read started.
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.oms] *** Oracle MapViewer started.
    when i open the page ( http://localhost:8888/mapviewer/ ) and press the submit button of the "sample map request" section to see the result of the demo, i come accross this error:
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
         <oms_error>
    Message:[XMLHelper] xml eşleme isteği incelenirken hata.
    Tue Mar 01 17:53:51 EET 2005
    Severity: 0
    Description:
    Message:[XMLHelper] xml eşleme isteğinde geçersiz geometri.
    Tue Mar 01 17:53:51 EET 2005
    Severity: 0
    Description:
    Message:GML Geometry type Point not suppoted.
    Description:
         at oracle.sdovis.JSDOGeometry.fromNodeToGeometry(JSDOGeometry.java:3185)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.parseGeoFeature(XMLHelper4Mapper.java:712)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:223)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:167)
         at oracle.lbs.mapserver.oms.getMapRequest(oms.java:678)
         at oracle.lbs.mapserver.oms.doPost(oms.java:314)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    </oms_error>
    in addition, i use firefox as my default browser. however, i tried it in the iexplorer also but gave the same error again.
    i look forward to taking a response. thank you very much for your care again.
    regards

  • CME not creating custom SEP MacAddress .cnf.xml files, using XMLDefault.cnf.xml for phones

    Hello, I have CME 8.6 installed on two 2851s and before going into production, I am testing a few phones.
    One of my 2851's is creating cnf.xml files for each phone using SEP<Mac address>.cnf.xml and the other one will not and the phones keep booting up with XMLDefault.cnf.xml.
    I've looked at both configurations and I can't see what the difference is. Other than not being able to create the SEP<MacAddress>.cnf.xml files, the phones appear to be loading up fine. 
    One difference I see is the "its" directory is located on system: on the one that creates the cnf files, and the "its" directory is located in flash on the one that doesn't, although I don't know how that matters.
    Below is the one that doesn't create the SEP<MACADDRESS>.cnf.xml files for phones:
    Current configuration : 2657 bytes
    ! Last configuration change at 02:12:45 UTC Wed Oct 8 2014
    version 15.1
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname RtrPod2
    boot-start-marker
    boot-end-marker
    no aaa new-model
    no network-clock-participate wic 3
    crypto pki token default removal timeout 0
    dot11 syslog
    ip source-route
    ip cef
    ip dhcp excluded-address 20.0.30.0 20.0.30.10
    ip dhcp excluded-address 20.0.10.0 20.0.10.10
    ip dhcp pool Data
     network 20.0.10.0 255.255.255.0
     default-router 20.0.10.254
     option 150 ip 20.0.30.254
    ip dhcp pool Voice
     network 20.0.30.0 255.255.255.0
     default-router 20.0.30.254
     option 150 ip 20.0.30.254
     dns-server 8.8.8.8
    no ipv6 cef
    multilink bundle-name authenticated
    voice-card 0
    license udi pid CISCO2851 sn FTX1331AJQ1
    username cisco privilege 15 password 0 cisco
    redundancy
    controller T1 0/3/0
    controller T1 0/3/1
    interface Loopback0
     no ip address
    interface GigabitEthernet0/0
     no ip address
     duplex auto
     speed auto
    interface GigabitEthernet0/0.10
     encapsulation dot1Q 10
     ip address 20.0.10.254 255.255.255.0
    interface GigabitEthernet0/0.30
     encapsulation dot1Q 30
     ip address 20.0.30.254 255.255.255.0
    interface GigabitEthernet0/1
     ip address 192.168.5.232 255.255.255.0
     duplex auto
     speed auto
    interface Serial0/0/0
     no ip address
     shutdown
     clock rate 2000000
    interface Serial0/0/1
     ip address 200.2.0.1 255.255.255.0
    ip forward-protocol nd
    no ip http server
    no ip http secure-server
    tftp-server flash:cmterm-7940-7960-sccp.8-1-2.cop.sgn alias cmterm-7940-7960-sccp.8-1-2
    tftp-server flash:/Ringtones/DistinctiveRingList.xml alias DistinctiveRingList.xml
    tftp-server flash:/Ringtones/Ringlist.xml alias Ringlist.xml
    tftp-server flash:P00308010200.bin
    tftp-server flash:P00308010200.loads
    tftp-server flash:P00308010200.sb2
    tftp-server flash:P00308010200.sbn
    control-plane
    mgcp profile default
    telephony-service
     no auto-reg-ephone
     max-ephones 110
     max-dn 288
     ip source-address 20.0.30.254 port 2000
     system message Branch System
     load 7960-7940 P00308010200
     max-conferences 8 gain -6
     transfer-system full-consult
     create cnf-files version-stamp Jan 01 2002 00:00:00
    ephone-dn  1  dual-line
     number 2000
     label Phil Davis
     description Branch Office
    ephone  1
     device-security-mode none
     mac-address 0009.E89D.0B4F
     username "cisco" password cisco
     button  1:1
    line con 0
    line aux 0
    line vty 0 4
     login local
     transport input all
    line vty 5 15
     login local
     transport input all
    scheduler allocate 20000 1000
    end

    Hello, and thanks for the good advice. I did try and added the cnf perphone command and ran no create cnf-files and then create cnf-files, but unfortunately its still not making them.
    Also, from the other few CME installations I've seen, all of the information is in flash, but for some reason when I xtracted the tar for this CME, it's showing up in system: ? Could that be a problem?  Here is what I see:
    CompactFlash directory:
    File  Length   Name/status
      1   67922508  c2800nm-adventerprisek9-mz.151-4.M8.bin
      2   85149696  cme-full-8.0.0.1.tar
      3   2942935  apps11.8-5-3TH1-6.sbn
      4   503269   cnu11.8-5-3TH1-6.sbn
      5   2104751  cvm11sccp.8-5-3TH1-6.sbn
      6   340615   dsp11.8-5-3TH1-6.sbn
      7   1616686  jar11sccp.8-5-3TH1-6.sbn
      8   670      SCCP11.8-5-3S.loads
      9   674      term06.default.loads
     10   674      term11.default.loads
     11   1916     MISCH-1.3.3.SBN
     12   900      CP7921G-1.3.3.LOADS
     13   900      CP7925G-1.3.3.LOADS
     14   674      term42.default.loads
     15   674      term62.default.loads
     16   670      SCCP42.8-5-3S.loads
     17   655      term31.default.loads
     18   654      term41.default.loads
     19   654      term45.default.loads
     20   654      term61.default.loads
     21   654      term65.default.loads
     22   654      term70.default.loads
     23   654      term71.default.loads
     24   654      term75.default.loads
     25   651      SCCP31.8-5-3S.loads
     26   650      SCCP41.8-5-3S.loads
     27   650      SCCP45.8-5-3S.loads
     28   650      SCCP70.8-5-3S.loads
     29   650      SCCP75.8-5-3S.loads
     30   61       SCCP69xx.8-5-3-0.loads
     31   131470   Desktops/320x212x12/CampusNight.png
     32   80565    Desktops/320x212x12/CiscoFountain.png
     33   8156     Desktops/320x212x12/CiscoLogo.png
     34   138278   Desktops/320x212x12/FOUNTAIN.PNG
     35   740      Desktops/320x212x12/LIST.XML
     36   109076   Desktops/320x212x12/MorroRock.png
     37   108087   Desktops/320x212x12/NantucketFlowers.png
     38   10820    Desktops/320x212x12/TN-CampusNight.png
     39   9657     Desktops/320x212x12/TN-CiscoFountain.png
     40   2089     Desktops/320x212x12/TN-CiscoLogo.png
     41   7953     Desktops/320x212x12/TN-Fountain.png
     42   7274     Desktops/320x212x12/TN-MorroRock.png
     43   9933     Desktops/320x212x12/TN-NantucketFlowers.png
     44   740      Desktops/320x212x16/LIST.XML
     45   740      Desktops/320x216x16/LIST.XML
     46   8224     Ringtones/Analog1.raw
     47   8307     Ringtones/Analog2.raw
     48   5280     Ringtones/AreYouThere.raw
     49   5040     Ringtones/AreYouThereF.raw
     50   8206     Ringtones/Bass.raw
     51   12240    Ringtones/CallBack.raw
     52   16066    Ringtones/Chime.raw
     53   8160     Ringtones/Classic1.raw
     54   16080    Ringtones/Classic2.raw
     55   10800    Ringtones/ClockShop.raw
     56   2823     Ringtones/DistinctiveRingList.xml
     57   9665     Ringtones/Drums1.raw
     58   13610    Ringtones/Drums2.raw
     59   15928    Ringtones/FilmScore.raw
     60   16244    Ringtones/HarpSynth.raw
     61   8245     Ringtones/Jamaica.raw
     62   16127    Ringtones/KotoEffect.raw
     63   12776    Ringtones/MusicBox.raw
     64   8223     Ringtones/Piano1.raw
     65   15422    Ringtones/Piano2.raw
     66   9360     Ringtones/Pop.raw
     67   7200     Ringtones/Pulse1.raw
     68   4000     Ringtones/Ring1.raw
     69   4000     Ringtones/Ring2.raw
     70   4000     Ringtones/Ring3.raw
     71   4000     Ringtones/Ring4.raw
     72   4000     Ringtones/Ring5.raw
     73   4000     Ringtones/Ring6.raw
     74   4088     Ringtones/Ring7.raw
     75   495      Ringtones/Ringlist.xml
     76   10858    Ringtones/Sax1.raw
     77   14233    Ringtones/Sax2.raw
     78   16100    Ringtones/Vibe.raw
     79   8095286  apps37sccp.1-3-4-0.bin
     80   2942935  apps31.8-5-3TH1-6.sbn
     81   2935993  apps42.8-5-3TH1-6.sbn
     82   2935993  apps45.8-5-3TH1-6.sbn
     83   2935993  apps75.8-5-3TH1-6.sbn
     84   2933329  apps41.8-5-3TH1-6.sbn
     85   2933329  apps70.8-5-3TH1-6.sbn
     86   2599169  APPSH-1.3.3.SBN
     87   2591877  APPS-1.3.3.SBN
     88   2118620  SYSH-1.3.3.SBN
     89   2103754  cvm70sccp.8-5-3TH1-6.sbn  [invalid checksum]
     90   2101414  cvm41sccp.8-5-3TH1-6.sbn  [invalid checksum]
     91   2100804  cvm45sccp.8-5-3TH1-6.sbn  [invalid checksum]
     92   2100554  cvm75sccp.8-5-3TH1-6.sbn  [invalid checksum]
     93   2100286  cvm31sccp.8-5-3TH1-6.sbn  [invalid checksum]
     94   2099070  cvm42sccp.8-5-3TH1-6.sbn  [invalid checksum]
     95   2083047  SYS-1.3.3.SBN  [invalid checksum]
     96   1939872  WLANH-1.3.3.SBN  [invalid checksum]
     97   1906272  SCCP69xx.8-5-3-0.zz  [invalid checksum]
     98   1892036  GUIH-1.3.3.SBN  [invalid checksum]
     99   1887312  jar75sccp.8-5-3TH1-6.sbn  [invalid checksum]
     100   1882934  jar45sccp.8-5-3TH1-6.sbn  [invalid checksum]
     101   1848343  GUI-1.3.3.SBN  [invalid checksum]
     102   1828410  jar70sccp.8-5-3TH1-6.sbn  [invalid checksum]
     103   1756328  jar42sccp.8-5-3TH1-6.sbn  [invalid checksum]
     104   1628021  jar41sccp.8-5-3TH1-6.sbn  [invalid checksum]
     105   1616425  jar31sccp.8-5-3TH1-6.sbn  [invalid checksum]
     106   1379535  WLAN-1.3.3.SBN  [invalid checksum]
     107   939293   TNUXH-1.3.3.SBN  [invalid checksum]
     108   896477   TNUX-1.3.3.SBN  [invalid checksum]
     109   537925   dsp41.8-5-3TH1-6.sbn  [invalid checksum]
     110   537925   dsp70.8-5-3TH1-6.sbn  [invalid checksum]
     111   524969   cnu45.8-5-3TH1-6.sbn  [invalid checksum]
     112   524917   cnu42.8-5-3TH1-6.sbn  [invalid checksum]
     113   524876   cnu75.8-5-3TH1-6.sbn  [invalid checksum]
     114   503753   cnu31.8-5-3TH1-6.sbn  [invalid checksum]
     115   500084   cnu70.8-5-3TH1-6.sbn  [invalid checksum]
     116   499644   cnu41.8-5-3TH1-6.sbn  [invalid checksum]
     117   496521   music-on-hold.au  [invalid checksum]
     118   340615   dsp31.8-5-3TH1-6.sbn  [invalid checksum]
     119   340615   dsp42.8-5-3TH1-6.sbn  [invalid checksum]
     120   340615   dsp45.8-5-3TH1-6.sbn  [invalid checksum]
     121   340615   dsp75.8-5-3TH1-6.sbn  [invalid checksum]
     122   264368   DSP69xx.0-0-0-3.zz  [invalid checksum]
     123   165355   B016-1-0-3.SBN  [invalid checksum]
     124   146463   B015-1-0-3.SBN  [invalid checksum]
     125   44896    BOOT69xx.0-0-0-14.zz  [invalid checksum]
     126   11601    CME-8-0-Full-Readme-v.1.0.txt  [invalid checksum]
     127   5134     7970-71-75-Background-readme-v1.txt  [invalid checksum]
     128   1916     MISC-1.3.3.SBN  [invalid checksum]
     129   4118     GUI/admin_user.html  [invalid checksum]
     130   677820   GUI/admin_user.js  [invalid checksum]
     131   1029     GUI/CiscoLogo.gif  [invalid checksum]
     132   639      GUI/CME_GUI_README.TXT  [invalid checksum]
     133   953      GUI/Delete.gif  [invalid checksum]
     134   16344    GUI/DOM.JS  [invalid checksum]
     135   864      GUI/downarrow.gif  [invalid checksum]
     136   6315     GUI/ephone_admin.html  [invalid checksum]
     137   4558     GUI/LOGOHOME.GIF  [invalid checksum]
     138   3978     GUI/normal_user.html  [invalid checksum]
     139   78428    GUI/normal_user.js  [invalid checksum]
     140   1347     GUI/Plus.gif  [invalid checksum]
     141   843      GUI/SXICONAD.GIF  [invalid checksum]
     142   174      GUI/Tab.gif  [invalid checksum]
     143   2496     GUI/telephony_service.html  [invalid checksum]
     144   870      GUI/UPARROW.GIF  [invalid checksum]
     145   10230    GUI/xml-test.html  [invalid checksum]
     146   3412     GUI/xml.template  [invalid checksum]
     147   12       OS79XX.txt
     148   130552   P00308010200.bin
     149   461      P00308010200.loads
     150   708448   P00308010200.sb2
     151   130956   P00308010200.sbn
     152   703535   cmterm-7940-7960-sccp.8-1-2.cop.sgn
    [239789964 bytes used, 281983088 available, 521773052 total]
    509544K bytes of ATA CompactFlash (Read/Write)
    RtrPod2#show telephony-service tftp-bindings
    tftp-server system:/its/united_states/7960-tones.xml alias United_States/7960-tones.xml
    tftp-server system:/its/united_states/7960-font.xml alias English_United_States/7960-font.xml
    tftp-server system:/its/united_states/7960-font.xml alias English_United_States/7920-font.xml
    tftp-server system:/its/united_states/7960-dictionary.xml alias English_United_States/7960-dictionary.xml
    tftp-server system:/its/united_states/7960-kate.xml alias English_United_States/7960-kate.xml
    tftp-server system:/its/united_states/7960-kate.xml alias English_United_States/7920-kate.xml
    tftp-server system:/its/united_states/SCCP-dictionary.xml alias English_United_States/SCCP-dictionary.xml
    tftp-server system:/its/SEPDEFAULT.cnf alias SEPDefault.cnf
    tftp-server system:/its/vrf1/XMLDefault.cnf.xml alias XMLDefault.cnf.xml

  • I can't open .xml files from a CD using firefox. They open OK with IP, but not Firefox.

    the .xml files are on a cd, when using MS Internet Explorer they open OK, with Firefox set as defasult browser I get a message saying unable to open <filename>

    I've compaired two machines that have had this issue. One I fixed by simply reinstalling v9.3.3 off the Adobe Site. Once fixed I compaired the Registry Settings to the one that was still broken. I found that a registry setting was missing in HKEY_CLASSES_ROOT\SOFTWARE\Adobe\Acrobat. All you have to do is right click on Acrobat, select NEW --> KEY, and call it EXE. Select the newly created folder, and in the right pane, right click, select NEW --> STRING VALUE. Double click the newly created string and under the Value Data: copy and paste the following line including the qoutations. "C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe" Once you are complete, close IE and reopen it and try and open a Adobe Reader File.
    If you want the easier method you can also copy and paste the following code into WordPad and just change the file extention to .REG
    Then all you have to do is double click the file and it will insert it into the registry automatically.
    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\SOFTWARE\Adobe\Acrobat\Exe]
    @="\"C:\\Program Files\\Adobe\\Reader 9.0\\Reader\\AcroRd32.exe\""
    Hope this helps,
       Ed L.

  • Downloading and displaying xml file

    Hai,
    Can anybody help me??
    My problem is :
    I want to create and display an XML file once i run my program in background.My display would be in internet explorer.
    Note that i could not use GUI_DOWNLOAD, because my execution is in background.I am looking for the one to replace GUI_DOWNLOAD.
    I used OPEN DATASET statement, but the file, which is opening is not in XML format. it is displaying only in SAP. I want the display in explorer.
    My requirement is urgent...
    Hope u will respond.
    Regs
    Gransen

    Hi Buddy...try with class <b>CL_GUI_FRONTEND_SERVICES</b>. Goto SE24 and type the class mentioned above. In this class you can find a method called <b>GUI_DOWNLOAD</b>.
    If it is not working try
    <b>CALL TRANSFORMATION</b>
    call transformation (`ID`) source (your internal table) result XML xml_string.
    Kindly reward points if you find it useful.
    Regards,
    Satyesh T

  • How to disable config.xml file reloading

    Hi,
    I changed the value of PreferWebInfClasses in my config.xml with the weblogic.admin SET command. I restart my saerver, everything works fine... But then, two/three minutes after deploying my web app, I got a <Configuration changes for domain saved to the repository.> in my weblogic.log and the config.xml file is restored from I don't know where without the PreferWebInfClasses set to true.
    Anyone has an Idea ?
    Thanks in advance,
    Regis

    Are you using 6.1sp3 or 7.0?
    Is there any reason why u r using SET Command
    You can enable this option via console. This will persist the property
    Regis <[email protected]> wrote:
    Hi,
    I changed the value of PreferWebInfClasses in my config.xml with the
    weblogic.admin SET command. I restart my saerver, everything works fine...
    But then, two/three minutes after deploying my web app, I got a <Configuration
    changes for domain saved to the repository.> in my weblogic.log and
    the config.xml file is restored from I don't know where without the
    PreferWebInfClasses set to true.
    Anyone has an Idea ?
    Thanks in advance,
    Regis

Maybe you are looking for

  • How to extract  different date format in text file

    well, iam new for using regex api(regular expression), In my project i want to extract the different format of date from the text file... date format will be 3rd june 2004, 03-06-2004, june 3rd and so on.... can any body give me regular expression to

  • IOS5 Reminders Yahoo! Sync Creating Alpha/Numeric Dummy Lists

    Hi, I'm using an iPhone4 (also an iPad2) that sync's with my Yahoo! account for mail, calendar and reminders.  The defalult "Reminders" list was created just fine and i'm able to sync with it reliably.  The problem is that either the Reminders app ke

  • Problems updating from v4.2 to v4.5

    I have tried about 3 times to update to version 4.5 but everytime I try the app loader tells me that my phone is using to current version. After it said this, I went to Settings and then About and it shows that I am still using v4.2. Any help?

  • Is Anyone Having MacBook Pro Retina Display Graphics Issues?

    So, I'm wondering if anyone has been having issues with their new MacBook Pro w/ Retina Display graphics? I've installed all the updates and ran the diagnostics. Nothing appears to be wrong, but most of my animations or motions on the computer aren't

  • Upgrade Policy

    If i join creative cloud using the single app upgrade from photoshop cs6 offer, will my serial number be rendered void or will i still be able to go back to cs6 if ever i cancel my creative cloud subscription?