XML files score import?

can I use score files in XML format made with 3rd party software or does Logic only recognize Xml files from Final Cut Pro?

To edit XDCAM EX in FCP X you need to re-wrap the files to Quicktime.
First of all, do not mess with the BPAV file structure created by the camera. Leave it as is.
To re-wrap the files I use Sony's XDCAM Transfer software. (link below)
The Import command will import your media from the BPAV you select and then output as *.mov files in the folder of your choice. In the Preferences you can pick the location is outputs the files to.
These *.mov files can then be imported into FCP X and edited natively. No need to transcode.
http://pro.sony.com/bbsc/ssr/micro-xdcam/resource.downloads.bbsccms-assets-micro -xdcam-downloads-XDCAMSoftwareDownload.shtml

Similar Messages

  • Logon Error in importing XML file by import type - Schema in import Manager

    Hi,
    I am trying to import the xml file by selecting type XML Schema. I have already created an XML Schema in console  based on the XSD file from my desktop and the same is visible in dropdown of XML Schema Tab while importing.
    But I am not able to import the XML file based on the XML Schema. I got the Logon Error As : "Cannot load XML file"
    Content of the error is like -
    (Error:
    Commerror80004005 Unsepcified error
    Source=mdxml4.dll    Description= file:///C:/DOCUM...............
    The Namespace provided Differs from the schema's 'http://n............)
    Please have you inputs as this is a very critical requirement to pull the XML file based on XML schema automatically based on the ports created in console.
    Response wud be highly appreciated.
    Thanks & Rgds/Pawan

    Hi Jason,
    Thanks for your response!
    I don't mind you in taking my thread to core MDM stuff. It would be big relief for to have an response on my query.
    Actually this is a problem with respect to SRM MDM Catalog.....
    I am waiting see the following response threads based on my query..
    Thanks once again!
    Best Rgds/Pawan

  • SSMS 2012:XML File Query: Importing XML data using a CTE-Incorrect syntax near 'BLOB'?

    Hi all,
    From https://www.simple-talk.com/content/print.aspx?article=1756, I mimicked to create the following sql code to do Importing XML data using a CTE:
    ---Importing XML data using a CTE -----Ad-Hoc XML File Query--simple-talk---1020AM 27 Feb 2015
    ---query the XML Blob using a CTE (pulling from the XML file each time
    USE OPENXMLtesting1
    GO
    With XmlFile (Contents) AS (
    SELECT CONVERT (XML, BulkColumn)
    FROM OPENROWSET (BULK 'C:\XML FilesMicrosoft-Samples\books.xml', SINGLE BLOB) AS XmlData
    SELECT
    FROM XmlFile
    GO
    I got the following message:
    Msg 102, Level 15, State 1, Line 4
    Incorrect syntax near 'BLOB'.
    I have no ideas why it is incorrect in that code statment. Please kindly help, advise and respond.
    Thanks in advance,
    Scott Chang
    P. S. The books.xml file was copied from the Microsoft samples:
    <?xml version="1.0"?>
    <catalog>
    <book id="bk101">
    <author>Gambardella, Matthew</author>
    <title>XML Developer's Guide</title>
    <genre>Computer</genre>
    <price>44.95</price>
    <publish_date>2000-10-01</publish_date>
    <description>An in-depth look at creating applications
    with XML.</description>
    </book>
    <book id="bk102">
    <author>Ralls, Kim</author>
    <title>Midnight Rain</title>
    <genre>Fantasy</genre>
    <price>5.95</price>
    <publish_date>2000-12-16</publish_date>
    <description>A former architect battles corporate zombies,
    an evil sorceress, and her own childhood to become queen
    of the world.</description>
    </book>
    <book id="bk103">
    <author>Corets, Eva</author>
    <title>Maeve Ascendant</title>
    <genre>Fantasy</genre>
    <price>5.95</price>
    <publish_date>2000-11-17</publish_date>
    <description>After the collapse of a nanotechnology
    society in England, the young survivors lay the
    foundation for a new society.</description>
    </book>
    <book id="bk104">
    <author>Corets, Eva</author>
    <title>Oberon's Legacy</title>
    <genre>Fantasy</genre>
    <price>5.95</price>
    <publish_date>2001-03-10</publish_date>
    <description>In post-apocalypse England, the mysterious
    agent known only as Oberon helps to create a new life
    for the inhabitants of London. Sequel to Maeve
    Ascendant.</description>
    </book>
    <book id="bk105">
    <author>Corets, Eva</author>
    <title>The Sundered Grail</title>
    <genre>Fantasy</genre>
    <price>5.95</price>
    <publish_date>2001-09-10</publish_date>
    <description>The two daughters of Maeve, half-sisters,
    battle one another for control of England. Sequel to
    Oberon's Legacy.</description>
    </book>
    <book id="bk106">
    <author>Randall, Cynthia</author>
    <title>Lover Birds</title>
    <genre>Romance</genre>
    <price>4.95</price>
    <publish_date>2000-09-02</publish_date>
    <description>When Carla meets Paul at an ornithology
    conference, tempers fly as feathers get ruffled.</description>
    </book>
    <book id="bk107">
    <author>Thurman, Paula</author>
    <title>Splish Splash</title>
    <genre>Romance</genre>
    <price>4.95</price>
    <publish_date>2000-11-02</publish_date>
    <description>A deep sea diver finds true love twenty
    thousand leagues beneath the sea.</description>
    </book>
    <book id="bk108">
    <author>Knorr, Stefan</author>
    <title>Creepy Crawlies</title>
    <genre>Horror</genre>
    <price>4.95</price>
    <publish_date>2000-12-06</publish_date>
    <description>An anthology of horror stories about roaches,
    centipedes, scorpions and other insects.</description>
    </book>
    <book id="bk109">
    <author>Kress, Peter</author>
    <title>Paradox Lost</title>
    <genre>Science Fiction</genre>
    <price>6.95</price>
    <publish_date>2000-11-02</publish_date>
    <description>After an inadvertant trip through a Heisenberg
    Uncertainty Device, James Salway discovers the problems
    of being quantum.</description>
    </book>
    <book id="bk110">
    <author>O'Brien, Tim</author>
    <title>Microsoft .NET: The Programming Bible</title>
    <genre>Computer</genre>
    <price>36.95</price>
    <publish_date>2000-12-09</publish_date>
    <description>Microsoft's .NET initiative is explored in
    detail in this deep programmer's reference.</description>
    </book>
    <book id="bk111">
    <author>O'Brien, Tim</author>
    <title>MSXML3: A Comprehensive Guide</title>
    <genre>Computer</genre>
    <price>36.95</price>
    <publish_date>2000-12-01</publish_date>
    <description>The Microsoft MSXML3 parser is covered in
    detail, with attention to XML DOM interfaces, XSLT processing,
    SAX and more.</description>
    </book>
    <book id="bk112">
    <author>Galos, Mike</author>
    <title>Visual Studio 7: A Comprehensive Guide</title>
    <genre>Computer</genre>
    <price>49.95</price>
    <publish_date>2001-04-16</publish_date>
    <description>Microsoft Visual Studio 7 is explored in depth,
    looking at how Visual Basic, Visual C++, C#, and ASP+ are
    integrated into a comprehensive development
    environment.</description>
    </book>
    </catalog>

    I found the mistakes I made and I corrected them. The newly revised/corrected code is:
    USE OPENXMLtesting1
    GO
    With XmlFile (Contents) AS (
    SELECT CONVERT (XML, BulkColumn)
    FROM OPENROWSET (BULK 'C:\Temp\books.xml', SINGLE_BLOB) AS XmlData
    SELECT *
    FROM XmlFile
    GO
    It worked: Results
         Contents
    1  <catalog><book.id="bk101"><author>Gambardella.M...
    If I clicked on this, I got a listing of the whole book.xml!!  I don't know what it means.  Please comment and respond.
    Thanks,
    Scott Chang

  • How to apply XSLT to XML file while importing XML data using XSU plsql API

    I need to load XML file with nested repeating elements into Oracle tables and I am using XSU PLSQL API utility package dbms_xmlSave.insertXML. Can use XMLGen package also!!
    I found out through documentation that I need to have XML file with ROWSET/ROW tags around the elements. As I have no control of XML file coming from external source, so I wish to apply XSLT to XML. I found setXSLT/setStylesheet procedures but it's not working as expected.
    Can you help me with some sample code for the purpose.
    Thanks

    I'm new at XML and XSL as well, but maybe the following code I built can help:
    CREATE OR REPLACE PACKAGE Xml_Pkg AS
    /* this record and table type are used for the transformTags procedure */
    TYPE TagTransform_t IS RECORD (
    old_tag VARCHAR2(255),
    new_tag VARCHAR2(255) );
    TYPE TagTransformList_t IS TABLE OF TagTransform_t INDEX BY BINARY_INTEGER;
    /* use DBMS_OUTPUT to print out a CLOB */
    PROCEDURE printClobOut(p_clob IN OUT NOCOPY CLOB);
    /* using a list of old/new tags, transform all old into new in XML2 */
    PROCEDURE transformTags(
    p_List TagTransformList_t,
    p_XML1 IN OUT NOCOPY CLOB,
    p_XML2 IN OUT NOCOPY CLOB);
    END Xml_Pkg;
    CREATE OR REPLACE PACKAGE BODY Xml_Pkg AS
    /* print a CLOB using newlines */
    PROCEDURE printClobOut(p_clob IN OUT NOCOPY CLOB) IS
    buffer_overflow EXCEPTION;
    PRAGMA EXCEPTION_INIT(buffer_overflow,-20000);
    l_offset NUMBER;
    l_len NUMBER;
    l_o_buf VARCHAR2(255);
    l_amount NUMBER; --}
    l_f_amt NUMBER := 0; --}To hold the amount of data
    l_f_amt2 NUMBER; --}to be read or that has been
    l_amt2 NUMBER := -1; --}read
    l_offset2 NUMBER;
    l_amt3 NUMBER;
    l_chk NUMBER := 255;
    BEGIN
    l_len := DBMS_LOB.GETLENGTH(p_clob);
    l_offset := 1;
    WHILE l_len > 0 LOOP
    l_amount := DBMS_LOB.INSTR(p_clob,CHR(10),l_offset,1);
    --Amount returned is the count from the start of the file,
    --not from the offset.
    IF l_amount = 0 THEN
    --No more linefeeds so need to read remaining data.
    l_amount := l_len;
    l_amt2 := l_amount;
    ELSE
    l_f_amt2 := l_amount; --Store position of next LF
    l_amount := l_amount - l_f_amt; --Calc position from last LF
    l_f_amt := l_f_amt2; --Store position for next time
    l_amt2 := l_amount - 1; --Read up to but not the LF
    END IF;
    /* divide the read into 255 character chunks for dbms_output */
    IF l_amt2 != 0 THEN
    l_amt3 := l_amt2;
    l_offset2 := l_offset;
    WHILE l_amt3 > l_chk LOOP
    DBMS_LOB.READ(p_clob,l_chk,l_offset2,l_o_buf);
    DBMS_OUTPUT.PUT_LINE(l_o_buf);
    l_amt3 := l_amt3 - l_chk;
    l_offset2 := l_offset2 + l_chk;
    END LOOP;
    IF l_amt3 != 0 THEN
    DBMS_LOB.READ(p_clob,l_amt3,l_offset2,l_o_buf);
    DBMS_OUTPUT.PUT_LINE(l_o_buf);
    END IF;
    END IF;
    l_len := l_len - l_amount;
    l_offset := l_offset+l_amount;
    END LOOP;
    EXCEPTION
    WHEN buffer_overflow THEN
    RETURN;
    END printClobOut;
    /* shortcut "writeline" procedure for CLOB buffer writes */
    PROCEDURE wr(p_clob IN OUT NOCOPY CLOB, s VARCHAR2) IS
    BEGIN
    DBMS_LOB.WRITEAPPEND(p_clob,LENGTH(s)+1,s||CHR(10));
    END;
    /* the standard XSLT should include the identity template or the output XML will be malformed */
    PROCEDURE newXsltHeader(p_xsl IN OUT NOCOPY CLOB, p_identity_template BOOLEAN DEFAULT TRUE) IS
    BEGIN
    DBMS_LOB.TRIM(p_xsl,0);
    /* standard XSL header */
    wr(p_xsl,'<?xml version="1.0"?>');
    /* note that the namespace for the xsl is restricted to the w3 1999/XSL */
    wr(p_xsl,'<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">');
    IF p_identity_template THEN
    /* create identity template (transfers all "other" nodes) */
    wr(p_xsl,' <xsl:template match="node()">');
    wr(p_xsl,' <xsl:copy>');
    wr(p_xsl,' <xsl:apply-templates/>');
    wr(p_xsl,' </xsl:copy>');
    wr(p_xsl,' </xsl:template>');
    END IF;
    END newXsltHeader;
    PROCEDURE newXsltFooter(p_xsl IN OUT NOCOPY CLOB) IS
    BEGIN
    /* standard xsl footer */
    wr(p_xsl,'</xsl:stylesheet>');
    END newXsltFooter;
    /* using the stylesheet in p_xsl, transform p_XML1 into p_XML2 */
    PROCEDURE transformXML(p_xsl IN OUT NOCOPY CLOB, p_XML1 IN OUT NOCOPY CLOB, p_XML2 IN OUT NOCOPY CLOB) IS
    l_parser XMLPARSER.Parser;
    l_doc XMLDOM.DOMDocument;
    l_xsl_proc XSLPROCESSOR.Processor;
    l_xsl_ss XSLPROCESSOR.Stylesheet;
    BEGIN
    /* parse XSL CLOB */
    l_parser := XMLPARSER.newParser;
    BEGIN
    XMLPARSER.showWarnings(l_parser,TRUE);
    XMLPARSER.parseClob(l_parser,p_xsl);
    l_doc := XMLPARSER.getDocument(l_parser);
    XMLPARSER.freeParser(l_parser);
    EXCEPTION
    WHEN OTHERS THEN
    XMLPARSER.freeParser(l_parser);
    RAISE;
    END;
    /* get Stylesheet from DOMDOC */
    l_xsl_ss := XSLPROCESSOR.newStylesheet(l_doc,NULL);
    BEGIN
    /* parse XML1 CLOB */
    l_parser := XMLPARSER.newParser;
    BEGIN
    XMLPARSER.showWarnings(l_parser,TRUE);
    XMLPARSER.parseClob(l_parser,p_xml1);
    l_doc := XMLPARSER.getDocument(l_parser);
    XMLPARSER.freeParser(l_parser);
    EXCEPTION
    WHEN OTHERS THEN
    XMLPARSER.freeParser(l_parser);
    RAISE;
    END;
    /* process doc to XML2 */
    l_xsl_proc := XSLPROCESSOR.newProcessor;
    BEGIN
    XSLPROCESSOR.processXSL(l_xsl_proc, l_xsl_ss, l_doc, p_xml2);
    XSLPROCESSOR.freeProcessor(l_xsl_proc);
    EXCEPTION
    WHEN OTHERS THEN
    XSLPROCESSOR.freeProcessor(l_xsl_proc);
    RAISE;
    END;
    XSLPROCESSOR.freeStylesheet(l_xsl_ss);
    EXCEPTION
    WHEN OTHERS THEN
    XSLPROCESSOR.freeStylesheet(l_xsl_ss);
    RAISE;
    END;
    END transformXML;
    /* transform XML1 into XML2 using list p_List of old/new tags */
    PROCEDURE transformTags(p_List TagTransformList_t, p_XML1 IN OUT NOCOPY CLOB, p_XML2 IN OUT NOCOPY CLOB) IS
    l_xsl CLOB;
    BEGIN
    /* create XSL CLOB */
    DBMS_LOB.CREATETEMPORARY(l_xsl,TRUE);
    /* create standard header with identity template */
    newXsltHeader(l_xsl,TRUE);
    /* create one template for each node translation */
    FOR i IN 1..p_List.COUNT LOOP
    wr(l_xsl,' <xsl:template match="'||p_List(i).old_tag||'">');
    wr(l_xsl,' <'||p_List(i).new_tag||'><xsl:apply-templates/></'||p_List(i).new_tag||'>');
    wr(l_xsl,' </xsl:template>');
    END LOOP;
    /* create standard footer */
    newXsltFooter(l_xsl);
    -- dbms_output.put_line('l_xsl:');
    -- dbms_output.put_line('--------------------');
    -- printClobOut(l_xsl);
    -- dbms_output.put_line('--------------------');
    transformXML(l_xsl, p_XML1, p_XML2);
    DBMS_LOB.FREETEMPORARY(l_xsl);
    /* -- unit testing
    set serveroutput on size 100000
    Declare
    queryContext DBMS_XMLQUERY.ctxType;
    xList XML_PKG.TagTransformList_t;
    xmlCLOB CLOB;
    xmlCLOB2 CLOB;
    Begin
    DBMS_LOB.CREATETEMPORARY(xmlCLOB,true);
    DBMS_LOB.CREATETEMPORARY(xmlCLOB2,true);
    xList(1).old_tag := 'A';
    xList(1).new_tag := 'MyTag1';
    xList(2).old_tag := 'B';
    xList(2).new_tag := 'MyTag2';
    queryContext := DBMS_XMLQUERY.newContext('Select * from t');
    xmlCLOB := DBMS_XMLQUERY.getXML(queryContext);
    DBMS_XMLQuery.closeContext(queryContext);
    dbms_output.put_line('xmlCLOB:');
    dbms_output.put_line('--------------------');
    XML_PKG.printClobOut(xmlCLOB);
    dbms_output.put_line('--------------------');
    xml_pkg.transformTags(xList,xmlCLOB,xmlCLOB2);
    dbms_output.put_line('xml2CLOB:');
    dbms_output.put_line('--------------------');
    XML_PKG.printClobOut(xmlCLOB2);
    dbms_output.put_line('--------------------');
    DBMS_LOB.FREETEMPORARY(xmlCLOB);
    DBMS_LOB.FREETEMPORARY(xmlCLOB2);
    End;
    END transformTags;
    END Xml_Pkg;

  • Finding the XML file when importing ENH4 from SAP DVD

    Hello,
    We are installing the ENH4 from the SAP DVD 51033594, but in the DVD there is no xml file. How can I get one? Our Solution Manager is not yet properly configured as the installation is new.
    Thanks and best regards,
    Ana

    Hi Ana,
    You need to configure your system in Solution Manager.
    Then when you access Maintenance Optimizer, solman will automatically detect the required patches/DVD's needed for your upgrade.
    The XML file generated by solman is MANDATORY.
    Thanks,
    Saba.

  • Importing xml file from FCP 7.0 to 6.0

    Hi all.
    I am sure many of you have figured this out, but after a few grey hairs today, I was finally able to open a clients project done in FCP 7.0 into my 6.0.
    In text editor you need to open the xml file and change: <xmel version= "5"> to "4". Then save as an xml file and import into FCP. Everything came across fine including renders, effects, etc.
    Cheers.

    GOOD TIP! And to add to it:
    #46 - Supported XML versions
    Shane's Stock Answer #46 - Final Cut Pro and versions of XML it supports
    FCP4 supports XML version 1 only
    FCP5 supports XML versions 1 and 2
    FCP5.1 supports XML versions 1, 2 and 3
    FCP6 supports XML versions 1, 2, 3 and 4
    FCP7 supports XML versions 1, 2, 3, 4 and 5.
    Shane

  • Import a Workflow using an XML file in Tcode SWDD

    Hello,
    I have a problem in the workflow builder- Tcode SWDD:
    I am trying to copy workflow from one system (ECC 5.0) to another one (ECC 6.0) ? I use transaction Workflow-> Import/export->Export to xml files and import the xml files again, but the new workflow is different from the original one. The steps do not have the same numbering and the Workflow graphic is far from being identical to the old one.
    Could someone explain me the reason of this problem in detail and how it could be solved? It's really a big workflow and would need to avoid creating it manually.
    Thank you very much for your help.
    Best regards,
    Sylvain

    Hello,
    The main problem that I had with the steps is that most names were not the same as the old Workflow. Instead of having the correct description I had some coding commands which created a bunch of errors when I tried to perform the syntax check.
    I believe you are right. In the new system (ECC 6.0) I do not have the Business Engineering objects like the tasks "TS....". I will create them first and try the Workflow import again after.
    I will let you know if it corrected the error or not.
    Best regards,
    Sylvain

  • Can XML import other XML files?

    Is it possible for a XML file to import other XML files? The idea is, to have several separate data in XML files and construct one big XML out of the many smaller XML files. Is there a "import" or "include" tag in XML?

    xml files could be merged with the xslt document() function.

  • Premiere Pro CC "general error" when importing FCP 7 xml file

    I have edited a film using Final Cut Pro 7 on a Mac which is not mine (and now several 100 kms away). I would like to do some more editing on the project using Final Cut Pro CC  (trial version, to test if it does everything I need it to do before buying). I exported my film as an xml file to import into Premiere, but Premiere now tells me it cannot import because of a "general error". (I also have Premiere CS4 on my computer which crashes when I try to import the xml file - but that has some problems with reading my image material anyway, which is why I wanted to try switching to Premiere CC). Any hints on how I could solve this problem (preferably without getting the Mac back which I can't right now) would be much appreciated. Many thanks!

    No ideas? I found some entries on this issue for earlier versions of Premiere which in part included advice to update to a newer version - which in my case clearly does not apply. So any ideas for possible solutions would be great.

  • Source XML File Issue....

    Hi All,
    I am importing a source xml file using import manager.But the Number of root nodes changes in the source file changes when i import a xml file with only 1 record and multiple record.So I am unable to maintain a same map for the same xml file with different records.I guess something is wrong in my xml structure.
    This is my source xml file:
      >><?xml version="1.0" encoding="utf-8" ?>
      >><ns1:MT_MDM_003_Shipping xmlns:ns1="urn:HaworthInc-com:Customer_Master">
      >><Record>
      >><Sales_Organization>1001</Sales_Organization>
      >><Distribution_Channel>00</Distribution_Channel>
      >></Record>
      >><Record>
      >><Sales_Organization>1001</Sales_Organization>
      >><Distribution_Channel>00</Distribution_Channel>
      >></Record>
      >></ns1:MT_MDM_003_Shipping>
    If i use the above file in the import manager I am seeing the Source dropdown (Source Hierarchy) where we select the source file as
    >>None
    >>ns1:MT_MDM_003_Shipping
    >>Records
    If i use the same import file with just 1 record  as follows
    >><?xml version="1.0" encoding="utf-8" ?>
      >><ns1:MT_MDM_003_Shipping xmlns:ns1="urn:HaworthInc-com:Customer_Master">
      >><Record>
      >><Sales_Organization>1001</Sales_Organization>
      >><Distribution_Channel>00</Distribution_Channel>
      >></Record>
      >></ns1:MT_MDM_003_Shipping>
    If i use the above file in the import manager Now I am seeing the Source dropdown (Source Hierarchy) where we select the source file as only.Records is missing
    >>None
    >>ns1:MT_MDM_003_Shipping
    >>Records (This is missing now)
    Since I am missing the Records I have to create the different map for the same file.
    Is there anything missing in the XML???Or the XML structure is wrong????
    Any Help greatly appreciated.

    Thanks for the reply,
    I am running into this error now,when I use schema gainst the xml file...
    Logon Error: Cannot load xml file
    Error:
    COM error 80004005 Unspecified error
    source = msxml4.dll Description = file:///c:/.........
    The "namespace provided differs from the schema's 'urn:Test-com:Customer_Master' targetNamespace
    XML File:
    <?xml version="1.0" encoding="UTF-8" ?>
    <ns0:Import_File_Format_008_Correspondence xmlns:ns0="urn:Test-com:Customer_Master">
    <Record>
      <Customer_Nr>ZTEST001</Customer_Nr>
      <Company_Code>1001</Company_Code>
      <Acctg_clerk>03</Acctg_clerk>
      <Bank_statement>1</Bank_statement>
      <Acct_at_cust>ZZZZ1234</Acct_at_cust>
      <Decentralized_processing>x</Decentralized_processing>
      <Coll_Invoice_variant>z</Coll_Invoice_variant>
      <Customer_user>ZCUST USER</Customer_user>
      <Actclk_telno>CLERK TEL NR</Actclk_telno>
      <Clerks_fax>12345678</Clerks_fax>
      <Clerks_internet>clerk internet</Clerks_internet>
      <Account_memo>account memo</Account_memo>
      <Dunn_Procedure>1000</Dunn_Procedure>
      <Dunning_block>A</Dunning_block>
      <Dunnrecipient>CP3016</Dunnrecipient>
      <Legdunnproc>04/22/2008</Legdunnproc>
      <Last_dunned>04/21/2008</Last_dunned>
      <Dunning_level />
      <Dunning_clerk>06</Dunning_clerk>
      </Record>
      </ns0:Import_File_Format_008_Correspondence>
    XSD File:
      <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns="urn:Test-com:Customer_Master" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Test-com:Customer_Master">
      <xsd:element name="MT_MDM_008_Correspondence" type="DT_MDM_008_Correspondence" />
    <xsd:complexType name="DT_MDM_008_Correspondence">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">51f4f670330e11ddabec00112539c3ab</xsd:appinfo>
      </xsd:annotation>
    <xsd:sequence>
    <xsd:element name="Record" minOccurs="0" maxOccurs="unbounded">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb01c4111ddabe302004c4f4f50</xsd:appinfo>
      </xsd:annotation>
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="Customer_Nr" type="xsd:string">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb11c4111ddccfa02004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Company_Code" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb21c4111dd818902004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Acctg_clerk" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb31c4111dda34102004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Bank_statement" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb41c4111dda01702004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Acct_at_cust" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb51c4111dd817202004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Decentralized_processing" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb61c4111ddb52602004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Coll_Invoice_variant" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb71c4111ddca1902004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Customer_user" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb81c4111ddb7a302004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Actclk_telno" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bb91c4111ddca3502004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Clerks_fax" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bba1c4111ddaad102004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Clerks_internet" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bbb1c4111dd956902004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Account_memo" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bbc1c4111ddb20902004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Dunn_Procedure" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bbd1c4111dd87e302004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Dunning_block" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bbe1c4111dd9aaa02004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Dunnrecipient" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bbf1c4111dda84302004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Legdunnproc" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bc01c4111ddae5402004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Last_dunned" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bc11c4111dd82e802004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Dunning_level" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bc21c4111ddc26a02004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
    <xsd:element name="Dunning_clerk" type="xsd:string" minOccurs="0">
    <xsd:annotation>
      <xsd:appinfo source="http://sap.com/xi/TextID">bcb36bc31c4111ddce7f02004c4f4f50</xsd:appinfo>
      </xsd:annotation>
      </xsd:element>
      </xsd:sequence>
      </xsd:complexType>
      </xsd:element>
      </xsd:sequence>
      </xsd:complexType>
      </xsd:schema>

  • SQL XML-Selection-Performance in one big xml-file

    Hi!
    I'm a xml-db novice and have now my trouble with a 30 MB XML-File like this:
    <root>
    <element>
    <value amount="10.00"/>
    </element>
    <element>
    <value amount="20.00"/>
    </element>
    12000 elements following
    </root>
    The xml-file i imported in an xmltype-Object-Table.
    Now i wanted to make a checksum over all elements. I took that query i found in OTN:
    select sum(to_number(extractValue(value(list_of_values),'//@amount'),'9999999999.99'))
    from xml_table t,
    table(xmlsequence(extract(value(t),'//root/element/value'))) list_of_values
    This Query took a half hour! Should I create an Index? When yes, what type of index? Or is there another way to take the sum of all element-values? I can't live with that performance because i have to take some more checksums.
    Bye,
    Jens

    Hi!
    I'm a xml-db novice and have now my trouble with a 30 MB XML-File like this:
    <root>
    <element>
    <value amount="10.00"/>
    </element>
    <element>
    <value amount="20.00"/>
    </element>
    12000 elements following
    </root>
    The xml-file i imported in an xmltype-Object-Table.
    Now i wanted to make a checksum over all elements. I took that query i found in OTN:
    select sum(to_number(extractValue(value(list_of_values),'//@amount'),'9999999999.99'))
    from xml_table t,
    table(xmlsequence(extract(value(t),'//root/element/value'))) list_of_values
    This Query took a half hour! Should I create an Index? When yes, what type of index? Or is there another way to take the sum of all element-values? I can't live with that performance because i have to take some more checksums.
    Bye,
    Jens

  • XML file for illustrator

    Hi All,
    I want to create a XML file to import into illustrator.
    From my customers I get excel files with 1000+ names and membercodes.
    In illustrator I ceated a template for 24 members.
    How can I create a XML file which is compatible with Illustrator.
    Simply saving as XML from Excel doesn't de the trick...
    Hope someone can help

    here's a tool for it
    copy your data from excel into the top section, the xml formatted data will be show at the bottom, copy this data to a blank text file and save it with an xml extension...your file is ready to be imported into your illustrator file
    the page is in Portuguese but it should be self-explanatory
    http://joaofaraco.com.br/conversor/

  • Novice Question:  XML File using FTP Adapter Help Requested

    I need to create (publish) a message from an XML file that is written to a particular folder on a Win2000 machine (I intend running the adapter on the same machine). I think that the FTP adapter should be the easiest way to do this but I have only used this adapter to publish DL3-defined files, and only then on a unix platform.
    Is the FTP adapter the correct approach or is there a better way, and if it is the correct approach, can anyone point me to a sample application or pass along a sample adapter.ini so I can figure out configuring the adapter.
    Thanks
    Eric

    We use the FTP adapter for both reading and writing XML files. And it works quite OK (there are a few gliteches but nothing you cannot work around). You need to first make (find) a DTD for your XML file and import that as the AV for the message in IS (IStudio). Then you just point the adapter to the correct directory and it should work from there.
    As for better way Im not sure I'm no InterConnect expert but I dont know any other way to do it.
    Might be worth to notice (if you didn't already know) that you dont actually need FTP if it is on the local filesystems you can in the FTP adapter read from the local FS something along the lines of file:///c:/foo/bar as oposed to ftp://...
    As for adapter.ini you shouldn't need anything besids pointing the reciver to the correct directory the rest is done from IS.
    Let me know if you want more details...
    // MickeM

  • Where is the glossary .xml file found

    Hi I was trying to locate the .xml file that populates the Glossary widget so that I could copy it and create my own editable .xml file to import.
    Can anyone tell me where I would find it?
    Thanks
    Mark

    Wow!  I just tried a quick few edits and I got the same thing.  Now I did stretch the glossary down and here is a screen shot of how mine turned out.
    Try doing that and see how it works for you.
    At least it allows the student to scroll down to very bottom.
    It almost seems like there are daily changes.....

  • How i verified PG xml file uploaded.

    Hi,
    I have uploaded the PG xml file with import command. But when I go to the application, it still shows the same old file. I have asked DBA to bounce the Apache. The bounce does not work either. The import has worked for me in the past. But this week it got this problem. I heard there is some table we can check if the PG xml got uploaded or not. Anyone knows the table name? If the PG xml got issue, do I expect to see error or the old page?
    The metalink used very friendly to find the table information. But the new version really sucks. I can not find where I can get the table info.
    Thanks.

    Hi,
    It is really difficult to find any information using jdr table, that is why oracle has provded some API under JDR_UTILS Package. So use following PL/SQL bloack to check your requirement:
    Begin
    Jdr_utils.printdocument('Compelete path of your xml Page');
    End;
    Hope this will help.
    Regards,
    Reetesh Sharma

Maybe you are looking for

  • Attachments not saving to Downloads

    For some reason when I push the "save" button to send attachments to the Downloads folder they are not going there. I can open attachments fine, and always just saved them to the Downloads folder on the dock - and opened them from there, but now they

  • Error code: 1 download CC desktop app

    I wanted to download some trials but i can't bc  i can't download and install properly CC app desktop. I've got windows 8.1. What do i do?

  • Create Data Source Module using OMB

    I am not seeing how to create Data Source modules using OMB. I am assuming there is a property of OMBCREATE ORACLE_MODULE that I am overlooking. If anyone can provide assistance, it would be greatly appreciated. Thanks, craig

  • How do you create multile devices on on Windows Vista Computer?

    How does one create multiple devices for the many ipod/ipad products in one household. Each serial number should have it's own device name! 

  • Problem with opening page

    Hi, I have problem with open IR,ID in XI. I can able to logon the xi server through log on pad. But i am unable to open IR,ID, SLD and Runtime work bench. Can u help me this. Thanks and regards manoj