<?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/8390674#M1643863</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;i am working on hr project.&lt;/P&gt;&lt;P&gt;i have displayed all the infotypes in tree structure format.&lt;/P&gt;&lt;P&gt;on expanding a infotype, i get list of subtypes it has ,and on double clicking respective subtype its corresponding fields are displayed.for field display i have used table control.&lt;/P&gt;&lt;P&gt;the problem i am facing is described below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose ,&lt;/P&gt;&lt;P&gt;     i click p0000(action which contains 28 fields),fields are displayed on table control.&lt;/P&gt;&lt;P&gt;next if i click p0002(personal details which contains 70 fields),only first 28 filelds are getting displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code  pbo:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE get_itfld.&lt;/P&gt;&lt;P&gt;LOOP AT is_ftable INTO wa_itf WITH CONTROL itfldsel.&lt;/P&gt;&lt;P&gt;    MODULE fill_itfld.&lt;/P&gt;&lt;P&gt;ENDLOOP.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE get_itfld fills the internal table is_ftable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE FILL_ITFLD OUTPUT.&lt;/P&gt;&lt;P&gt;  MOVE-CORRESPONDING wa_itf TO i_itf.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually all 70 fields are getting filled in is_ftable but while the loop execution wa_itf gets filled only till 28th field.&lt;/P&gt;&lt;P&gt;pls help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 05 Nov 2011 12:17:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-05T12:17:04Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/8390674#M1643863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;i am working on hr project.&lt;/P&gt;&lt;P&gt;i have displayed all the infotypes in tree structure format.&lt;/P&gt;&lt;P&gt;on expanding a infotype, i get list of subtypes it has ,and on double clicking respective subtype its corresponding fields are displayed.for field display i have used table control.&lt;/P&gt;&lt;P&gt;the problem i am facing is described below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose ,&lt;/P&gt;&lt;P&gt;     i click p0000(action which contains 28 fields),fields are displayed on table control.&lt;/P&gt;&lt;P&gt;next if i click p0002(personal details which contains 70 fields),only first 28 filelds are getting displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code  pbo:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE get_itfld.&lt;/P&gt;&lt;P&gt;LOOP AT is_ftable INTO wa_itf WITH CONTROL itfldsel.&lt;/P&gt;&lt;P&gt;    MODULE fill_itfld.&lt;/P&gt;&lt;P&gt;ENDLOOP.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE get_itfld fills the internal table is_ftable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE FILL_ITFLD OUTPUT.&lt;/P&gt;&lt;P&gt;  MOVE-CORRESPONDING wa_itf TO i_itf.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually all 70 fields are getting filled in is_ftable but while the loop execution wa_itf gets filled only till 28th field.&lt;/P&gt;&lt;P&gt;pls help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Nov 2011 12:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/8390674#M1643863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-05T12:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/8390675#M1643864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I think you didn't fill the LINES attribute of the Table Control before displaying it (A very common issue, by the way)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE get_itfld.
LOOP AT is_ftable INTO wa_itf WITH CONTROL itfldsel.
MODULE fill_itfld.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the &lt;STRONG&gt;GET_ITFLD&lt;/STRONG&gt; Module you should include the corresponding sentence after filling the internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DESCRIBE TABLE is_ftable LINES itfldsel-LINES.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Nov 2011 12:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/8390675#M1643864</guid>
      <dc:creator>former_member209703</dc:creator>
      <dc:date>2011-11-05T12:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/8390676#M1643865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jose,&lt;/P&gt;&lt;P&gt;thanks.it helped me.problem solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Nov 2011 17:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/8390676#M1643865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-05T17:06:57Z</dc:date>
    </item>
  </channel>
</rss>

