<?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: T/f data From Table Control Back to abap program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/t-f-data-from-table-control-back-to-abap-program/m-p/1496356#M230447</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use the table control wizard, it will write code to handle this for you automatically.  There will be a module within  a loop inside the flow logic of the screen, which will UPdate the ITAB when changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Jul 2006 13:47:25 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-07-31T13:47:25Z</dc:date>
    <item>
      <title>T/f data From Table Control Back to abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/t-f-data-from-table-control-back-to-abap-program/m-p/1496355#M230446</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;How can we transfer table control data after modification back to the abap program (in itab).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnx&lt;/P&gt;&lt;P&gt;sid&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 13:45:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/t-f-data-from-table-control-back-to-abap-program/m-p/1496355#M230446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-31T13:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: T/f data From Table Control Back to abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/t-f-data-from-table-control-back-to-abap-program/m-p/1496356#M230447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use the table control wizard, it will write code to handle this for you automatically.  There will be a module within  a loop inside the flow logic of the screen, which will UPdate the ITAB when changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 13:47:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/t-f-data-from-table-control-back-to-abap-program/m-p/1496356#M230447</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-31T13:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: T/f data From Table Control Back to abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/t-f-data-from-table-control-back-to-abap-program/m-p/1496357#M230448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For example,  here is some screen flow logic.  The BOLD code, is the part that will pass control to the ABAP for updating the ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

PROCESS AFTER INPUT.
* PAI FLOW LOGIC FOR TABLECONTROL 'ITABCON'
&amp;lt;b&amp;gt;  LOOP AT Itab.
    CHAIN.
      FIELD  Itab-CHECK.
      MODULE I_itabCON_MODIFY ON CHAIN-REQUEST.
    ENDCHAIN.
  ENDLOOP.&amp;lt;/b&amp;gt;


  MODULE USER_COMMAND_0200.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the specific module that updates the ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

module i_intrcon_modify input.

  &amp;lt;b&amp;gt;modify itab index itabcon-current_line.&amp;lt;/b&amp;gt;

endmodule.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 13:50:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/t-f-data-from-table-control-back-to-abap-program/m-p/1496357#M230448</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-31T13:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: T/f data From Table Control Back to abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/t-f-data-from-table-control-back-to-abap-program/m-p/1496358#M230449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thnx Rich.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 14:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/t-f-data-from-table-control-back-to-abap-program/m-p/1496358#M230449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-31T14:06:20Z</dc:date>
    </item>
  </channel>
</rss>

