<?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: tablecontrol in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578754#M861525</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;I am hoping that you have missed the logic in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI - Implement the below logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP.					   &lt;/P&gt;&lt;P&gt;CHAIN.						&lt;/P&gt;&lt;P&gt;*...Validations for entered role details						&lt;/P&gt;&lt;P&gt;      FIELD f1.							&lt;/P&gt;&lt;P&gt;      FIELD f1 MODULE validate_f1 ON INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In side the this module validate your input entered on the field F1 in table control on screen.&lt;/P&gt;&lt;P&gt;do the validation for all fields like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then at the end of the final field Modify the internal table that holds the data of the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDCHAIN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;In PBO - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT 'internal table' WITH CONTROL 'table control name given on the screen' CURSOR tablecontrol-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write a module to display the details from internal table to the Table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Apr 2008 23:50:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-04T23:50:27Z</dc:date>
    <item>
      <title>tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578752#M861523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello gurus ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;I am using a table control in that I have call some data from differt table and I want to insert some data manually in differt coloum , and some calculation in differt column ,Now data is caoming from differt table and I can enter the value also in visible column , but when I press enter , the entry data is disapper means what I have enterd . I mean to say hw to fix taht data in the screen after pressing enter, is there any way or example .Plz help .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am waiting for your valuable answer .&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;&lt;/P&gt;&lt;P&gt;Regards .&lt;/P&gt;&lt;P&gt;Joy .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Mar 2008 04:02:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578752#M861523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-29T04:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578753#M861524</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;in ther PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop.&lt;/P&gt;&lt;P&gt;append the work area of the table control into aan internal table.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop.&lt;/P&gt;&lt;P&gt;  read the same internal table on &amp;lt;table control&amp;gt;-current_line into the table control work area.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves ur problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Mar 2008 19:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578753#M861524</guid>
      <dc:creator>nivin_varkey</dc:creator>
      <dc:date>2008-03-29T19:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578754#M861525</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;I am hoping that you have missed the logic in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI - Implement the below logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP.					   &lt;/P&gt;&lt;P&gt;CHAIN.						&lt;/P&gt;&lt;P&gt;*...Validations for entered role details						&lt;/P&gt;&lt;P&gt;      FIELD f1.							&lt;/P&gt;&lt;P&gt;      FIELD f1 MODULE validate_f1 ON INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In side the this module validate your input entered on the field F1 in table control on screen.&lt;/P&gt;&lt;P&gt;do the validation for all fields like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then at the end of the final field Modify the internal table that holds the data of the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDCHAIN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;In PBO - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT 'internal table' WITH CONTROL 'table control name given on the screen' CURSOR tablecontrol-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write a module to display the details from internal table to the Table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 23:50:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tablecontrol/m-p/3578754#M861525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T23:50:27Z</dc:date>
    </item>
  </channel>
</rss>

