<?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 How to extract data from a structure?(Data Dictionary) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-data-from-a-structure-data-dictionary/m-p/1289510#M154930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;       This is regarding extracting data from a structure.&lt;/P&gt;&lt;P&gt;For Eg:if we want to extract data from a structure ADDR1_DATA,How will we do that in report programming?Structures on its own has no existence unless it s attached to a database table or view.when am using 'Where used List' on that structure also I am not getting any database tables or views.What can I do about this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you,&lt;/P&gt;&lt;P&gt;anjaly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Mar 2006 07:02:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-23T07:02:37Z</dc:date>
    <item>
      <title>How to extract data from a structure?(Data Dictionary)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-data-from-a-structure-data-dictionary/m-p/1289510#M154930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;       This is regarding extracting data from a structure.&lt;/P&gt;&lt;P&gt;For Eg:if we want to extract data from a structure ADDR1_DATA,How will we do that in report programming?Structures on its own has no existence unless it s attached to a database table or view.when am using 'Where used List' on that structure also I am not getting any database tables or views.What can I do about this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you,&lt;/P&gt;&lt;P&gt;anjaly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 07:02:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-data-from-a-structure-data-dictionary/m-p/1289510#M154930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T07:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from a structure?(Data Dictionary)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-data-from-a-structure-data-dictionary/m-p/1289511#M154931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi anjaly,&lt;/P&gt;&lt;P&gt;Suppose if a strcuture is of a type of a ZTABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;DATA it_str LIKE TABLE OF ZSTRUCTURE WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt; FROM ZTABLE&lt;/P&gt;&lt;P&gt; INTO TABLE it_str.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 07:15:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-data-from-a-structure-data-dictionary/m-p/1289511#M154931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T07:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from a structure?(Data Dictionary)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-data-from-a-structure-data-dictionary/m-p/1289512#M154932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There is no data in structure.&lt;/P&gt;&lt;P&gt;You will have to extract the data from ADRC table and not from structure ADDR1_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 07:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-data-from-a-structure-data-dictionary/m-p/1289512#M154932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T07:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from a structure?(Data Dictionary)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-data-from-a-structure-data-dictionary/m-p/1289513#M154933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Anjaly,&lt;/P&gt;&lt;P&gt; as you said structure does not have any value .. unless something is added to it..&lt;/P&gt;&lt;P&gt; So just use the structure to define the type of the sttructure you want..&lt;/P&gt;&lt;P&gt; Or to include it in your itab like..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
 data : Begin of itab occurs 0.
       include structure ADDR1_DATA.
 data  i type i.
       end of itab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;you cannot directly extract data from the  structure ADDR1_DATA..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;satesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 07:19:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-extract-data-from-a-structure-data-dictionary/m-p/1289513#M154933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T07:19:15Z</dc:date>
    </item>
  </channel>
</rss>

