<?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/3342812#M801437</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;  i have made a table control in which i have made an internal table as: &lt;/P&gt;&lt;P&gt;DATA:BEGIN OF itab OCCURS 0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ebeln LIKE ekko-ebeln,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aedat LIKE ekko-aedat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ebelp LIKE ekpo-ebelp,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matnr LIKE ekpo-matnr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;netwr LIKE ekpo-netwr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these field i have mapped in the table control all the data are displayed in the table control except for the field netwr LIKE ekpo-netwr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me out.  as the internal table gets the value when i check in the debugging bt the table control doesnt print it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points for all useful ans.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jan 2008 11:48:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-23T11:48:09Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3342812#M801437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;  i have made a table control in which i have made an internal table as: &lt;/P&gt;&lt;P&gt;DATA:BEGIN OF itab OCCURS 0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ebeln LIKE ekko-ebeln,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aedat LIKE ekko-aedat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ebelp LIKE ekpo-ebelp,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matnr LIKE ekpo-matnr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;netwr LIKE ekpo-netwr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these field i have mapped in the table control all the data are displayed in the table control except for the field netwr LIKE ekpo-netwr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me out.  as the internal table gets the value when i check in the debugging bt the table control doesnt print it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points for all useful ans.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 11:48:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3342812#M801437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T11:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3342813#M801438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Loop at itab with control tc_ctrl.&lt;/P&gt;&lt;P&gt;   module output_data.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module output_data.&lt;/P&gt;&lt;P&gt;   *here pass value to table control fields&lt;/P&gt;&lt;P&gt;   is_ekko-ebeln = itab-ebeln.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Naveena M on Jan 23, 2008 5:31 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 11:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3342813#M801438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T11:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3342814#M801439</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; Check In PBO &lt;/P&gt;&lt;P&gt;LOOP AT  itab WITH CONTROL Tablecontrol&lt;/P&gt;&lt;P&gt;                                 Tablecontrol-current_line .&lt;/P&gt;&lt;P&gt;module update." where you pass the data to table control.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;when you loop the table in PCO check weather the data is passed to the table controls elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Gopi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 12:00:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3342814#M801439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T12:00:43Z</dc:date>
    </item>
  </channel>
</rss>

