<?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 why show internal table multi-style ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-show-internal-table-multi-style/m-p/2433752#M544192</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;i added a button with fcode DISP in list screen, which has function to show alv grid data with standard alv gui status. but after press &amp;amp;F03 (BACK) and DISP again, the alv show my internal table aside with the formar one, for example if i press BACK and DISP three times, it shows three tables.  how to show the table just once ?? &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;my code structure is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at user-command.&lt;/P&gt;&lt;P&gt;  case sy-ucomm.&lt;/P&gt;&lt;P&gt;    when 'DISP'.&lt;/P&gt;&lt;P&gt;      perform display_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form display_data.&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;     .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jul 2007 03:13:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-04T03:13:27Z</dc:date>
    <item>
      <title>why show internal table multi-style ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-show-internal-table-multi-style/m-p/2433752#M544192</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;i added a button with fcode DISP in list screen, which has function to show alv grid data with standard alv gui status. but after press &amp;amp;F03 (BACK) and DISP again, the alv show my internal table aside with the formar one, for example if i press BACK and DISP three times, it shows three tables.  how to show the table just once ?? &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;my code structure is like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at user-command.&lt;/P&gt;&lt;P&gt;  case sy-ucomm.&lt;/P&gt;&lt;P&gt;    when 'DISP'.&lt;/P&gt;&lt;P&gt;      perform display_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form display_data.&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;     .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-show-internal-table-multi-style/m-p/2433752#M544192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T03:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: why show internal table multi-style ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-show-internal-table-multi-style/m-p/2433753#M544193</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;i know it's because i haven't refresh fieldcatalog.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:20:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-show-internal-table-multi-style/m-p/2433753#M544193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T03:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: why show internal table multi-style ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-show-internal-table-multi-style/m-p/2433754#M544194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Zhang kun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each time of your button press the internal table is getting updated with the same data.It means put some condition before the appending process of internal table OR put this internal table data appending procedure under the event which will not fire every button press.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If you are selecting and appending the data under the event&lt;/P&gt;&lt;P&gt;   AT SELECTION-SCREEN OUTPUT. it will fire for every transaction.So&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  It is better if you paste your  internal table appending logic with event name.&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:25:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-show-internal-table-multi-style/m-p/2433754#M544194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T03:25:58Z</dc:date>
    </item>
  </channel>
</rss>

