<?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: delete  row from table in htmlb in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815414#M349211</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;without debugging you wont find answer for this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in se 80 go to utilities-&amp;gt;settings-&amp;gt;abap editor-&amp;gt;debuggin-&amp;gt;activate external debuggin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now place a external break point at &lt;/P&gt;&lt;P&gt;IF tv_data1-&amp;gt;prevselectedrowindex IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now execute the page and click on "delete button" which triggers the server event. the debugger should start now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Jan 2007 09:19:29 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2007-01-22T09:19:29Z</dc:date>
    <item>
      <title>delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815404#M349201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;please help me!&lt;/P&gt;&lt;P&gt;This is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'delete'.&lt;/P&gt;&lt;P&gt; IF tv IS NOT INITIAL.       &lt;/P&gt;&lt;P&gt;DATA: tv_data1 TYPE REF TO cl_htmlb_event_tableview.&lt;/P&gt;&lt;P&gt; tv_data1 = tv-&amp;gt;data.&lt;/P&gt;&lt;P&gt; IF tv_data1-&amp;gt;prevselectedrowindex IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;         FIELD-SYMBOLS: &amp;lt;row1&amp;gt; LIKE LINE OF LV.&lt;/P&gt;&lt;P&gt;         READ TABLE LV INDEX tv_data1-&amp;gt;prevselectedrowindex ASSIGNING &amp;lt;row1&amp;gt;.&lt;/P&gt;&lt;P&gt;          DELETE FROM ZZ07_LV WHERE LVID = &amp;lt;row1&amp;gt;-LVID.&lt;/P&gt;&lt;P&gt;     else.&lt;/P&gt;&lt;P&gt;          message = 'Tv is initial!!!'.&lt;/P&gt;&lt;P&gt;          navigation-&amp;gt;set_parameter( 'message' ).&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;          navigation-&amp;gt;goto_page( 'anzeigen.htm' ).&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course i have LV as attribute of tabeltyp and this shall hapend in oninputrocessing. But i have no idea why nothing happen. I can't delete any row!&lt;/P&gt;&lt;P&gt;Please help mee as soon as possible.&lt;/P&gt;&lt;P&gt;YOu can write me as well: merian_z@yahoo.de&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 21:40:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815404#M349201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-21T21:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815405#M349202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;move this thread to BSP area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is LVID is the key field of the internal table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is ZZ07_LV  an internal table or DB talbe?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 05:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815405#M349202</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-01-22T05:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815406#M349203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for reply:).&lt;/P&gt;&lt;P&gt;LVID is the key of DB table and ZZ07_LV&lt;/P&gt;&lt;P&gt;is the DB.&lt;/P&gt;&lt;P&gt;I'm really confused and I don't know why is still not working...&lt;/P&gt;&lt;P&gt;.Please help me.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 07:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815406#M349203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T07:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815407#M349204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;I think that probably the problem is with this &amp;lt;row&amp;gt;. It doesn't realy rcognise the row....&lt;/P&gt;&lt;P&gt;Is there another way or why is like this what do think?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Error is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"500 SAP Internal Server Error&lt;/P&gt;&lt;P&gt;Fehlermeldung: Feldsymbol ist noch nicht zugewiesen. ( Abbruchsart: RABAX_STATE )"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means something like: The field symbol has not been associated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 07:19:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815407#M349204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T07:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815408#M349205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;change this line&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;row1&amp;gt; LIKE LINE OF LV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;row1&amp;gt; type any .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;place and HTTP break point and analyze which line is causing error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 07:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815408#M349205</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-01-22T07:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815409#M349206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;thank you very much.&lt;/P&gt;&lt;P&gt;I change it and now he tells me that in this case &amp;lt;row1&amp;gt;-LVID. row diesn't have this LVID any more beacuse is missing struktur.&lt;/P&gt;&lt;P&gt;Do you think he doesn't recognize this row and that why I can't delete the row.&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;P&gt;Mariana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WHEN 'delete'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF tv IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        message = 'Tv is not initial'.&lt;/P&gt;&lt;P&gt;        navigation-&amp;gt;set_parameter( 'message' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: tv_data1 TYPE REF TO cl_htmlb_event_tableview.&lt;/P&gt;&lt;P&gt;       tv_data1 = tv-&amp;gt;data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       IF tv_data1-&amp;gt;prevselectedrowindex IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;         FIELD-SYMBOLS: &amp;lt;row1&amp;gt; type any.&lt;/P&gt;&lt;P&gt;         READ TABLE LV INDEX tv_data1-&amp;gt;prevselectedrowindex ASSIGNING &amp;lt;row1&amp;gt;.&lt;/P&gt;&lt;P&gt;DELETE FROM ZZ07_LV WHERE LVID = &amp;lt;row1&amp;gt;-LVID.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;          message = 'Tv is initial!!!'.&lt;/P&gt;&lt;P&gt;          navigation-&amp;gt;set_parameter( 'message' ).&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;          navigation-&amp;gt;goto_page( 'anzeigen.htm' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 07:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815409#M349206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T07:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815410#M349207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;row1&amp;gt; type any ,&lt;/P&gt;&lt;P&gt;                             &amp;lt;field&amp;gt; type any .&lt;/P&gt;&lt;P&gt;READ TABLE LV INDEX tv_data1-&amp;gt;prevselectedrowindex ASSIGNING &amp;lt;row1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign component 'LVID' of structure &amp;lt;row1&amp;gt; to &amp;lt;field&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not &amp;lt;field&amp;gt; is initial .&lt;/P&gt;&lt;P&gt;DELETE FROM ZZ07_LV WHERE LVID = &amp;lt;field&amp;gt; .&lt;/P&gt;&lt;P&gt;endif .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 07:46:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815410#M349207</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-01-22T07:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815411#M349208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi RAJA,&lt;/P&gt;&lt;P&gt;I think this is in the right direction, but is still not working. This is my code now. I implement your suggestion:But there is still error:  500 SAP Internal Server Error&lt;/P&gt;&lt;P&gt;Fehlermeldung: Feldsymbol ist noch nicht zugewiesen. ( Abbruchsart: RABAX_STATE )&lt;/P&gt;&lt;P&gt;That's mean that fielssymbol is not correct or something like that. Here is my code again:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   WHEN 'delete'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF tv IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        message = 'Tv is not initial'.&lt;/P&gt;&lt;P&gt;        navigation-&amp;gt;set_parameter( 'message' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        DATA: tv_data1 TYPE REF TO cl_htmlb_event_tableview.&lt;/P&gt;&lt;P&gt;        tv_data1 = tv-&amp;gt;data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF tv_data1-&amp;gt;prevselectedrowindex IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          FIELD-SYMBOLS: &amp;lt;row1&amp;gt; type any , &amp;lt;field&amp;gt; type any .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          READ TABLE LV INDEX tv_data1-&amp;gt;prevselectedrowindex ASSIGNING &amp;lt;row1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          assign component 'LVID' of structure &amp;lt;row1&amp;gt; to &amp;lt;field&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          IF not &amp;lt;field&amp;gt; is initial .&lt;/P&gt;&lt;P&gt;            DELETE FROM ZZ07_LV WHERE LVID = &amp;lt;field&amp;gt; .&lt;/P&gt;&lt;P&gt;          &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;&lt;/P&gt;&lt;P&gt; navigation-&amp;gt;goto_page( 'anzeigen.htm' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 07:57:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815411#M349208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T07:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815412#M349209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as i said earlier you have to go thru debugger and let me know exactly in which link this problem is happenning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 08:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815412#M349209</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-01-22T08:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815413#M349210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi RAJA,&lt;/P&gt;&lt;P&gt;I tries to debugg, but it is not debugging my code. This code is written in eventhandler in the BSP and it is not reaching it. I tries couple times.&lt;/P&gt;&lt;P&gt;The error is stil the same like it was with the field.&lt;/P&gt;&lt;P&gt;Di you think is beacuase of the row? Probably is not understanding wich row...&lt;/P&gt;&lt;P&gt;Is there another way to delete this row..&lt;/P&gt;&lt;P&gt;Thank  a lot for help.&lt;/P&gt;&lt;P&gt;Mariana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 08:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815413#M349210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T08:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815414#M349211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;without debugging you wont find answer for this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in se 80 go to utilities-&amp;gt;settings-&amp;gt;abap editor-&amp;gt;debuggin-&amp;gt;activate external debuggin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now place a external break point at &lt;/P&gt;&lt;P&gt;IF tv_data1-&amp;gt;prevselectedrowindex IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now execute the page and click on "delete button" which triggers the server event. the debugger should start now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 09:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815414#M349211</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-01-22T09:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815415#M349212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;I tried this bit the debugger go into another mehtod ...i realyy don't understand why the debuuger is not showing my code..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 10:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815415#M349212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T10:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: delete  row from table in htmlb</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815416#M349213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is your code activated? If not then also you wont see your latest code in debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this thread..&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="351210"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 20:10:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-row-from-table-in-htmlb/m-p/1815416#M349213</guid>
      <dc:creator>raja_thangamani</dc:creator>
      <dc:date>2007-01-22T20:10:54Z</dc:date>
    </item>
  </channel>
</rss>

