<?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: data extract from maintenance view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457516#M1415054</link>
    <description>&lt;P&gt;I saw your posted comment. I recommend responding to newer questions. The author of the original question is no longer active in the community and won't receive your query. Feel free to take our Q&amp;amp;A  tutorial at: &lt;A href="https://developers.sap.com/tutorials/community-qa.html" target="test_blank"&gt;https://developers.sap.com/tutorials/community-qa.html&lt;/A&gt;. With these tips you'll be able to prepare questions that draw responses from our members.&lt;/P&gt;&lt;P&gt;Thanks! &lt;/P&gt;</description>
    <pubDate>Mon, 19 Sep 2022 13:07:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2022-09-19T13:07:38Z</dc:date>
    <item>
      <title>data extract from maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457509#M1415047</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;it is possible to extract data from maintenance table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ex, i want to check the combination of company code and plant in V__T001K_ASSIGN (SAP standard View).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to extract the plant code (WERKS) with the company code (BUKRS) as the extraction condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i am not able to extract the data since it is a maintenance view and not the data base table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any body help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Dec 2009 05:48:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457509#M1415047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-17T05:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: data extract from maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457510#M1415048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may need to use fm VIEW_GET_DATA. SAP doesn't allow SELECT query on maintenance view&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Dec 2009 05:58:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457510#M1415048</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-12-17T05:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: data extract from maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457511#M1415049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this out,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'VIEW_GET_DATA'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          view_name = 'V_TVTA_KFV'  &lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          data      = it_bus_area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V_TVTA_KFV - View from which data is to be extractted&lt;/P&gt;&lt;P&gt;it_bus_area     -  internal table into which data will be  extracted (DATA: it_bus_area TYPE TABLE OF V_TVTA_KFV,)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Dec 2009 08:47:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457511#M1415049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-17T08:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: data extract from maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457512#M1415050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: itab TYPE STANDARD TABLE OF V_T001K_ASSIGN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'VIEW_GET_DATA'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    VIEW_NAME                    = 'V_T001K_ASSIGN'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA                         = itab&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Dec 2009 08:57:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457512#M1415050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-17T08:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: data extract from maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457513#M1415051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Oct 2010 10:34:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457513#M1415051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-21T10:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: data extract from maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457514#M1415052</link>
      <description>&lt;P&gt;Thanks 4 you Info.&lt;/P&gt;&lt;P&gt;This showes me again how sick sap abap is...compleatly insane logik.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 06:09:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457514#M1415052</guid>
      <dc:creator>tkuebler1</dc:creator>
      <dc:date>2022-09-19T06:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: data extract from maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457515#M1415053</link>
      <description>&lt;P&gt;SM30 -&amp;gt; Display&lt;/P&gt;&lt;P&gt;More -&amp;gt; Table View -&amp;gt; Export (Spreadsheet)&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 08:07:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457515#M1415053</guid>
      <dc:creator>thkolz</dc:creator>
      <dc:date>2022-09-19T08:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: data extract from maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457516#M1415054</link>
      <description>&lt;P&gt;I saw your posted comment. I recommend responding to newer questions. The author of the original question is no longer active in the community and won't receive your query. Feel free to take our Q&amp;amp;A  tutorial at: &lt;A href="https://developers.sap.com/tutorials/community-qa.html" target="test_blank"&gt;https://developers.sap.com/tutorials/community-qa.html&lt;/A&gt;. With these tips you'll be able to prepare questions that draw responses from our members.&lt;/P&gt;&lt;P&gt;Thanks! &lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 13:07:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-extract-from-maintenance-view/m-p/6457516#M1415054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2022-09-19T13:07:38Z</dc:date>
    </item>
  </channel>
</rss>

