<?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 - doubt? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474965#M222778</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe you need to fill the table before you call your screen. The PBO bulds the table control from what's in the table to start with, i.e. before you have called the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Sep 2006 05:31:47 GMT</pubDate>
    <dc:creator>former_member186741</dc:creator>
    <dc:date>2006-09-05T05:31:47Z</dc:date>
    <item>
      <title>Table control - doubt?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474963#M222776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have given my code here, I dont know why the data from the table is not displayed in the table control.&lt;/P&gt;&lt;P&gt;table control name - TABLE_CONTROL&lt;/P&gt;&lt;P&gt;internal table name - TCTRL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Flow logic:&lt;/P&gt;&lt;P&gt;   PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt; MODULE STATUS_0100.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; LOOP at tctrl into zalvrg_cx_fcat WITH CONTROL TABLE_CONTROL.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT tctrl with control table_control cursor&lt;/P&gt;&lt;P&gt;table_control-current_line.&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 TAB_CONT.&lt;/P&gt;&lt;P&gt;&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;  module exit_program at exit-command.&lt;/P&gt;&lt;P&gt;  field rs38m-programm module check_programm.&lt;/P&gt;&lt;P&gt;  module init_controls.&lt;/P&gt;&lt;P&gt;  module pop_tblnam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at tctrl.&lt;/P&gt;&lt;P&gt;    MODULE PAI_TAB_CONT.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in module pai_tab_cont-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT T_FIELDS.&lt;/P&gt;&lt;P&gt;    MOVE: T_FIELDS-TABNAME   TO TCTRL-TABNAM,&lt;/P&gt;&lt;P&gt;          T_FIELDS-FIELDNAME TO TCTRL-FIELDNAME,&lt;/P&gt;&lt;P&gt;          T_FIELDS-POSITION  TO TCTRL-COLPOS,&lt;/P&gt;&lt;P&gt;          T_FIELDS-OUTPUTLEN TO TCTRL-OUTLEN,&lt;/P&gt;&lt;P&gt;          T_FIELDS-FIELDTEXT TO TCTRL-COLHEAD.&lt;/P&gt;&lt;P&gt;    APPEND TCTRL.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the data in t_fields internal table. I have to display in table control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 04:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474963#M222776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T04:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Table control - doubt?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474964#M222777</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;did u take the fields from program??&lt;/P&gt;&lt;P&gt;if not.. &lt;/P&gt;&lt;P&gt;since u have ur internal table declared in the program..&lt;/P&gt;&lt;P&gt;select the table control fields by selecting GET FROM PROGRAM and put those fields in ur table control..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 04:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474964#M222777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T04:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Table control - doubt?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474965#M222778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe you need to fill the table before you call your screen. The PBO bulds the table control from what's in the table to start with, i.e. before you have called the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 05:31:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474965#M222778</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-09-05T05:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Table control - doubt?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474966#M222779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Append the Contents to an Internal table and in PBO Module Move the Correponding values from the Internal table to the Table control.&lt;/P&gt;&lt;P&gt;   Hope this would be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 05:38:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474966#M222779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T05:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table control - doubt?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474967#M222780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through these links, which ll give you brief idea about the table control, that you can implement in your requirement,&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb381a358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb381a358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abap4.tripod.com/SAP_Functions.html" target="test_blank"&gt;http://abap4.tripod.com/SAP_Functions.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Sep 2006 05:45:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-doubt/m-p/1474967#M222780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-05T05:45:33Z</dc:date>
    </item>
  </channel>
</rss>

