<?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: table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1501084#M232038</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi adams,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In flow logic,&lt;/P&gt;&lt;P&gt;   in PAI,&lt;/P&gt;&lt;P&gt;   we also have to write some extra code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP WITH CONTROL TC.&lt;/P&gt;&lt;P&gt;    module TC_pai.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. This will ensure&lt;/P&gt;&lt;P&gt;   that the fields have the user has modified,&lt;/P&gt;&lt;P&gt;   goes back to the corresponding internal table.&lt;/P&gt;&lt;P&gt;  (so that, in pbo, it shows again, the latest ones)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module TC_pai.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; data : tabix like sy-tabix.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LINE_INFO-SIZE   = SY-LOOPC.&lt;/P&gt;&lt;P&gt;  LINE_INFO-ACTUAL = LINE_INFO-TOP + SY-STEPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE itq9015 INDEX LINE_INFO-ACTUAL.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING  YHRS_Q9015 to ITQ9015 .&lt;/P&gt;&lt;P&gt;    modify itq9015 index tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    exit from step-loop.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Aug 2006 10:57:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-18T10:57:51Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1501083#M232037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any way with which I capture that some values in fields change ? cause after pressing ENTER the table control again change to original one even after changing some fields. I know that the PBO again fires and it fills the table again with original values as i wrote the select query in PBO module.&lt;/P&gt;&lt;P&gt;but on same screen I have some selection fields on the basis of which the table fills and displayed in table control on same screen.&lt;/P&gt;&lt;P&gt;Now my ENTER button perform two task. &lt;/P&gt;&lt;P&gt;   one fills the table control if selection criteria changes.&lt;/P&gt;&lt;P&gt;second fills the table control if selection criteria changes and also modify the values of internal table , so that table control never shows original values even chaging some fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewarded to helpful answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2006 10:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1501083#M232037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-18T10:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1501084#M232038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi adams,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In flow logic,&lt;/P&gt;&lt;P&gt;   in PAI,&lt;/P&gt;&lt;P&gt;   we also have to write some extra code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP WITH CONTROL TC.&lt;/P&gt;&lt;P&gt;    module TC_pai.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. This will ensure&lt;/P&gt;&lt;P&gt;   that the fields have the user has modified,&lt;/P&gt;&lt;P&gt;   goes back to the corresponding internal table.&lt;/P&gt;&lt;P&gt;  (so that, in pbo, it shows again, the latest ones)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module TC_pai.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; data : tabix like sy-tabix.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LINE_INFO-SIZE   = SY-LOOPC.&lt;/P&gt;&lt;P&gt;  LINE_INFO-ACTUAL = LINE_INFO-TOP + SY-STEPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE itq9015 INDEX LINE_INFO-ACTUAL.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING  YHRS_Q9015 to ITQ9015 .&lt;/P&gt;&lt;P&gt;    modify itq9015 index tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    exit from step-loop.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2006 10:57:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1501084#M232038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-18T10:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1501085#M232039</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;Use the following in PAI.&lt;/P&gt;&lt;P&gt;chain.&lt;/P&gt;&lt;P&gt;*Mention the fields you want to capture&lt;/P&gt;&lt;P&gt;field mara-matnr.&lt;/P&gt;&lt;P&gt;endchain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2006 10:58:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1501085#M232039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-18T10:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1501086#M232040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REFER SAP HELP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2006 11:01:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1501086#M232040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-18T11:01:47Z</dc:date>
    </item>
  </channel>
</rss>

