<?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: selecting data from view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-view/m-p/3490878#M839448</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You cannot select data directly from Maintenance View.&lt;/P&gt;&lt;P&gt;You need to query the underlying tables involved in that view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also try with FM: VIEWPROC_V_T052 or even easier with  VIEW_GET_DATA .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 08 Mar 2008 23:02:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-08T23:02:12Z</dc:date>
    <item>
      <title>selecting data from view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-view/m-p/3490876#M839446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All:&lt;/P&gt;&lt;P&gt;  I am trying to select a data from view using the SQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM V_T8A30  WHERE &lt;/P&gt;&lt;P&gt;              KONTO_VON GE P_GLACCOUNT&lt;/P&gt;&lt;P&gt;              AND KONTO_BIS LE P_GLACCOUNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but getting an error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"V_T8A30" is not defined in the ABAP Dictionary as a table, projection	view or database view.	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone please let me know if there is any other command to select data from view or any information?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Mithun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 20:18:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-view/m-p/3490876#M839446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T20:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: selecting data from view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-view/m-p/3490877#M839447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mithun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not on the system now but I guess that V_T8A30 is defined as a maintenance view. You can select the data from the underlying table(s), probably T8A30. Got to SE12 dictionary, check V_T8A30 (or is it a type o and you should try V_T&lt;STRONG&gt;B&lt;/STRONG&gt;A30). Check the tables in the view and pick the one you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 21:29:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-view/m-p/3490877#M839447</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2008-03-08T21:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: selecting data from view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-view/m-p/3490878#M839448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You cannot select data directly from Maintenance View.&lt;/P&gt;&lt;P&gt;You need to query the underlying tables involved in that view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also try with FM: VIEWPROC_V_T052 or even easier with  VIEW_GET_DATA .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 23:02:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-view/m-p/3490878#M839448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T23:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: selecting data from view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-view/m-p/3490879#M839449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use fm VIEW_MAINTENANCE_NO_DIALOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass your selection condition in the format of SELLIST, and pass the name of your view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The TOTAL/EXTRACT parameter will contain your required data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rekha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 12:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-data-from-view/m-p/3490879#M839449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T12:05:08Z</dc:date>
    </item>
  </channel>
</rss>

