<?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 table konv in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608735#M598220</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;table konv is cluster&lt;/P&gt;&lt;P&gt;how i can see the tables that made the KONV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Aug 2007 09:06:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-01T09:06:07Z</dc:date>
    <item>
      <title>table konv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608735#M598220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;table konv is cluster&lt;/P&gt;&lt;P&gt;how i can see the tables that made the KONV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 09:06:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608735#M598220</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T09:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: table konv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608736#M598221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Try doing this ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1). Goto se12 and display the table BSEG&lt;/P&gt;&lt;P&gt;2). Click on the Delivery &amp;amp; Maintenanace tab&lt;/P&gt;&lt;P&gt;3). Double click on the Pool/Cluster field&lt;/P&gt;&lt;P&gt;4). On the next screen do a where used list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will find all the related tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 09:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608736#M598221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T09:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: table konv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608737#M598222</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;Can u be more little in ur question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I. Transparent tables (BKPF, VBAK, VBAP, KNA1, COEP)&lt;/P&gt;&lt;P&gt;Allows secondary indexes (SE11-&amp;gt;Display Table-&amp;gt;Indexes)&lt;/P&gt;&lt;P&gt;Can be buffered (SE11-&amp;gt;Display Table-&amp;gt;technical settings) Heavily updated tables should not be buffered.&lt;/P&gt;&lt;P&gt;II. Pool Tables (match codes, look up tables)&lt;/P&gt;&lt;P&gt;Should be accessed via primary key or&lt;/P&gt;&lt;P&gt;Should be buffered (SE11-&amp;gt;Display Table-&amp;gt;technical settings)&lt;/P&gt;&lt;P&gt;No secondary indexes&lt;/P&gt;&lt;P&gt;Select * is Ok because all columns retrieved anyway&lt;/P&gt;&lt;P&gt;III. Cluster Tables (BSEG,BSEC)&lt;/P&gt;&lt;P&gt;Should be accessed via primary key - very fast retrieval otherwise very slow&lt;/P&gt;&lt;P&gt;No secondary indexes&lt;/P&gt;&lt;P&gt;Select * is Ok because all columns retrieved anyway. Performing an operation on multiple rows is more efficient than single row operations. Therefore you still want to select into an internal table. If many rows are being selected into the internal table, you might still like to retrieve specific columns to cut down on the memory required.&lt;/P&gt;&lt;P&gt;Statistical SQL functions (SUM, AVG, MIN, MAX, etc) not supported&lt;/P&gt;&lt;P&gt;Can not be buffered&lt;/P&gt;&lt;P&gt;IV. Buffered Tables (includes both Transparent &amp;amp; Pool Tables)&lt;/P&gt;&lt;P&gt;While buffering database tables in program memory (SELECT into internal table) is generally a good idea for performance, it is not always necessary. Some tables are already buffered in memory. These are mostly configuration tables. If a table is already buffered, then a select statement against it is very fast. To determine if a table is buffered, choose the 'technical settings' soft button from the data dictionary display of a table (SE12). Pool tables should all be buffered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables Documentation&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/25c1f5d1-0901-0010-d495-e96d02a0cb01" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/25c1f5d1-0901-0010-d495-e96d02a0cb01&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpfull answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 09:12:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608737#M598222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T09:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: table konv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608738#M598223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pass the VBAK-KNUMV and VBAP-POSNR fields&lt;/P&gt;&lt;P&gt;to KONV-KNUMV and KONV-KPOSN fields and fetch the data from KONV table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or Do one More &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make 2 Itab &amp;lt; Itab1 ,Itab2 &amp;gt; &lt;/P&gt;&lt;P&gt;Make INNER JOIN  between the  tables to itab1.&lt;/P&gt;&lt;P&gt;move field of konv to itab2 with move --&amp;gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING ITAB TO I_FINAL.&lt;/P&gt;&lt;P&gt;READ TABLE ITAB2 WITH KEY KNUMV = ITAB-KNUMV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and finaly make final_itab and move itab1 and itab2 to final_itab ]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : / final_itab(include all field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 09:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608738#M598223</guid>
      <dc:creator>ashish_gupta11</dc:creator>
      <dc:date>2007-08-01T09:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: table konv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608739#M598224</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;Table Cluster  KOCLU is assigned to table KONV.&lt;/P&gt;&lt;P&gt;You can check the name in the attributes of cluster table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Details of table cluster KOCLU:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field name     DTyp  Length      &lt;/P&gt;&lt;P&gt;MANDT          CLNT       3      &lt;/P&gt;&lt;P&gt;KNUMV          CHAR      10      &lt;/P&gt;&lt;P&gt;PAGENO         INT2       5      &lt;/P&gt;&lt;P&gt;TIMESTMP       CHAR      14      &lt;/P&gt;&lt;P&gt;PAGELG         INT2       5      &lt;/P&gt;&lt;P&gt;VARDATA        RAW     3800      &lt;/P&gt;&lt;P&gt;                                 &lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 09:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-konv/m-p/2608739#M598224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T09:23:54Z</dc:date>
    </item>
  </channel>
</rss>

