<?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: report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3015971#M712772</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't think so. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no ABAP statement as STRUCTURE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check the documentation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can however declare a type and then a data variable (field string)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of typ_fdbl_balance_line,&lt;/P&gt;&lt;P&gt;                f1 type &amp;lt;some type&amp;gt; &lt;/P&gt;&lt;P&gt;                f2 type &amp;lt;some type&amp;gt;&lt;/P&gt;&lt;P&gt;           end of typ_fdbl_balance_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ls_fdbl_balance_line type typ_fdbl_balance_line. "field string (or work area)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data itab_fdbl_balance_line type table of typ_fdbl_balance_line. "internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Oct 2007 09:51:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-30T09:51:43Z</dc:date>
    <item>
      <title>report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3015970#M712771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sir &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we r using structure in place of tables&lt;/P&gt;&lt;P&gt;ex .&lt;/P&gt;&lt;P&gt;    report zs.&lt;/P&gt;&lt;P&gt;     structure: fdbl_balance_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     write :/,fdbl_balance_lien-credit.&lt;/P&gt;&lt;P&gt;it is possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 09:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3015970#M712771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T09:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3015971#M712772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't think so. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no ABAP statement as STRUCTURE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check the documentation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can however declare a type and then a data variable (field string)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of typ_fdbl_balance_line,&lt;/P&gt;&lt;P&gt;                f1 type &amp;lt;some type&amp;gt; &lt;/P&gt;&lt;P&gt;                f2 type &amp;lt;some type&amp;gt;&lt;/P&gt;&lt;P&gt;           end of typ_fdbl_balance_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ls_fdbl_balance_line type typ_fdbl_balance_line. "field string (or work area)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data itab_fdbl_balance_line type table of typ_fdbl_balance_line. "internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 09:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3015971#M712772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T09:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3015972#M712773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;we can  use structure for declaration  but note that we can not able to fetch data from structure as it will not have any data  .&lt;/P&gt;&lt;P&gt;report zs.&lt;/P&gt;&lt;P&gt;structure: fdbl_balance_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write :/,fdbl_balance_lien-credit.&lt;/P&gt;&lt;P&gt;it is possible  but it will store only one record at a time It will not work like internal table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if useful...........&lt;/P&gt;&lt;P&gt;Minal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 10:20:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3015972#M712773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T10:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3015973#M712774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ritu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure cannot have data like an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shilpi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 10:30:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3015973#M712774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T10:30:04Z</dc:date>
    </item>
  </channel>
</rss>

