<?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: Differeence between ABAP dictionary and Data dictionary? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561634#M857018</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out this related thread ... hope it helps&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4941524"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Mar 2008 04:54:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-21T04:54:06Z</dc:date>
    <item>
      <title>Differeence between ABAP dictionary and Data dictionary?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561633#M857017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one help me out?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data dictionary as far as i know consists of all the definitions of the objects / components, which are used in application development.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where as ABAP dictionary is logical representation of all the data available in database using all the definitions in Data dictionary in application development.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there are any other differences or whether both are same. can u update me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank U.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Lakshmi Narayana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 02:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561633#M857017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T02:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Differeence between ABAP dictionary and Data dictionary?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561634#M857018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out this related thread ... hope it helps&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4941524"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 04:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561634#M857018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T04:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Differeence between ABAP dictionary and Data dictionary?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561635#M857019</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;STRONG&gt;ABAP 4 data dictionary&lt;/STRONG&gt; describes the logical structures of the objects used in application development and shows how they are mapped to the underlying relational database in tables/views. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; --&amp;gt;The ABAP Dictionary contains: &lt;/P&gt;&lt;P&gt;table type &lt;/P&gt;&lt;P&gt;tables &lt;/P&gt;&lt;P&gt;views &lt;/P&gt;&lt;P&gt;data elements &lt;/P&gt;&lt;P&gt;domains (value ranges) &lt;/P&gt;&lt;P&gt;structures (hierarchy) &lt;/P&gt;&lt;P&gt;lock objects &lt;/P&gt;&lt;P&gt;online help information &lt;/P&gt;&lt;P&gt;search help information &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each field in the DD is based on a built-in DD data type or a Data Element (which in turn is based on a Domain). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Data Element contains the more semantical information (text and documentation). &lt;/P&gt;&lt;P&gt;The Domain defines the basic technical attributes: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data type, length, number of decimals -- essential for dealing with fields correctly and building nice user interfaces that are aware of the field attributes. &lt;/P&gt;&lt;P&gt;--&amp;gt;Check table -- a separate table such as country name associated with a country code. &lt;/P&gt;&lt;P&gt;--&amp;gt;Fixed values -- information about codes stored in the Domain (not in a separate table). &lt;/P&gt;&lt;P&gt;--&amp;gt;Conversion exit -- in SAPGUI to translate between internal and external representations of data, because most BAPIs return and expect the internal format, which makes little to no sense to users. &lt;/P&gt;&lt;P&gt;--&amp;gt;Texts and documentation: SAP stores multiple texts per field and also extended documentation in many cases. This documentation is available in all installed languages and therefore an easy way to provide multi-lingual capabilities in applications. &lt;/P&gt;&lt;P&gt;--&amp;gt;Mixed case support. Indicates to the users which fields are uppercase only. Many text fields in SAP are uppercase only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data Dictionary:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; --&amp;gt;data dictionary is a reserved space within a database which is used to store information about the database itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&amp;gt;A data dictionary may contain information such as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database design information &lt;/P&gt;&lt;P&gt;Stored SQL procedures &lt;/P&gt;&lt;P&gt;User permissions &lt;/P&gt;&lt;P&gt;User statistics &lt;/P&gt;&lt;P&gt;Database process information &lt;/P&gt;&lt;P&gt;Database growth statistics &lt;/P&gt;&lt;P&gt;Database performance statistics &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vineela.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 05:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561635#M857019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T05:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Differeence between ABAP dictionary and Data dictionary?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561636#M857020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;refer to the link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapfans.com/forums/viewtopic.php?p=180342&amp;amp;sid=6c72a0c13ee5b7f868e7afea70b31272" target="test_blank"&gt;http://www.sapfans.com/forums/viewtopic.php?p=180342&amp;amp;sid=6c72a0c13ee5b7f868e7afea70b31272&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCDWBDIC/BCDWBDIC.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCDWBDIC/BCDWBDIC.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sreelakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 05:05:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561636#M857020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T05:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Differeence between ABAP dictionary and Data dictionary?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561637#M857021</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;Data Dictionary and the ABAP  dictionary are one and the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;They  contains:&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;table type &lt;/P&gt;&lt;P&gt;tables &lt;/P&gt;&lt;P&gt;views &lt;/P&gt;&lt;P&gt;data elements &lt;/P&gt;&lt;P&gt;domains (value ranges) &lt;/P&gt;&lt;P&gt;structures (hierarchy) &lt;/P&gt;&lt;P&gt;lock objects &lt;/P&gt;&lt;P&gt;online help information &lt;/P&gt;&lt;P&gt;search help information &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kavitha..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 05:20:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561637#M857021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T05:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: Differeence between ABAP dictionary and Data dictionary?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561638#M857022</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;Datadictionary : Is  acentral source of  data in a data management system. Its main function is to support the creation and management of data definitions.  &lt;/P&gt;&lt;P&gt;In a data management system, the principal functions performed by the data dictionary are&lt;/P&gt;&lt;P&gt;- Management of data definitions&lt;/P&gt;&lt;P&gt;- Provision of information for evaluation&lt;/P&gt;&lt;P&gt;- Support for software development&lt;/P&gt;&lt;P&gt;- Support form documentation&lt;/P&gt;&lt;P&gt;- Ensuring that the data definitions are flexible and up-to-date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP data dictionary : ABAP 4 data dictionary describes the logical structures of the objects used in application development and shows how they are mapped to the underlying relational database in tables/views. &lt;/P&gt;&lt;P&gt;Features of ABAP datadictionary&lt;/P&gt;&lt;P&gt;   Integrated to a ABAP/4 Development Workbench.&lt;/P&gt;&lt;P&gt;    Active in the runtime environment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 10:25:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differeence-between-abap-dictionary-and-data-dictionary/m-p/3561638#M857022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T10:25:14Z</dc:date>
    </item>
  </channel>
</rss>

