<?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 Internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3246890#M775030</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have few questions please anyone give the answer.&lt;/P&gt;&lt;P&gt;1. As we know that the internal table having the type:Standard,sorted and hashed type and performance wise hashed table having the high performance intead of this why we always use standard table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.we always use ST05,SE30 for check the performance of program is there other way for checking the performace?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.what are the ways of finding the userexit instead of program--customer-function and  CMOD-SAP Enhancement??&lt;/P&gt;&lt;P&gt;Please give me the answer of these question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Meenakshi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Meenakshi Singh on Dec 31, 2007 11:33 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Dec 2007 10:33:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-31T10:33:32Z</dc:date>
    <item>
      <title>Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3246890#M775030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have few questions please anyone give the answer.&lt;/P&gt;&lt;P&gt;1. As we know that the internal table having the type:Standard,sorted and hashed type and performance wise hashed table having the high performance intead of this why we always use standard table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.we always use ST05,SE30 for check the performance of program is there other way for checking the performace?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.what are the ways of finding the userexit instead of program--customer-function and  CMOD-SAP Enhancement??&lt;/P&gt;&lt;P&gt;Please give me the answer of these question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Meenakshi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Meenakshi Singh on Dec 31, 2007 11:33 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 10:33:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3246890#M775030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T10:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3246891#M775031</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 find user exits y using tables MODACT and MODSAP tables. These tables are in return associated with CMOD and SMOD transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find sample code through which you can find userexits in a transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/844d1594-0701-0010-06a2-9a36d357659f" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/844d1594-0701-0010-06a2-9a36d357659f&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 10:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3246891#M775031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T10:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3246892#M775032</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;1. Regarding Internal Tables: &lt;/P&gt;&lt;P&gt;                 Hash table has the hash algorithm associated with it. So irrespective of the no. of entries this hash algorithm is always computed to insert an element into the hash table. If the no. of entries are large enough then it is ok to use the hash table or else we have to pay the penalty for this algorithm when there is a small data set. &lt;/P&gt;&lt;P&gt;                 Standard table doesnt require these type of algorithms. Simply the values are inserted as it comes. So for small data set it is good to use standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. check this link for code inspection:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/56/fd3b87d203064aa925256ff88d931b/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/56/fd3b87d203064aa925256ff88d931b/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Go the SAPIMG (SE81). Select the area you want to find user exit ( like logisitcs.. etc). Then click SAPIMG button. It will take you to repository information browser. Then click search. U vl find all the user exits of the corresponding area u r looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 10:49:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3246892#M775032</guid>
      <dc:creator>i048168</dc:creator>
      <dc:date>2007-12-31T10:49:41Z</dc:date>
    </item>
  </channel>
</rss>

