<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665113#M294483</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;before fetching data into table control internal table. first u check the transaction code. i.e. using sy-tcode.&lt;/P&gt;&lt;P&gt;  ex, if sy-tcode = 'T1'.&lt;/P&gt;&lt;P&gt;         pass only the 10 values to internal table .&lt;/P&gt;&lt;P&gt;      elseif sy-tcode = 'T2'.&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Nov 2006 05:21:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-23T05:21:37Z</dc:date>
    <item>
      <title>Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665111#M294481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;        i hav a table control with 15 fields..i am creating 2 transactions for the same table control..&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;          i want that when i call the first transaction only the first 10 fields shud get displayed in my table control and when i call the second transaction the last 5 fields shud get displayed..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; plz guide&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 05:16:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665111#M294481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T05:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665112#M294482</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;use the tcoe SY-TCODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using this u will get current t code of  ur program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;put this in the if condition in ur PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 05:20:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665112#M294482</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-11-23T05:20: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/1665113#M294483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;before fetching data into table control internal table. first u check the transaction code. i.e. using sy-tcode.&lt;/P&gt;&lt;P&gt;  ex, if sy-tcode = 'T1'.&lt;/P&gt;&lt;P&gt;         pass only the 10 values to internal table .&lt;/P&gt;&lt;P&gt;      elseif sy-tcode = 'T2'.&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 05:21:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665113#M294483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T05:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665114#M294484</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;by checking the sy-tcode you can put your logic in PBO.&lt;/P&gt;&lt;P&gt;by using the invisible property you can hide the columns in table control you can check column by index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the example code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: waa LIKE LINE OF TAB_CONTROL-cols.
CLEAR waa.

      LOOP AT TAB_CONTROL-cols INTO waa.

        IF waa-index = 1 OR 
            waa-index = 2.

          waa-invisible = 'X'.
          MODIFY TAB_CONTROL-cols FROM waa.

        ENDIF.

      ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 05:27:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665114#M294484</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-11-23T05:27: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/1665115#M294485</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; U can use ST-TCODE in your PBO events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using this system command you can control the fields..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 06:06:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665115#M294485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T06:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665116#M294486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 07:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1665116#M294486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T07:36:47Z</dc:date>
    </item>
  </channel>
</rss>

