<?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: Regarding ABAP Dictionary in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398297#M534043</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Views are data dictionary elements. A view is not stored in a database as tables , its just a method which facilitates the user to see fields from one or more tables. &lt;/P&gt;&lt;P&gt;Views can eb - Help , Database , Projection and Manitenance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure in simple terms is a frame , it itself doesnt hold data , however , when we create fields , variables or internal tables , we can have them built based on a structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An internal table is built , maintained and destroyed in the program. Once the program / transaction ends, the internal table is destroyed. Internal tables are used to bring necesary data from DB tables , perform manipulations and then display the output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 20:21:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-19T20:21:34Z</dc:date>
    <item>
      <title>Regarding ABAP Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398293#M534039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;                  plz help me on confusion b/w views , structures,internal tables and they r related to each other. plz send me any material regarding these,and hw they r inter related to each other.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 13:08:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398293#M534039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T13:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ABAP Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398294#M534040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A view is a dictionary object which is used to join or place certain conditions on a table or group of tables.  For example, say you want to join VBAK and VBAP by the VBELN field and you only want records that have a "C" in the VBTYP field.  You can set the join condition for VBAK and VBAP and then have a selection criteria on the VBTYP.  Then you can use this view in SE16 as well as in any SELECT statement in your programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures are another dictionary object which simply define some data object with one or more fields.  You can use these structures in your program to define internal tables or variables in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal tables are what they sound like, these are used at runtime in your program to hold tabular data, rows and columns.  You declare these in your program like so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Data: itab type table of mara.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 13:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398294#M534040</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-19T13:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ABAP Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398295#M534041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this material&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/8637c10f-1f29-4d22-af7b-7fa11e2ccc1e/4-ABAP-Dictionary(P164)" target="test_blank"&gt;http://www.esnips.com/doc/8637c10f-1f29-4d22-af7b-7fa11e2ccc1e/4-ABAP-Dictionary(P164)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 13:16:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398295#M534041</guid>
      <dc:creator>rodrigo_paisante3</dc:creator>
      <dc:date>2007-06-19T13:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ABAP Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398296#M534042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Internal tables are locally defined in a program. Views are globally defined in the dictionary.&lt;/P&gt;&lt;P&gt;2. Internal tables do not hold data unless selected into by a select statement. Views hold data automatically at run time from the corresponding base tables.&lt;/P&gt;&lt;P&gt;3. Reading from an internal table is faster than from a view.&lt;/P&gt;&lt;P&gt;4. Views can only be created from one or more database tables. Internal tables can be created from tables or structures.&lt;/P&gt;&lt;P&gt;5. Internal tables need not be in the customer namespace. Views have to be in the customer (Y,Z) namespace. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. A structure is just a list of fields defined under a name. Structures are useful for painting screen fields, and for manipulating data that has a consistent format defined by a discrete number of fields.&lt;/P&gt;&lt;P&gt;7.There is no content to view in a structure. You can, however, view the definition of a structure in SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this ll be helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vinsee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 19:48:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398296#M534042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T19:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ABAP Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398297#M534043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Views are data dictionary elements. A view is not stored in a database as tables , its just a method which facilitates the user to see fields from one or more tables. &lt;/P&gt;&lt;P&gt;Views can eb - Help , Database , Projection and Manitenance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure in simple terms is a frame , it itself doesnt hold data , however , when we create fields , variables or internal tables , we can have them built based on a structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An internal table is built , maintained and destroyed in the program. Once the program / transaction ends, the internal table is destroyed. Internal tables are used to bring necesary data from DB tables , perform manipulations and then display the output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 20:21:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398297#M534043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T20:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ABAP Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398298#M534044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uday,&lt;/P&gt;&lt;P&gt;If u are a beginner in Sap,&lt;/P&gt;&lt;P&gt;U need to have a thorugh knowledge on structure n internal table.&lt;/P&gt;&lt;P&gt;Study the link provided as its a very good one in understanding &lt;/P&gt;&lt;P&gt;INTERNAL tables.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/tips/itab/Internal%20Table%2027-02-06.htm#Intro" target="test_blank"&gt;http://www.erpgenie.com/abap/tips/itab/Internal%20Table%2027-02-06.htm#Intro&lt;/A&gt;&lt;/P&gt;&lt;P&gt; Do reward points for the same.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sapna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 06:03:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-abap-dictionary/m-p/2398298#M534044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-20T06:03:03Z</dc:date>
    </item>
  </channel>
</rss>

