<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: DTD conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432101#M206459</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all who has helped in fixing up this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Dec 2006 11:01:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-13T11:01:29Z</dc:date>
    <item>
      <title>DTD conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432096#M206454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've done an XML encoding, but need to convert it into DTD format.What do mean by DTD format? Can anyone give me sample program for XML conversion in DTD format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 04:41:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432096#M206454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-23T04:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: DTD conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432097#M206455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can find ur solution in &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;http://www.sapgenie.com/mysap/xml.htm&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 04:53:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432097#M206455</guid>
      <dc:creator>sridharreddy_kondam</dc:creator>
      <dc:date>2006-06-23T04:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: DTD conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432098#M206456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;The purpose of a DTD is to define the legal building blocks of an XML document. It defines the document structure with a list of legal elements. A DTD can be declared inline in your XML document, or as an external reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal DTD&lt;/P&gt;&lt;P&gt;This is an XML document with a Document Type Definition: (Open it in IE5, and select view source)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0"?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE note [&lt;/P&gt;&lt;P&gt;  &amp;lt;!ELEMENT note    (to,from,heading,body)&amp;gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;!ELEMENT to      (#PCDATA)&amp;gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;!ELEMENT from    (#PCDATA)&amp;gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;!ELEMENT heading (#PCDATA)&amp;gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;!ELEMENT body    (#PCDATA)&amp;gt;&lt;/P&gt;&lt;P&gt;]&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;note&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;Don't forget me this weekend!&amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/note&amp;gt;  &lt;/P&gt;&lt;P&gt;The DTD is interpreted like this:&lt;/P&gt;&lt;P&gt;!ELEMENT note (in line 2) defines the element "note" as having four elements: "to,from,heading,body".&lt;/P&gt;&lt;P&gt;!ELEMENT to (in line 3) defines the "to" element  to be of the type "CDATA".&lt;/P&gt;&lt;P&gt;!ELEMENT from (in line 4) defines the "from" element to be of the type "CDATA"&lt;/P&gt;&lt;P&gt;and so on.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;External DTD&lt;/P&gt;&lt;P&gt;This is the same XML document with an external DTD:  (Open it in IE5, and select view source)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0"?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE note SYSTEM "note.dtd"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;note&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;Don't forget me this weekend!&amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/note&amp;gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a copy of the file "note.dtd" containing the Document Type Definition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0"?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!ELEMENT note (to,from,heading,body)&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!ELEMENT to (#PCDATA)&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!ELEMENT from (#PCDATA)&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!ELEMENT heading (#PCDATA)&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!ELEMENT body (#PCDATA)&amp;gt; &lt;/P&gt;&lt;P&gt;Why use a DTD? &lt;/P&gt;&lt;P&gt;XML provides an application independent way of sharing data. With a DTD, independent groups of people can agree to use a common DTD for interchanging data. Your application can use a standard DTD to verify that data that you receive from the outside world is valid. You can also use a DTD to verify your own data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;P&gt;MRUTYUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 04:59:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432098#M206456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-23T04:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: DTD conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432099#M206457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DTD is the Document Type Definition for the Output of IDocs in XML files. See the configuration of DTD - Document Type Definition at the sap help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/d2/69c045994448adad27d36c4154fe74/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/d2/69c045994448adad27d36c4154fe74/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;TM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 05:00:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432099#M206457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-23T05:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: DTD conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432100#M206458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A DTD is associated with a particular document via a Document Type Declaration, which is a bit of markup that appears near the start of the associated document. The declaration establishes that the document is an instance of the type defined by the referenced DTD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The declarations in a DTD are divided into an internal subset and an external subset. The declarations in the internal subset are embedded in the Document Type Declaration in the document itself. The declarations in the external subset are located in a separate text file. The external subset may be referenced via a public identifier and/or a system identifier. Programs for reading documents may not be required to read the external subset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[edit]&lt;/P&gt;&lt;P&gt;Examples&lt;/P&gt;&lt;P&gt;Here is an example of a Document Type Declaration containing both public and system identifiers:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example of a Document Type Declaration that encapsulates an internal subset consisting of a single entity declaration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE foo [ &amp;lt;!ENTITY greeting "hello"&amp;gt; ]&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All HTML 4.01 documents are expected to conform to one of three SGML DTDs. The public identifiers of these DTDs are constant and are as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-//W3C//DTD HTML 4.01//EN &lt;/P&gt;&lt;P&gt;-//W3C//DTD HTML 4.01 Transitional//EN &lt;/P&gt;&lt;P&gt;-//W3C//DTD HTML 4.01 Frameset//EN &lt;/P&gt;&lt;P&gt;The system identifiers of these DTDs, if present in the Document Type Declaration, will be URI references. System identifiers can vary, but are expected to point to a specific set of declarations in a resolvable location. SGML allows for public identifiers to be mapped to system identifiers in catalogs that are optionally made available to the URI resolvers used by document parsing software.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Document Type Definition (DTD), defined slightly differently within the XML and SGML specifications, is one of several SGML and XML schema languages, and is also the term used to describe a document or portion thereof that is authored in the DTD language. A DTD is primarily used for the expression of a schema via a set of declarations that conform to a particular markup syntax and that describe a class, or type, of SGML or XML documents, in terms of constraints on the structure of those documents. A DTD may also declare constructs that are not always required to establish document structure, but that may affect the interpretation of some documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Below links consist of more on DTD and XML examples.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://en.wikipedia.org/wiki/Document_Type_Definition" target="test_blank"&gt;http://en.wikipedia.org/wiki/Document_Type_Definition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.w3schools.com/dtd/default.asp" target="test_blank"&gt;http://www.w3schools.com/dtd/default.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.xmlfiles.com/examples/" target="test_blank"&gt;http://www.xmlfiles.com/examples/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Shakuntala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 06:10:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432100#M206458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-23T06:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: DTD conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432101#M206459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all who has helped in fixing up this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 11:01:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dtd-conversion/m-p/1432101#M206459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T11:01:29Z</dc:date>
    </item>
  </channel>
</rss>

