<?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: get data from a module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446291#M211782</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The List being displayed is actually retrieved from TABADR table&lt;/P&gt;&lt;P&gt;.Write a select on this table to get the same data.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Jun 2006 15:51:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-23T15:51:54Z</dc:date>
    <item>
      <title>get data from a module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446288#M211779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ABAP Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am BW person, and looking to extract the data from the table display from one of the trasactions in R/3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tcode: fmderive&lt;/P&gt;&lt;P&gt;i checked the the program it is : SAPMABADR (module pool)&lt;/P&gt;&lt;P&gt;fields of hte table belong to: structure FMDERIVE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i can get the data into a internal table. That would be great, i can do the rest of the processing before i extract this data to BW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;BWer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 15:07:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446288#M211779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-23T15:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: get data from a module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446289#M211780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need to find out where this data is coming from,   Do a SQL trace when running this program.  It will give you a listing of the tables being hit.  From there you need to extract the data from the db tables.  You can not extract data from a module pool program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 15:09:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446289#M211780</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-23T15:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: get data from a module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446290#M211781</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 in internal table. The internal table should be of a particular STRUCTURE which is created in SE11. Populate the internal table in program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not remember the exact command, but it is somewhat as below. With this it is possible to extract data in BW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;lt;QUERY HEAD&amp;gt; "Always comment this statement&lt;/P&gt;&lt;P&gt;loop at it_data into wa_data.&lt;/P&gt;&lt;P&gt;append wa_data to it_fmderive.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;*&amp;lt;QUERY BODY&amp;gt; "Always comment this statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal table it_fmderive can be used to extract data in BW. This is the only way to extract data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also refer following link :&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.thespot4sap.com/articles/SAP_ABAP_Queries_DataRetrievalUsingProgram.asp" target="test_blank"&gt;http://www.thespot4sap.com/articles/SAP_ABAP_Queries_DataRetrievalUsingProgram.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Prashant Patil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 15:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446290#M211781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-23T15:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: get data from a module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446291#M211782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The List being displayed is actually retrieved from TABADR table&lt;/P&gt;&lt;P&gt;.Write a select on this table to get the same data.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 15:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446291#M211782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-23T15:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: get data from a module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446292#M211783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi has provided the table.  So all you need to do is a SELECT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: iTABADR type table of  TABADR with header line.

select * into table iTABADR
             from  TABADR
                     where .........&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jun 2006 15:53:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-data-from-a-module-pool/m-p/1446292#M211783</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-23T15:53:40Z</dc:date>
    </item>
  </channel>
</rss>

