<?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 Module - Pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005239#M408638</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN,&lt;/P&gt;&lt;P&gt; In my screen layout,i have a table control which has 10 lines.But when i am executing the program,it is showing only 3 lines as output.Is it possible to show all the 10 lines in my output screen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Mar 2007 06:30:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-05T06:30:00Z</dc:date>
    <item>
      <title>Module - Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005239#M408638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN,&lt;/P&gt;&lt;P&gt; In my screen layout,i have a table control which has 10 lines.But when i am executing the program,it is showing only 3 lines as output.Is it possible to show all the 10 lines in my output screen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 06:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005239#M408638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T06:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Module - Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005240#M408639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes it is possible to show all 10 lines.&lt;/P&gt;&lt;P&gt;Check the attributes of the Table control and screen resolution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 06:33:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005240#M408639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T06:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Module - Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005241#M408640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Niranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are few possibilities... Which u have to check ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Check How many lines are there in u r ITAB. I.e Debug and check lines in ITAB.&lt;/P&gt;&lt;P&gt;2. Check wheater u have taken number of lines in Considetaion or Not? using following code IN PBO....&lt;/P&gt;&lt;P&gt;     LOOP AT &amp;lt;internal table&amp;gt; CURSOR &amp;lt;scroll-var&amp;gt;&lt;/P&gt;&lt;P&gt;                            [WITH CONTROL &amp;lt;table-control&amp;gt; ]&lt;/P&gt;&lt;P&gt;                            [FROM &amp;lt;line1&amp;gt; ]  [TO &amp;lt;line2&amp;gt; ]. &lt;/P&gt;&lt;P&gt;      ...&amp;lt;actions&amp;gt;...&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. See on screem size of u r table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lastly: Donot forget to Give points to those answers which u find helpful to you... : )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;P&gt;DARSHAN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 06:34:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005241#M408640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T06:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Module - Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005242#M408641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Before displaying the table control, put 10 in the lines attribute.&lt;/P&gt;&lt;P&gt;ex: &lt;/P&gt;&lt;P&gt;CONTROLS flights TYPE TABLEVIEW USING SCREEN 100.&lt;/P&gt;&lt;P&gt; flights-lines = 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case it displays 10 lines at a time&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Reward if it helps&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 06:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005242#M408641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T06:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Module - Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005243#M408642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasanth,&lt;/P&gt;&lt;P&gt; It is not showing 10 lines.It's only showing 4 lines in my output.How to proceed?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 05:58:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005243#M408642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T05:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Module - Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005244#M408643</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;jus check the screen resolution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto desktop --&amp;gt; right click ---&amp;gt; properties ---&amp;gt; click settings ---&amp;gt; change desktop area i.e 1024 x 768 pixels...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u may get the result after this modification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Senthil kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 06:15:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005244#M408643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T06:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Module - Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005245#M408644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN,&lt;/P&gt;&lt;P&gt; I solved the problem.There was a attribute in table control (RESIZING).When i unchecked it,the number of lines got exactly the as in layout.Thank you for all your inputs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 14:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/2005245#M408644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T14:20:06Z</dc:date>
    </item>
  </channel>
</rss>

