<?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: DDIC Tables and database table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576370#M588792</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;Only one STANDARD SELECTION SCREEN can be mainteined,but you can solve this problem by DIALOG programming or "window" option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Yossi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Yossi Rozenberg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Aug 2007 11:15:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-06T11:15:51Z</dc:date>
    <item>
      <title>DDIC Tables and database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576367#M588789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;could u explain the diffrence betwen DDIC Tables and database table?&lt;/P&gt;&lt;P&gt;how many selection -screen can be maintained in a report?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;eswar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 11:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576367#M588789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T11:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: DDIC Tables and database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576368#M588790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DDIC - Data Dictionary Information Centre&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can have as many selection screen as u want in u'r program &lt;/P&gt;&lt;P&gt;one main selection screen n other created using 'AS WINDOW' addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sameer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 11:14:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576368#M588790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T11:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: DDIC Tables and database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576369#M588791</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;Tables are defined in Data dictionary and their Physical storage is in Database.&lt;/P&gt;&lt;P&gt;So DDIC table and DB Table are Same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Report there are 2 types of selection Screens.&lt;/P&gt;&lt;P&gt;1. Standard selection screen&lt;/P&gt;&lt;P&gt;   Eg:&lt;/P&gt;&lt;P&gt;        PARAMETERS : P_MATNR TYPE MARA-MATNR.&lt;/P&gt;&lt;P&gt;   this will create a Standard selection screen with a number 1000.&lt;/P&gt;&lt;P&gt;   It is called automatically after the INITIALIZATION event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Customized Selection screen: We can Create many.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN: BEGIN OF SCREEN 10.&lt;/P&gt;&lt;P&gt;     PARAMETERS: P_MATNR LIKE MARA-MATNR.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN: END OF SCREEN 10.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  they must be called using the statement&lt;/P&gt;&lt;P&gt; CALL   SELECTION-SCREEN 10.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 11:14:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576369#M588791</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-06T11:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: DDIC Tables and database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576370#M588792</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;Only one STANDARD SELECTION SCREEN can be mainteined,but you can solve this problem by DIALOG programming or "window" option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Yossi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Yossi Rozenberg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 11:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576370#M588792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T11:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: DDIC Tables and database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576371#M588793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DDIC stands for Data Dictionary&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There exist ONE TO ONE relationship between ddic table and transparent table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It means :&lt;/P&gt;&lt;P&gt;There is a physical table on the database for each transparent table. The names of the physical tables and the logical table definition in the ABAP/4 Dictionary correspond and &lt;/P&gt;&lt;P&gt;one field in dictionary correspond to one field in physical database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the table is activated, a physical table definition is created in the database for the table definition stored in the ABAP Dictionary. The table definition is translated from the ABAP Dictionary to a definition of the particular database in One to One Relationship..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooled table&lt;/P&gt;&lt;P&gt;Pooled tables can be used to store control data (e.g. screen sequences, program parameters or temporary data). Several pooled tables can be combined to form a table pool. The table pool corresponds to a physical table on the database in which all the records of the allocated pooled tables are stored.&lt;/P&gt;&lt;P&gt;Cluster table&lt;/P&gt;&lt;P&gt;Cluster tables contain continuous text, for example, documentation. Several cluster tables can be combined to form a table cluster. Several logical lines of different tables are combined to form a physical record in this table type. This permits object-by-object storage or object-by-object access. In order to combine tables in clusters, at least parts of the keys must agree. Several cluster tables are stored in one corresponding table on the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 11:16:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576371#M588793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T11:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: DDIC Tables and database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576372#M588794</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;DDIC stands for Data Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In DDIC there are two types of tables,&lt;/P&gt;&lt;P&gt;1.Transparent Tables&lt;/P&gt;&lt;P&gt;2.Pooled and Clustered Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There exist ONE TO ONE relationship between ddic table and transparent table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It means :&lt;/P&gt;&lt;P&gt;There is a physical table on the database for each transparent table. The names of the physical tables and the logical table definition in the ABAP/4 Dictionary correspond and &lt;/P&gt;&lt;P&gt;one field in dictionary correspond to one field in physical database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the table is activated, a physical table definition is created in the database for the table definition stored in the ABAP Dictionary. The table definition is translated from the ABAP Dictionary to a definition of the particular database in One to One Relationship..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Pooled table&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Pooled tables can be used to store control data (e.g. screen sequences, program parameters or temporary data). Several pooled tables can be combined to form a table pool. The table pool corresponds to a physical table on the database in which all the records of the allocated pooled tables are stored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Cluster table&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Cluster tables contain continuous text, for example, documentation. Several cluster tables can be combined to form a table cluster. Several logical lines of different tables are combined to form a physical record in this table type. This permits object-by-object storage or object-by-object access. In order to combine tables in clusters, at least parts of the keys must agree. Several cluster tables are stored in one corresponding table on the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 11:16:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-tables-and-database-table/m-p/2576372#M588794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T11:16:59Z</dc:date>
    </item>
  </channel>
</rss>

