<?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 regarding report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454074#M550150</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;i have a requirement of developing  a ALV report. i should fetch data from one view i.e, CAUFV for fields AUFNR,SOWRK,AUART,GSTRP,RSNUM and from 4 other tables for six fields. so i dont understand how to deal with view and how to declare internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;warm regards,&lt;/P&gt;&lt;P&gt;kiran.&lt;/P&gt;&lt;P&gt;points will be awarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jun 2007 11:35:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-27T11:35:52Z</dc:date>
    <item>
      <title>regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454074#M550150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;i have a requirement of developing  a ALV report. i should fetch data from one view i.e, CAUFV for fields AUFNR,SOWRK,AUART,GSTRP,RSNUM and from 4 other tables for six fields. so i dont understand how to deal with view and how to declare internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;warm regards,&lt;/P&gt;&lt;P&gt;kiran.&lt;/P&gt;&lt;P&gt;points will be awarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 11:35:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454074#M550150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T11:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454075#M550151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare the internal table as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;         fld1 type field1(From view)&lt;/P&gt;&lt;P&gt;         fld2 type field2 (from view)&lt;/P&gt;&lt;P&gt;         .&lt;/P&gt;&lt;P&gt;         .&lt;/P&gt;&lt;P&gt;         fld3 type field3(from table1)&lt;/P&gt;&lt;P&gt;         .&lt;/P&gt;&lt;P&gt;         .&lt;/P&gt;&lt;P&gt;         end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and select values of these fields from the respective view and table values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 11:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454075#M550151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T11:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454076#M550152</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;Create a local Structure or a Zstrucutre in the Dictionary SE11 with the fields that you require. (Use the same field names as you want to read from view and other tables)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your program create one internal table of this type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab type table of &amp;lt;your-type&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the view read as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT AUFNR SOWRK AUART GSTRP RSNUM INTO CORRESPONDING FIELDS OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then Read data from these four tables using FOR ALL ENTRIES and ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then update the ITAB from the FOUR tables using LOOP AT ITAB and READ TABLE ITAB1 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 11:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454076#M550152</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-06-27T11:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454077#M550153</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;data:begin of itab occurs0,&lt;/P&gt;&lt;P&gt;AUFNR type  CAUFV -AUFNR&lt;/P&gt;&lt;P&gt;SOWRK type  CAUFV-SOWRK &lt;/P&gt;&lt;P&gt;AUART type  CAUFV -AUART&lt;/P&gt;&lt;P&gt;GSTRP type  CAUFV -GSTRP&lt;/P&gt;&lt;P&gt;RSNUM type  CAUFV -RSNUM&lt;/P&gt;&lt;P&gt; end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpfull answers.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 11:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454077#M550153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T11:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454078#M550154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;  This is data base view. so we can apply select statement with out any tense. just apply select query on tha tview as same as on table with the required fields.&lt;/P&gt;&lt;P&gt;Hope this helps you. Reply for queries, shall post the updates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.  &lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 11:58:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2454078#M550154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T11:58:11Z</dc:date>
    </item>
  </channel>
</rss>

