<?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: Table Vs Structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601784#M596109</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;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="198971"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Aparna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Aug 2007 07:13:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-08T07:13:05Z</dc:date>
    <item>
      <title>Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601779#M596104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;When i Click on any of the field, for some filed are having Tables and some field are having the Structure,&lt;/P&gt;&lt;P&gt;then ABAPER need table &lt;/P&gt;&lt;P&gt;the what is the use of Structure, why SAP has use here structure, &lt;/P&gt;&lt;P&gt;then how to give table name of corresponding field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sapman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 06:39:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601779#M596104</guid>
      <dc:creator>former_member225044</dc:creator>
      <dc:date>2007-08-08T06:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601780#M596105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;data will be stored in the Tables, but the strictes, sometimes you may needn to create a strucure which may not required to store the data, at that times we use the structures&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find the table use by a transaction code &lt;/P&gt;&lt;P&gt;You can easily find all the table access by a transaction code via SE49. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Supply the transaction and click the Display button and all the table access by the particular transaction code will appear. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finding fields with Table Name &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm working as a JR. ABAPer &amp;amp; frequently I encounter this situation when I'm given a report either with fields from a structure or no fields at all. I have following doubts:- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Who's responsibility it is to find out the fields complete with table name? Functional consultant or ABAPER? &lt;/P&gt;&lt;P&gt;2) Is there some std. way of finding out these fields? &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can go through Tables i.e. Data dictionary. &lt;/P&gt;&lt;P&gt;The table which store information about Structures and Tables are as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DD02L - table properties &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DD02T - table texts &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DD03L - field properties &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DD03T - field texts &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to find data related to a structure? With GREAT difficulty, but here are some ways (which will NOT always work! LOL) to find specific fields if you know the structure's fieldname. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) First, goto SE11, and enter your structure name. Goto the field that holds your data, and double-click on the element name. Once inside the element, do a where-used list for that element, searching tables only. Then go into each table, and see if you can find the one holding your data. There may sometimes be a huge number of tables displayed, but a lot of them will be empty. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Get the name of the program behind your transaction, goto SE80, and enter the program name. 99% of the time it will be part of a module-pool and bring up the pool. Goto the dictionary structures, and search each table there for the one holding your data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Open a new session with transaction ST05, select SQL Trace, click on the Trace On button, and go back to your transaction (while leaving the session with ST05 open). Submit your transaction, and go back to the ST05 session. Click on the Trace Off button, then select the List Trace button. Continue with standard selections, and a BASIC TRACE LIST will appear. search thru the tables displayed under ObjectName. &lt;/P&gt;&lt;P&gt;&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 06:45:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601780#M596105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T06:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601781#M596106</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;Structure meant for GLOBAL EXISTANCE(these could be used by any other program without creating it again).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures are used especially to define the data at the interface of module pools and screens and to define the types of function module parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures that are used more than once can be changed centrally because they were defined centrall. The active ABAP Dictionary makes this change at all relevant locations. ABAP programs or screen templates that use a&lt;/P&gt;&lt;P&gt;structure are automatically adjusted when the structure changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: There is a physical table on the database for each transparent table.&lt;/P&gt;&lt;P&gt;The names of the physical tables and the logical table definition in the ABAP/4 Dictionary correspond.&lt;/P&gt;&lt;P&gt;All business data and application data are stored in transparent tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 06:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601781#M596106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T06:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601782#M596107</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;to clarify do u mean.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables &amp;lt;fieldname&amp;gt; ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in that case here is the explanation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are transparent tables created in the SAp system. that is globally created tables.. when u want to use a structure of the same format we use :&lt;/P&gt;&lt;P&gt;tables &amp;lt;tablename&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sometimes there are structures defined for which a table of the same type does not exist. here we use:&lt;/P&gt;&lt;P&gt;data: &amp;lt;strname&amp;gt; type &amp;lt;strtype&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;again tables contain information. and structures do not contain data. they are only for the fieeld structure definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Aparna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 07:04:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601782#M596107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T07:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601783#M596108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to add to the above points of why SAP uses structure...&lt;/P&gt;&lt;P&gt;*****************************************************************&lt;/P&gt;&lt;P&gt;if you note SAP uses OOPs concept in numerous places...in these cases unlike conventional ABAP you cannot create a structure using 'types' as far i have tried in my ABAP versions...In these cases you need to create a structure in SE11 and use them to create work areas and internal tables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont have much of an OOPs experience but in some standard enhancements we need to use them and this information is purely based out of that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; how to give table name of corresponding field&lt;/P&gt;&lt;P&gt;**************************************************************&lt;/P&gt;&lt;P&gt;to find the table associated one needs to debugg the code at the point of saving the record or some naming conventions like the name of the standard table being a part of the structure is done,in very few cases though....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg: for table RESB&lt;/P&gt;&lt;P&gt;go to se11-&amp;gt; data type -&amp;gt; enter &lt;STRONG&gt;RESB&lt;/STRONG&gt; (structures) you can see a big list itself&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another option i learned from SDN is on the name of the structure if you click with&lt;/P&gt;&lt;P&gt;CTRL&lt;EM&gt;Shift&lt;/EM&gt;F5 you will get a package name and inside that list of dictionary structures and tables though i am not able to fully utilise it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it was of some use to you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 07:11:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601783#M596108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T07:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601784#M596109</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;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="198971"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Aparna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 07:13:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601784#M596109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T07:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601785#M596110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Structure is just a  definition of fields .&lt;/P&gt;&lt;P&gt;There will be no records , i.e., a structure doesn't have any data.&lt;/P&gt;&lt;P&gt;But a table physically exists in database with all the records.&lt;/P&gt;&lt;P&gt;A structure can be included  when defining an internal  table which needs to have same definition as the structure.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neeraja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 12:17:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601785#M596110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T12:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601786#M596111</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;you can refer to that structure fields &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;structure means holds one record at a time &lt;/P&gt;&lt;P&gt;table holds multiple records at a time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can append one structure to any number of existing tables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 12:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601786#M596111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T12:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601787#M596112</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;An &amp;lt;b&amp;gt;internal table&amp;lt;/b&amp;gt; is a temporary table stored in RAM on the application server. It is created and filled by a program during execution and is discarded when the program ends. Like a database table, an internal table consists of one or more rows with an identical structure, but unlike a database table, it cannot hold data after the program ends. Use it as temporary storage for manipulating data or as a temporary private buffer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The &amp;lt;b&amp;gt;structure&amp;lt;/b&amp;gt; can only hold a single row. It is a buffer used to hold each record before it is added or each record as it is retrieved from the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sipra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 12:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601787#M596112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T12:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Table Vs Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601788#M596113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I logged in just to thank you for this great info, that is a great help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wish you all the best.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;A Galal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Oct 2015 14:23:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-vs-structure/m-p/2601788#M596113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-19T14:23:49Z</dc:date>
    </item>
  </channel>
</rss>

