<?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: TABLE CONTROL:Scrolling up and down makes the data inconsistent in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025164#M415010</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vigneswaran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your suggestion did the trick. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to everyone who took time to help me out. I appreciate it a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Mar 2007 13:55:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-16T13:55:25Z</dc:date>
    <item>
      <title>TABLE CONTROL:Scrolling up and down makes the data inconsistent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025158#M415004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a Table Control and when I run the program, it displays the data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I scroll from left to right or right to left, everything works as expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I scroll up and down the top most rows disappear and I can't see the&lt;/P&gt;&lt;P&gt;first few top rows. However this is affecting just the screen and not the actual table.&lt;/P&gt;&lt;P&gt;If I quit and restart the transaction it shows up again normally until I again scroll up and down. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone seen this problem. Is it a bug or is there some thing I am missing. I would appreciate your feedback.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 11:24:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025158#M415004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T11:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL:Scrolling up and down makes the data inconsistent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025159#M415005</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;Please send me coding.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 11:32:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025159#M415005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T11:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL:Scrolling up and down makes the data inconsistent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025160#M415006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the TABLE Control you have to do coding with loop in PBO and PAI... In the mdoule which is inside loop of PBO you have to count number of records.. with following code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  LOOP AT &amp;lt;internal table&amp;gt; CURSOR &amp;lt;scroll-var&amp;gt;&lt;/P&gt;&lt;P&gt;                            [WITH CONTROL &amp;lt;table-control&amp;gt; ]&lt;/P&gt;&lt;P&gt;                            [FROM &amp;lt;line1&amp;gt; ]  [TO &amp;lt;line2&amp;gt; ]. &lt;/P&gt;&lt;P&gt;      ...&amp;lt;actions&amp;gt;...&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to specify FROM LINE1 and TO LINE2. Line numbers .... or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.  Use following logic to REad lines...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE status_0100.&lt;/P&gt;&lt;P&gt;  LOOP WITH CONTROL flights.&lt;/P&gt;&lt;P&gt;    MODULE fill_table_control.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE cancel AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;  LOOP WITH CONTROL flights.&lt;/P&gt;&lt;P&gt;    MODULE read_table_control.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE fill_table_control OUTPUT.&lt;/P&gt;&lt;P&gt;  READ TABLE itab INTO demo_conn INDEX flights-current_line.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE read_table_control INPUT.&lt;/P&gt;&lt;P&gt;  lines = sy-loopc.&lt;/P&gt;&lt;P&gt;  MODIFY itab FROM demo_conn INDEX flights-current_line.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check. and  reply. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve u r problem and if it solves....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Please give points..&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers : )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DARSHAN PATEL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 11:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025160#M415006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T11:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL:Scrolling up and down makes the data inconsistent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025161#M415007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Navin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response. Please find the code below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=======Main Module Pool program (SE38)===============&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Module pool       ZWM_ZWMSCHED_TABLECONTROL                         *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------" /&gt;**&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This program lets the user update the ZWMSCHED table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Initial Coding:&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  03/14/2007 by TFConsulting&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Modification Log:&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  User:&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Data:&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Correction:&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Purpose:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------" /&gt;**&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE ZWM_ZWMSCHED_TABLECONTROL_TOP           .                      "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INCLUDE ZWM_ZWMSCHED_TABLECONTROL_O01           .                    *&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INCLUDE ZWM_ZWMSCHED_TABLECONTROL_I01           .                    *&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INCLUDE ZWM_ZWMSCHED_TABLECONTROL_F01           .                    *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: type for the data of tablecontrol 'TC_ZWMSCHED'&lt;/P&gt;&lt;P&gt;types: begin of t_TC_ZWMSCHED,&lt;/P&gt;&lt;P&gt;         LGNUM       like ZWMSCHED-LGNUM,&lt;/P&gt;&lt;P&gt;         CARRIER     like ZWMSCHED-CARRIER,&lt;/P&gt;&lt;P&gt;         CUSTNAME    like ZWMSCHED-CUSTNAME,&lt;/P&gt;&lt;P&gt;         CITY        like ZWMSCHED-CITY,&lt;/P&gt;&lt;P&gt;         STATE       like ZWMSCHED-STATE,&lt;/P&gt;&lt;P&gt;         ZIP         like ZWMSCHED-ZIP,&lt;/P&gt;&lt;P&gt;         QTY         like ZWMSCHED-QTY,&lt;/P&gt;&lt;P&gt;         VBELN       like ZWMSCHED-VBELN,&lt;/P&gt;&lt;P&gt;         INCO        like ZWMSCHED-INCO,&lt;/P&gt;&lt;P&gt;         WT          like ZWMSCHED-WT,&lt;/P&gt;&lt;P&gt;         VOLUMN      like ZWMSCHED-VOLUMN,&lt;/P&gt;&lt;P&gt;         EQUIPMENT   like ZWMSCHED-EQUIPMENT,&lt;/P&gt;&lt;P&gt;         PICK_STAT   like ZWMSCHED-PICK_STAT,&lt;/P&gt;&lt;P&gt;         LOAD_STAT   like ZWMSCHED-LOAD_STAT,&lt;/P&gt;&lt;P&gt;         BOL_STAT    like ZWMSCHED-BOL_STAT,&lt;/P&gt;&lt;P&gt;         GM_STATUS   like ZWMSCHED-GM_STATUS,&lt;/P&gt;&lt;P&gt;         LOAD_SEQ    like ZWMSCHED-LOAD_SEQ,&lt;/P&gt;&lt;P&gt;         WAVENUM     like ZWMSCHED-WAVENUM,&lt;/P&gt;&lt;P&gt;         DOOR        like ZWMSCHED-DOOR,&lt;/P&gt;&lt;P&gt;         SHIP_DATE   like ZWMSCHED-SHIP_DATE,&lt;/P&gt;&lt;P&gt;         MBOL        like ZWMSCHED-MBOL,&lt;/P&gt;&lt;P&gt;         SEAL        like ZWMSCHED-SEAL,&lt;/P&gt;&lt;P&gt;         NOTES       like ZWMSCHED-NOTES,&lt;/P&gt;&lt;P&gt;       end of t_TC_ZWMSCHED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: internal table for tablecontrol 'TC_ZWMSCHED'&lt;/P&gt;&lt;P&gt;data:     g_TC_ZWMSCHED_itab   type t_TC_ZWMSCHED occurs 0,&lt;/P&gt;&lt;P&gt;          g_TC_ZWMSCHED_wa     type t_TC_ZWMSCHED. "work area&lt;/P&gt;&lt;P&gt;data:     g_TC_ZWMSCHED_copied.           "copy flag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: declaration of tablecontrol 'TC_ZWMSCHED' itself&lt;/P&gt;&lt;P&gt;controls: TC_ZWMSCHED type tableview using screen 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: output module for tc 'TC_ZWMSCHED'. do not change this line!&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: copy ddic-table to itab&lt;/P&gt;&lt;P&gt;module TC_ZWMSCHED_init output.&lt;/P&gt;&lt;P&gt;  if g_TC_ZWMSCHED_copied is initial.&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: copy ddic-table 'ZWMSCHED'&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: into internal table 'g_TC_ZWMSCHED_itab'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    select * from ZWMSCHED&lt;/P&gt;&lt;P&gt;       into corresponding fields&lt;/P&gt;&lt;P&gt;       of table g_TC_ZWMSCHED_itab.&lt;/P&gt;&lt;P&gt;    g_TC_ZWMSCHED_copied = 'X'.&lt;/P&gt;&lt;P&gt;    sort g_TC_ZWMSCHED_itab ascending by lgnum vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    refresh control 'TC_ZWMSCHED' from screen '0100'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: output module for tc 'TC_ZWMSCHED'. do not change this line!&lt;/P&gt;&lt;P&gt;*&amp;amp;spwizard: move itab to dynpro&lt;/P&gt;&lt;P&gt;module TC_ZWMSCHED_move output.&lt;/P&gt;&lt;P&gt;  move-corresponding g_TC_ZWMSCHED_wa to ZWMSCHED.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  modify_inttab  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE modify_inttab INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; modify g_TC_ZWMSCHED_itab  from zwmsched index&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;tc_zwmsched-current_line.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort g_TC_ZWMSCHED_itab ascending by lgnum vbeln.&lt;/P&gt;&lt;P&gt;modify g_TC_ZWMSCHED_itab   from g_TC_ZWMSCHED_wa index&lt;/P&gt;&lt;P&gt;tc_zwmsched-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " modify_inttab  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100 OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'STATUS1'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; SET TITLEBAR 'xxx'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " STATUS_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FCODE2 = FCODE.&lt;/P&gt;&lt;P&gt;  CLEAR FCODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE FCODE2.&lt;/P&gt;&lt;P&gt;    when 'SAVE'.&lt;/P&gt;&lt;P&gt;********************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Update the changes made by the user in   *&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the table control fields.                *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;********************************************&lt;/P&gt;&lt;P&gt;      loop at g_tc_zwmsched_itab into g_tc_zwmsched_wa.&lt;/P&gt;&lt;P&gt;        update ZWMSCHED&lt;/P&gt;&lt;P&gt;          set ship_date = g_tc_zwmsched_wa-ship_date&lt;/P&gt;&lt;P&gt;              equipment = g_tc_zwmsched_wa-equipment&lt;/P&gt;&lt;P&gt;              door      = g_tc_zwmsched_wa-door&lt;/P&gt;&lt;P&gt;              wavenum   = g_tc_zwmsched_wa-wavenum&lt;/P&gt;&lt;P&gt;              load_seq  = g_tc_zwmsched_wa-load_seq&lt;/P&gt;&lt;P&gt;              notes     = g_tc_zwmsched_wa-notes&lt;/P&gt;&lt;P&gt;          where&lt;/P&gt;&lt;P&gt;              lgnum     = g_tc_zwmsched_wa-lgnum  and&lt;/P&gt;&lt;P&gt;              vbeln     = g_tc_zwmsched_wa-vbeln.&lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;    LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;    when 'EXIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'POPUP_TO_CONFIRM'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;           TITLEBAR                    = 'EXIT? '&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          DIAGNOSE_OBJECT             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            TEXT_QUESTION               = 'EXIT THIS TRANSACTION?'&lt;/P&gt;&lt;P&gt;           TEXT_BUTTON_1               = 'Yes'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          ICON_BUTTON_1               = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;           TEXT_BUTTON_2               = 'No'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          ICON_BUTTON_2               = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          DEFAULT_BUTTON              = '1'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          DISPLAY_CANCEL_BUTTON       = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          USERDEFINED_F1_HELP         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          START_COLUMN                = 25&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          START_ROW                   = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          POPUP_TYPE                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;           ANSWER                      = p_answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if p_answer = '1'.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      call screen 100.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    when others.&lt;/P&gt;&lt;P&gt;      call screen 100.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;P&gt;=========================================================&lt;/P&gt;&lt;P&gt;===============CODE in SE51 follows======================&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  module TC_ZWMSCHED_init.&lt;/P&gt;&lt;P&gt;  loop at   g_TC_ZWMSCHED_itab&lt;/P&gt;&lt;P&gt;       into g_TC_ZWMSCHED_wa&lt;/P&gt;&lt;P&gt;       with control TC_ZWMSCHED&lt;/P&gt;&lt;P&gt;       cursor TC_ZWMSCHED-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    module TC_ZWMSCHED_move.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE STATUS_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at g_TC_ZWMSCHED_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      module modify_inttab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 13:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025161#M415007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T13:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL:Scrolling up and down makes the data inconsistent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025162#M415008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Darshan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the changes you suggested and still i see the same problem. Is there any other suggestions that I can try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for ur response. I appreciate it&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 13:39:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025162#M415008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T13:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL:Scrolling up and down makes the data inconsistent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025163#M415009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             Remove the Tick under &amp;lt;b&amp;gt;Vertical&amp;lt;/b&amp;gt; check box under RESIZING option&lt;/P&gt;&lt;P&gt;in  Table Control  attributes.It is working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 13:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025163#M415009</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-03-16T13:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL:Scrolling up and down makes the data inconsistent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025164#M415010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vigneswaran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your suggestion did the trick. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to everyone who took time to help me out. I appreciate it a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 13:55:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025164#M415010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T13:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL:Scrolling up and down makes the data inconsistent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025165#M415011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI RAM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         i have the same issue,when i scroll down my top records are disappears .i am not clear what to change i changed the attributes of table control resizing vertical still the record dissapears,can u please help me what to do...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2007 06:29:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scrolling-up-and-down-makes-the-data-inconsistent/m-p/2025165#M415011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-03T06:29:27Z</dc:date>
    </item>
  </channel>
</rss>

