<?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: Insert multiple Rows at a time in Table control. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553720#M1563691</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if sy-ucomm = 'INSERT'.
  add 10 to tabc-lines.    "tabc is the table control.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anmol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jan 2011 13:19:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-01-25T13:19:55Z</dc:date>
    <item>
      <title>Insert multiple Rows at a time in Table control.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553717#M1563688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am Doing Dialog Programming,&lt;/P&gt;&lt;P&gt;In Table control I have to insert some values,  by clicking on INSERT Button, so now its allowing only single rows to edit..&lt;/P&gt;&lt;P&gt;But as per my requirenments  &lt;STRONG&gt;"I want atleast 10 Rows should be editable,at a time when user clicks on INSERT."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz have eye on it.&lt;/P&gt;&lt;P&gt;your suggestions are always welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 11:57:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553717#M1563688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-25T11:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Insert multiple Rows at a time in Table control.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553718#M1563689</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;PRE&gt;&lt;CODE&gt;in PBO
module insert.
loop at itab.

endloop.

in program

module insert.
if ok_code = 'INS'.
DESCRIBE TABLE ITAB LINES TC-LINES.
TC-LINES = TC-LINES + 10.  " This will insert 10 lines in Table control
ENDIF.  "or
do 10 times.
insert initial line into itab. " For More info Take F1 help on this Key word
enddo.
endmodule.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 12:28:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553718#M1563689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-25T12:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Insert multiple Rows at a time in Table control.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553719#M1563690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vivek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please decleare a field symbol to your table control for example:&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;tc&amp;gt; TYPE cxtab_control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN tc TO &amp;lt;tc&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the field-symbol &amp;lt;tc&amp;gt; has now the field 'LINES'. here you can declare how many rows you wanna show.&lt;/P&gt;&lt;P&gt;You should at the rows to your internal table too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can see which fields you can adjust in the structure SCXTAB_CONTROL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can set the field as input field with loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;jens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 12:52:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553719#M1563690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-25T12:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Insert multiple Rows at a time in Table control.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553720#M1563691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if sy-ucomm = 'INSERT'.
  add 10 to tabc-lines.    "tabc is the table control.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anmol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 13:19:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553720#M1563691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-25T13:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Insert multiple Rows at a time in Table control.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553721#M1563692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all,&lt;/P&gt;&lt;P&gt;those who replied.&lt;/P&gt;&lt;P&gt;I got solution,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have rewarded Point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Post Closed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 15:34:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-multiple-rows-at-a-time-in-table-control/m-p/7553721#M1563692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-25T15:34:45Z</dc:date>
    </item>
  </channel>
</rss>

