<?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: regarding table controls in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110077#M440855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;still it is not cleared but i came to know that table view means a collection of tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please give me some detail on that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in module pool programs we declare table controls as tableview but &lt;/P&gt;&lt;P&gt;i couldnt find the tableview object in data dictionary&lt;/P&gt;&lt;P&gt;what could be the reason?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Apr 2007 06:18:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-02T06:18:53Z</dc:date>
    <item>
      <title>regarding table controls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110073#M440851</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;please claer my doubts the below&lt;/P&gt;&lt;P&gt;1.what is a tableview? &lt;/P&gt;&lt;P&gt;2.how to capture a new record in table control?&lt;/P&gt;&lt;P&gt;3. what is a custom control?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and please let me know how to reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ranga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 04:23:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110073#M440851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T04:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: regarding table controls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110074#M440852</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;&lt;/P&gt;&lt;P&gt;2.To capture a new record in table control you need to give push button to read the table when user enters data and clicks pushbutton you have to read that table using loop statement and modify the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.A custom control is an area on a screen. You create them in the Screen Painter, and, like all other screen objects, they have a unique name. You use custom controls to embed controls. A control is a software component on the presentation server, which can be either an ActiveX control or a JavaBean, depending on the SAPgui you are using. They allow you to perform tasks, such as editing texts, locally on the presentation server. The control is driven by the application logic, which still runs on the application server. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;veeresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 04:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110074#M440852</guid>
      <dc:creator>former_member673464</dc:creator>
      <dc:date>2007-04-02T04:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: regarding table controls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110075#M440853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi srinivas, &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;   for table view plese refer to the thread:&lt;/P&gt;&lt;P&gt;   &amp;lt;a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/collaboration"&amp;gt;https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/collaboration&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. to capture a new record in table control write this code in pai &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT itab.&lt;/P&gt;&lt;P&gt;    MODULE modify_itab.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the module modify_itab write the foolowing line&lt;/P&gt;&lt;P&gt;MODIFY itab INDEX tabcontrol-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will pick all the values of table control into internal table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. for custom control refer to folloing link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw04/helpdata/en/86/2d61d859c711d29bd90000e8a47b2e/frameset.htm"&amp;gt;http://help.sap.com/saphelp_nw04/helpdata/en/86/2d61d859c711d29bd90000e8a47b2e/frameset.htm&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if you want to reward points  mark this thread as 'Problem Solved' or with appropriate points on the side of ur post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;reward points accordingly.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 04:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110075#M440853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T04:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: regarding table controls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110076#M440854</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;Here is step by step explaination to your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Table view are created on 1 table or by combinning many tables. They can be used to view details from various tables in one go .that's called Projection view. and they also can be used to maintain data of the table called maintainance view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Maintainance view is also used to add new record to table. If you are discussing table control in Module pool programming you have to do codding in PAI. Inside the loop of Table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. As pervious answers gives perfact details I am not repeating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DARSHAN PATEL.&lt;/P&gt;&lt;P&gt;**Please reward points to helpful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 04:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110076#M440854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T04:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: regarding table controls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110077#M440855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;still it is not cleared but i came to know that table view means a collection of tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please give me some detail on that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in module pool programs we declare table controls as tableview but &lt;/P&gt;&lt;P&gt;i couldnt find the tableview object in data dictionary&lt;/P&gt;&lt;P&gt;what could be the reason?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 06:18:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-controls/m-p/2110077#M440855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T06:18:53Z</dc:date>
    </item>
  </channel>
</rss>

