<?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 Refresh data in Table Maintenance view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-data-in-table-maintenance-view/m-p/7488818#M1557109</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 created a table maintenance view for db table A and added my function button to this view. When I click the button I append  a few records to the table A from table B. But this recoreds are not displaied in the view.&lt;/P&gt;&lt;P&gt;If I rerun the view I can see added records.&lt;/P&gt;&lt;P&gt;How I have to refresh the view to display added records?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ilya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Nov 2010 20:45:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-16T20:45:46Z</dc:date>
    <item>
      <title>Refresh data in Table Maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-data-in-table-maintenance-view/m-p/7488818#M1557109</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 created a table maintenance view for db table A and added my function button to this view. When I click the button I append  a few records to the table A from table B. But this recoreds are not displaied in the view.&lt;/P&gt;&lt;P&gt;If I rerun the view I can see added records.&lt;/P&gt;&lt;P&gt;How I have to refresh the view to display added records?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ilya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Nov 2010 20:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-data-in-table-maintenance-view/m-p/7488818#M1557109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-16T20:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh data in Table Maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-data-in-table-maintenance-view/m-p/7488819#M1557110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Malnor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use a COMMIT WORK after the INSERT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jesus Martinez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Nov 2010 21:39:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-data-in-table-maintenance-view/m-p/7488819#M1557110</guid>
      <dc:creator>former_member211627</dc:creator>
      <dc:date>2010-11-16T21:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh data in Table Maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-data-in-table-maintenance-view/m-p/7488820#M1557111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jesus,&lt;/P&gt;&lt;P&gt;COMMIT WORK isn't help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found that I have to use TOTAL and EXTRACT structures to modify data in maintenance view.&lt;/P&gt;&lt;P&gt;It's fine. I do something like this in my FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE 9CUSTOM_PF_BUTTON INPUT.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;lt_total[] = total[].&lt;/P&gt;&lt;P&gt;lt_extract[] = extract[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE function.&lt;/P&gt;&lt;P&gt;      WHEN '9DOWNSH'.&lt;/P&gt;&lt;P&gt;         .......&lt;/P&gt;&lt;P&gt;         modify lt_total from wa_total.&lt;/P&gt;&lt;P&gt;         modify lt_extract from wa_extract&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;total[]   = lt_total[].&lt;/P&gt;&lt;P&gt;extract[] = lt_extract[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " 9CUSTOM_PF_BUTTON  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But TOTL and EXTRACT tables contain data of  the current maintenance view. &lt;/P&gt;&lt;P&gt;I work with a view cluster and I have to append or delete records from one view if I do something in other view.&lt;/P&gt;&lt;P&gt;How I can modify data one view from another maintenance view?&lt;/P&gt;&lt;P&gt;If I have modified database tables directly I don't see changes in the view cluster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Malnor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Malnor on Nov 23, 2010 9:19 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Malnor on Nov 23, 2010 9:38 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 04:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-data-in-table-maintenance-view/m-p/7488820#M1557111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-23T04:32:56Z</dc:date>
    </item>
  </channel>
</rss>

