<?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/4681092#M1100748</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 tab strip control under a tab in a subscreen i have a i/p o/p field as number of partners and on entering a value into it that many rows should be displayed by openibg a table control in order to enter data like name of owner/ partner  , address , age , sex , location etc . And i should have a pushbutton as save so that if i click on it the total data should be inserted into the table.&lt;/P&gt;&lt;P&gt;  And with that i also have some fields like survey number and reg number which also should be inserted into table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Syam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Oct 2008 04:05:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-22T04:05:13Z</dc:date>
    <item>
      <title>table  control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4681092#M1100748</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 tab strip control under a tab in a subscreen i have a i/p o/p field as number of partners and on entering a value into it that many rows should be displayed by openibg a table control in order to enter data like name of owner/ partner  , address , age , sex , location etc . And i should have a pushbutton as save so that if i click on it the total data should be inserted into the table.&lt;/P&gt;&lt;P&gt;  And with that i also have some fields like survey number and reg number which also should be inserted into table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Syam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 04:05:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4681092#M1100748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T04:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: table  control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4681093#M1100749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;starts with normal screen elements ,tab strip control examples and end with Tablecontrol examples already available, choose one of them and try to proceed. they are easy to understand, you can easily code also.&lt;/P&gt;&lt;P&gt;DEMO&lt;STRONG&gt;TAB&lt;/STRONG&gt;STRIP* for tabstrip&lt;/P&gt;&lt;P&gt;DEMO&lt;STRONG&gt;TABLE&lt;/STRONG&gt;CONTROL* for table control&lt;/P&gt;&lt;P&gt;also use ABAPDOCU transaction for userdialogs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 04:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4681093#M1100749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T04:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: table  control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4681094#M1100750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Syam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a sample code for making the Columns in a table Control invisible.&lt;/P&gt;&lt;P&gt;You just have to mention which Column you want to hide.&lt;/P&gt;&lt;P&gt;Suppose you dont want the third Column to be displayed then give ****&lt;STRONG&gt;IF waa-index = 3&lt;/STRONG&gt;**.&lt;/P&gt;&lt;P&gt;******************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-tcode = 'ZAMITTRANS_AMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: waa LIKE LINE OF TABCON-cols.&lt;/P&gt;&lt;P&gt;CLEAR waa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT TABCON-cols INTO waa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF waa-index = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          waa-invisible = 'X'.&lt;/P&gt;&lt;P&gt;          MODIFY TABCON-cols FROM waa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 05:51:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4681094#M1100750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T05:51:37Z</dc:date>
    </item>
  </channel>
</rss>

