<?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: Error in Table Maintenance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638128#M1442991</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked the link that you have sent. I have used the method to convert the string to structure. Yet i get a run time error saying:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The call of the method "READ_CONTAINER_C" of the class&lt;/P&gt;&lt;P&gt; "CL_ABAP_CONTAINER_UTILITIES" is incorrect. It was tried&lt;/P&gt;&lt;P&gt;to transfer a non-compatible variable to the formal parameter "IM_CONTAINER".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following fields in the table:&lt;/P&gt;&lt;P&gt;BNAME - User Name&lt;/P&gt;&lt;P&gt;GSWRT  - Currency Field &lt;/P&gt;&lt;P&gt;FIRST_NAME&lt;/P&gt;&lt;P&gt;LAST_NAME&lt;/P&gt;&lt;P&gt;ERNAM&lt;/P&gt;&lt;P&gt;ERDAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I  am unable to use the offseting as there is a currency field in it. Do we have a work around. In short, i am facing the same problem as the person in the link you sent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: chanakya reddy on Feb 22, 2010 2:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Feb 2010 13:19:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-22T13:19:23Z</dc:date>
    <item>
      <title>Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638120#M1442983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written code for the event 02 with the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF l_total.&lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE zztable.&lt;/P&gt;&lt;P&gt;          INCLUDE  STRUCTURE vimtbflags.&lt;/P&gt;&lt;P&gt;  DATA  END OF l_total.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  LOOP AT total INTO l_total.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the error  UC_OBJECTS_NOT_CONVERTIBLE, when LOOP AT statement is executed. All i want to find is the ACTION on the record in the table maintenance, whether the record is updated or inserted. Any pointers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 07:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638120#M1442983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-22T07:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638121#M1442984</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;No pointers are required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have used like...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if not gt_zmm_camera_data_mod[] is initial.

    loop at gt_zmm_camera_data_mod into wa_zmm_camera_data_mod.
      wa_zmm_camera_data_mod-verify     =  c_n.
      wa_zmm_camera_data_mod-verified   =  c_n.
      wa_zmm_camera_data_mod-zcapture   =  c_n.
      wa_zmm_camera_data_mod-captured   =  c_n.
      wa_zmm_camera_data_mod-error      =  c_n.

      modify gt_zmm_camera_data_mod from wa_zmm_camera_data_mod index sy-tabix
                                                      transporting verify verified
                                                                  zcapture captured
                                                                  error.
    endloop.


    modify zmm_camera_data from table gt_zmm_camera_data_mod.
  endif.
{code]

