<?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: Data disappear in table control when hiting Enter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-disappear-in-table-control-when-hiting-enter/m-p/6267581#M1386045</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please search &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Oct 2009 08:50:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-22T08:50:19Z</dc:date>
    <item>
      <title>Data disappear in table control when hiting Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-disappear-in-table-control-when-hiting-enter/m-p/6267580#M1386044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Expert, Please help Me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Made one Table Control, For this First of all i Defined data in top page like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of iloc occurs 10,
      lnsl,
      lgort like mseg-lgort,
      end of iloc.
data:wloc like iloc.
controls: stoloc type TABLEVIEW USING SCREEN 1001.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and I have Also made table control in screen 1001,&lt;/P&gt;&lt;P&gt;But now my Problem is Whenever i entered data and hitting Enter it disappears data which i entered at screen during Execution.&lt;/P&gt;&lt;P&gt;While Debugging I have seen it is not modifying internal table from Work area, Please have a look.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.
loop AT iloc WITH CONTROL stoloc CURSOR stoloc-top_line.
   MODULE display_loc.
 endloop.
PROCESS AFTER INPUT.
loop at iloc.
    chain.
      field wloc-lnsl.
      field wloc-lgort.
      module disp_loc on CHAIN-REQUEST.
    endchain.
  endloop.
MODULE DISP_LOC INPUT.
select single * from T001L where LGORT = wloc-lgort.
  if sy-subrc = 0 .
    modify iloc from wloc index stoloc-current_line. "this modify is not working, Please Tell me the Reason.
    stoloc-top_line = 1.
  else.
    MESSAGE w000(zexi) with wloc-lgort 'not maintained in Master data'.
  endif.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 08:43:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-disappear-in-table-control-when-hiting-enter/m-p/6267580#M1386044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T08:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Data disappear in table control when hiting Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-disappear-in-table-control-when-hiting-enter/m-p/6267581#M1386045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please search &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 08:50:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-disappear-in-table-control-when-hiting-enter/m-p/6267581#M1386045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T08:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Data disappear in table control when hiting Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-disappear-in-table-control-when-hiting-enter/m-p/6267582#M1386046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to use loop....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnx&lt;/P&gt;&lt;P&gt;RK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rahul Keshav on Oct 22, 2009 3:05 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 09:32:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-disappear-in-table-control-when-hiting-enter/m-p/6267582#M1386046</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2009-10-22T09:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Data disappear in table control when hiting Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-disappear-in-table-control-when-hiting-enter/m-p/6267583#M1386047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resolved by myself,&lt;/P&gt;&lt;P&gt;As i have used three Table Control in my Module, But they were not in sequence.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 07:10:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-disappear-in-table-control-when-hiting-enter/m-p/6267583#M1386047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T07:10:07Z</dc:date>
    </item>
  </channel>
</rss>

