<?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: To keep internal table data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-keep-internal-table-data/m-p/4346112#M1035045</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kumar ,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;one  of the solution for this problem could be that &lt;/P&gt;&lt;P&gt;you can use two table of the type you what to populate  the Dialog &lt;/P&gt;&lt;P&gt;that you can append one table form  the ane which u have used in Screen &lt;/P&gt;&lt;P&gt;by doin so u have a table same data in both table. So when u  push  'back button' the first &lt;/P&gt;&lt;P&gt;will table be cleared , but u have data in another one so  then again  u can &lt;/P&gt;&lt;P&gt;populate the screen with this table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for goin back:-&lt;/P&gt;&lt;P&gt;    LOOP AT temp_itemdetail.&lt;/P&gt;&lt;P&gt;        MOVE-CORRESPONDING temp_itemdetail TO it_itemdetail.&lt;/P&gt;&lt;P&gt;        APPEND it_itemdetail.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      REFRESH temp_itemdetail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;again to the same screen ;-&lt;/P&gt;&lt;P&gt;this will give u data at the  screen&lt;/P&gt;&lt;P&gt;      LOOP AT temp_itemdetail.&lt;/P&gt;&lt;P&gt;        MOVE-CORRESPONDING temp_itemdetail TO it_itemdetail.&lt;/P&gt;&lt;P&gt;        APPEND it_itemdetail.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      REFRESH temp_itemdetail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Aug 2008 06:24:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-28T06:24:25Z</dc:date>
    <item>
      <title>To keep internal table data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-keep-internal-table-data/m-p/4346109#M1035042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;My scenario is like that&lt;/P&gt;&lt;P&gt;I have zreport and from that at line-selection i am calling my z dilaog program.&lt;/P&gt;&lt;P&gt;there I am manipulating and filling the internal table and getting the output.&lt;/P&gt;&lt;P&gt;But after pressing 'BACK' button I am going to zreport again ang in this position when I am calling again z dilaog program from at line selection I want that previous Internal table value should be as it was. and after manipulating I can add another rows..&lt;/P&gt;&lt;P&gt;But here in my case after getting back the internal table value is going to be refresh...&lt;/P&gt;&lt;P&gt;I dont want to refresh...&lt;/P&gt;&lt;P&gt;Can anybody suggest me how to do..it with simple coding.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;kumar n&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 06:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-keep-internal-table-data/m-p/4346109#M1035042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T06:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: To keep internal table data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-keep-internal-table-data/m-p/4346110#M1035043</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;/P&gt;&lt;P&gt;if you have already done in this way then there is a way to get tht internal table filled as its in the zmodule program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the way is export the internal in zmodule program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and ipmort the table in your z report program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that is the only way you can get the internal table filled in your scenario....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help u..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 06:08:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-keep-internal-table-data/m-p/4346110#M1035043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T06:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: To keep internal table data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-keep-internal-table-data/m-p/4346111#M1035044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use memory id and get the internal table value again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; export &amp;lt;table&amp;gt; to MEMORY ID 'PHOTO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IMPORT &amp;lt;table&amp;gt; FROM MEMORY ID 'PHOTO'.&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;Anbu B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 06:10:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-keep-internal-table-data/m-p/4346111#M1035044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T06:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: To keep internal table data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-keep-internal-table-data/m-p/4346112#M1035045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kumar ,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;one  of the solution for this problem could be that &lt;/P&gt;&lt;P&gt;you can use two table of the type you what to populate  the Dialog &lt;/P&gt;&lt;P&gt;that you can append one table form  the ane which u have used in Screen &lt;/P&gt;&lt;P&gt;by doin so u have a table same data in both table. So when u  push  'back button' the first &lt;/P&gt;&lt;P&gt;will table be cleared , but u have data in another one so  then again  u can &lt;/P&gt;&lt;P&gt;populate the screen with this table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for goin back:-&lt;/P&gt;&lt;P&gt;    LOOP AT temp_itemdetail.&lt;/P&gt;&lt;P&gt;        MOVE-CORRESPONDING temp_itemdetail TO it_itemdetail.&lt;/P&gt;&lt;P&gt;        APPEND it_itemdetail.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      REFRESH temp_itemdetail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;again to the same screen ;-&lt;/P&gt;&lt;P&gt;this will give u data at the  screen&lt;/P&gt;&lt;P&gt;      LOOP AT temp_itemdetail.&lt;/P&gt;&lt;P&gt;        MOVE-CORRESPONDING temp_itemdetail TO it_itemdetail.&lt;/P&gt;&lt;P&gt;        APPEND it_itemdetail.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      REFRESH temp_itemdetail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 06:24:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-keep-internal-table-data/m-p/4346112#M1035045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T06:24:25Z</dc:date>
    </item>
  </channel>
</rss>