or U can try like this.....

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; IF maint_mode = 'U' AND function = 'SAVE'.&lt;/P&gt;&lt;P&gt;    LOOP AT total.&lt;/P&gt;&lt;P&gt;      READ TABLE extract WITH KEY &amp;lt;vim_xtotal_key&amp;gt;.&lt;/P&gt;&lt;P&gt;      IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;        IF NOT extract&lt;EM&gt;11(15) IS INITIAL AND NOT extract&lt;/EM&gt;26(1) IS INITIAL&lt;/P&gt;&lt;P&gt;                                         AND NOT extract+329(1) IS INITIAL.&lt;/P&gt;&lt;P&gt;          wa_zmm_camera_data_temp-lipds = extract+11(15) .&lt;/P&gt;&lt;P&gt;          APPEND  wa_zmm_camera_data_temp TO gt_zmm_camera_data_temp.&lt;/P&gt;&lt;P&gt;          CLEAR : wa_zmm_camera_data_temp.&lt;/P&gt;&lt;P&gt;        ELSEIF  extract&lt;EM&gt;11(15) IS INITIAL OR extract&lt;/EM&gt;26(1) IS INITIAL&lt;/P&gt;&lt;P&gt;                                          OR extract+329(1) IS INITIAL.&lt;/P&gt;&lt;P&gt;          wa_zmm_camera_data_temp-lipds = extract+11(15) .&lt;/P&gt;&lt;P&gt;          wa_zmm_camera_data_temp-flag = c_x.&lt;/P&gt;&lt;P&gt;          APPEND  wa_zmm_camera_data_temp TO gt_zmm_camera_data_temp.&lt;/P&gt;&lt;P&gt;          CLEAR : wa_zmm_camera_data_temp.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&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;Reagrds&lt;/P&gt;&lt;P&gt;Arbind Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 07:56:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638121#M1442984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-22T07:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638122#M1442985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say for example i have ten records, out of which 5 are already existing and a field in changed in each record and 5 are newly inserted. I would like to know the status of these records. Like first five should have U and the last should have I. In summary, I would like to know the action that was performed on each record. The internal table TOTAL has line type which is 256 characters in length. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Chan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 08:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638122#M1442985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-22T08:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638123#M1442986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Chan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Event02 of the TMG i don't think you will have the field symbol &amp;lt;ACTION&amp;gt; at your disposal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can access this field symbol in the event 01. The values which &amp;lt;ACTION&amp;gt; can hold are given in this SAP documentation :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[http://help.sap.com/saphelp_nw04s/helpdata/EN/91/ca9f80a9d111d1a5690000e82deaaa/content.htm|http://help.sap.com/saphelp_nw04s/helpdata/EN/91/ca9f80a9d111d1a5690000e82deaaa/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you should be using the Event 01 &amp;amp; not 02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 09:04:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638123#M1442986</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-22T09:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638124#M1442987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yea I typed in the incorrect event. Right now I can see value into &amp;lt;ACTION&amp;gt; field symbol. I have one more query, how can i access the contents of this table. If i am using offsetting they are fetching incorrect values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank,&lt;/P&gt;&lt;P&gt;Chan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 09:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638124#M1442987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-22T09:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638125#M1442988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please share the code which you are using to achieve this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 10:22:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638125#M1442988</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-22T10:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638126#M1442989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following code is returning the sy-subrc as ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       ASSIGN COMPONENT 'ERNAM' OF STRUCTURE total TO &amp;lt;l_fval&amp;gt;. "Creation User&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       IF sy-subrc = 0.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         &amp;lt;l_fval&amp;gt; = sy-uname.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       ASSIGN COMPONENT 'ERDAT' OF STRUCTURE total TO &amp;lt;l_fval&amp;gt;. "Creation Date&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       IF sy-subrc = 0.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         &amp;lt;l_fval&amp;gt; = sy-datum.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the assign component statement is failing. Total internal table doest have the component ERNAM or ERDAT. It has a component Line which is 256 char in length. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried using the offseting but its not pointing to the right positions as i have a currency field in between.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 10:58:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638126#M1442989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-22T10:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638127#M1442990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Chan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure TOTAL will have the same structure as your Z-Table ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does your Z-Table have the fields ERNAM &amp;amp; ERDAT ? If not the ASSIGN statement is bound to fail. Give the proper field names in the ASSIGN (cross check against the Z-Table) &amp;amp; then check &amp;amp; revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: BTW did you check this post as reference : [&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="8642488"&gt;&lt;/A&gt;|&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="8642488"&gt;&lt;/A&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Feb 22, 2010 4:41 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 11:08:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638127#M1442990</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-22T11:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638128#M1442991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked the link that you have sent. I have used the method to convert the string to structure. Yet i get a run time error saying:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The call of the method "READ_CONTAINER_C" of the class&lt;/P&gt;&lt;P&gt; "CL_ABAP_CONTAINER_UTILITIES" is incorrect. It was tried&lt;/P&gt;&lt;P&gt;to transfer a non-compatible variable to the formal parameter "IM_CONTAINER".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following fields in the table:&lt;/P&gt;&lt;P&gt;BNAME - User Name&lt;/P&gt;&lt;P&gt;GSWRT  - Currency Field &lt;/P&gt;&lt;P&gt;FIRST_NAME&lt;/P&gt;&lt;P&gt;LAST_NAME&lt;/P&gt;&lt;P&gt;ERNAM&lt;/P&gt;&lt;P&gt;ERDAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I  am unable to use the offseting as there is a currency field in it. Do we have a work around. In short, i am facing the same problem as the person in the link you sent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: chanakya reddy on Feb 22, 2010 2:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 13:19:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638128#M1442991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-22T13:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638129#M1442992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally done it myself. thanks everyone involved. especially suhas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: chanakya reddy on Feb 22, 2010 4:01 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 15:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638129#M1442992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-22T15:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638130#M1442993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Chan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What was the method you have used to correct your problem ? Plz keep in mind to share your solution for future reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2010 04:44:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638130#M1442993</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-23T04:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Table Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638131#M1442994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved it on my own&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Apr 2010 07:25:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-table-maintenance/m-p/6638131#M1442994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-20T07:25:06Z</dc:date>
    </item>
  </channel>
</rss>

