<?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: problem while deleting the selected row in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-deleting-the-selected-row-in-table-control/m-p/4775879#M1119164</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi:&lt;/P&gt;&lt;P&gt;it is not working still.&lt;/P&gt;&lt;P&gt;link given is also visited b4 but problem is still same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i also have changed my PAI but it gives error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i just want that mark field of itab is filled with 'X' if it is selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Nov 2008 14:08:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-10T14:08:27Z</dc:date>
    <item>
      <title>problem while deleting the selected row in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-deleting-the-selected-row-in-table-control/m-p/4775876#M1119161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi.&lt;/P&gt;&lt;P&gt;i have a table which i m modifying in PAI to set the mark value to 'X'. so that i can delete the selected row.&lt;/P&gt;&lt;P&gt;it put the mark 'X' in mark field but it also vanishes all columns of that selected field and also empty the remaining fields which i have not marked.&lt;/P&gt;&lt;P&gt;my code is as follow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process after input.&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;"" And module is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module modify_itab input.&lt;/P&gt;&lt;P&gt;modify itab  index tab_ctrl-current_line.&lt;/P&gt;&lt;P&gt;endmodule.                 " modify_itab  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2008 13:50:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-deleting-the-selected-row-in-table-control/m-p/4775876#M1119161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-10T13:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: problem while deleting the selected row in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-deleting-the-selected-row-in-table-control/m-p/4775877#M1119162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tahir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just go through the following link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5604190"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2008 13:54:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-deleting-the-selected-row-in-table-control/m-p/4775877#M1119162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-10T13:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: problem while deleting the selected row in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-deleting-the-selected-row-in-table-control/m-p/4775878#M1119163</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;Try Updating your PAI as below:&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 AT itab WHERE mark EQ 'X'.  &lt;/P&gt;&lt;P&gt;DELETE itab                                    &lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2008 13:57:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-deleting-the-selected-row-in-table-control/m-p/4775878#M1119163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-10T13:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: problem while deleting the selected row in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-deleting-the-selected-row-in-table-control/m-p/4775879#M1119164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi:&lt;/P&gt;&lt;P&gt;it is not working still.&lt;/P&gt;&lt;P&gt;link given is also visited b4 but problem is still same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i also have changed my PAI but it gives error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i just want that mark field of itab is filled with 'X' if it is selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2008 14:08:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-deleting-the-selected-row-in-table-control/m-p/4775879#M1119164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-10T14:08:27Z</dc:date>
    </item>
  </channel>
</rss>

