<?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 control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3227027#M769698</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;In my table control i have 10 line item  be default  , when i save data in it .&lt;/P&gt;&lt;P&gt;Its  saving  now if  i scroll and enter 2 extra line i.e 12 line item.&lt;/P&gt;&lt;P&gt;then it only showing 10 line item. Why.. ?&lt;/P&gt;&lt;P&gt;All 12 line  data is avilable in inernal table. but it showing only 10  line item  why.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jan 2008 16:53:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-02T16:53:17Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3227027#M769698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;In my table control i have 10 line item  be default  , when i save data in it .&lt;/P&gt;&lt;P&gt;Its  saving  now if  i scroll and enter 2 extra line i.e 12 line item.&lt;/P&gt;&lt;P&gt;then it only showing 10 line item. Why.. ?&lt;/P&gt;&lt;P&gt;All 12 line  data is avilable in inernal table. but it showing only 10  line item  why.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 16:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3227027#M769698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T16:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3227028#M769699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Monica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at MI_MODIFICAR_TABLA (in PAI) and MO_PREPARAR_TABLE_CONTROL (in PBO)&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_T_MAT_CREAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MODULE &lt;STRONG&gt;MI_MODIFICAR_TABLA&lt;/STRONG&gt;.&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;&lt;/P&gt;&lt;P&gt;MODULE MI_MODIFICAR_TABLA INPUT.&lt;/P&gt;&lt;P&gt;  PERFORM F_MODIFICAR_TABLA.&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;FORM &lt;STRONG&gt;F_MODIFICAR_TABLA&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;  MODIFY G_T_MAT_CREAR FROM Z37_MM_E_ROP01 INDEX G_CTRL_MAT_CREAR-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;ENDFORM.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Z37_MM_E_ROP01 is the same WA that you should use in PBO to loop through the table control:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE &lt;STRONG&gt;MO_PREPARAR_TABLE_CONTROL&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT G_T_MAT_CREAR&lt;/P&gt;&lt;P&gt;   WITH CONTROL G_CTRL_MAT_CREAR&lt;/P&gt;&lt;P&gt;    INTO Z37_MM_E_ROP01.&lt;/P&gt;&lt;P&gt;...&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 MO_PREPARAR_TABLE_CONTROL OUTPUT.&lt;/P&gt;&lt;P&gt;  PERFORM F_PREPARAR_TABLE_CONTROL.&lt;/P&gt;&lt;P&gt;ENDMODULE.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM &lt;STRONG&gt;F_PREPARAR_TABLE_CONTROL&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;  DESCRIBE TABLE G_T_MAT_CREAR LINES G_CTRL_MAT_CREAR-LINES.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it will help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 17:30:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3227028#M769699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T17:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3227029#M769700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Monica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your PBO module, add syntax like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module PBO_100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;".... your exisitng code ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"...  and then this ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE your_int_table LINES Your_Table_Control_name-lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;" Example if Internal table name is "TC1" and the Table Control in the Screen painter is "TableControl1"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; describe table Tc1 lines TableControl1-lines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 20:56:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3227029#M769700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T20:56:08Z</dc:date>
    </item>
  </channel>
</rss>

