<?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: problem with table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/6088035#M1358119</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give your internal table name same as the name your have used for table in the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just use the Wizard. that will give you the code automatically&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Sep 2009 13:08:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-07T13:08:00Z</dc:date>
    <item>
      <title>problem with table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/6088033#M1358117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data from the internal table is not populating in my table control , i dont know what I am missing but i can see the structure populating with values in internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my code to move data from internal table to table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE status_1301.&lt;/P&gt;&lt;P&gt;  LOOP WITH CONTROL gt_con.&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;MODULE status_1301 OUTPUT.&lt;/P&gt;&lt;P&gt;  DESCRIBE TABLE gt_del_items LINES gv_fill.&lt;/P&gt;&lt;P&gt;  gt_con-lines = gv_fill.&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 gt_del_items INTO ZLOTAB_CONTRL INDEX gt_con-current_line.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " FILL_TABLE_CONTROL  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here zlotab_contrl is my structure.&lt;/P&gt;&lt;P&gt;with mandt , delivery and item fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz advise..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2009 11:32:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/6088033#M1358117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-07T11:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: problem with table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/6088034#M1358118</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;Declare your internal table same as that of your table control structure. In PBO of the screen you need to write the code to fetch the data from the internal table and display in the table control.You need to declare the variable globally in TOP INCLUDE and not locally in PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pradyumna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2009 12:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/6088034#M1358118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-07T12:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: problem with table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/6088035#M1358119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give your internal table name same as the name your have used for table in the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just use the Wizard. that will give you the code automatically&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2009 13:08:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/6088035#M1358119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-07T13:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: problem with table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/6088036#M1358120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;calling table control in the layout with right name solved the problem.&lt;/P&gt;&lt;P&gt;thanks for the reply though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2009 13:08:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/6088036#M1358120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-07T13:08:39Z</dc:date>
    </item>
  </channel>
</rss>

