<?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/2456543#M550867</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 RESB (MATNR,MENGE,PSMNG), RSDB(BANFN,BNFPO)  etc for six fields. so i dont understand how to deal with view and how to declare internal tables.&lt;/P&gt;&lt;P&gt;so can anybody send how  the declaration will be and how the select statement will be. &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 12:10:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-27T12:10:00Z</dc:date>
    <item>
      <title>regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456543#M550867</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 RESB (MATNR,MENGE,PSMNG), RSDB(BANFN,BNFPO)  etc for six fields. so i dont understand how to deal with view and how to declare internal tables.&lt;/P&gt;&lt;P&gt;so can anybody send how  the declaration will be and how the select statement will be. &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 12:10:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456543#M550867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T12:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456544#M550868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;      View is nothing but a temporary transparent table .U can use diz view as a table itself.. select query and internal table declaration is asusual.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashok...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 12:14:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456544#M550868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T12:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456545#M550869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Internal table declaration&lt;/P&gt;&lt;P&gt;This may be your final internal table of this query...&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0 ,&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;         matnr type resb-MATNR,&lt;/P&gt;&lt;P&gt;         menge type resb-MENGE,&lt;/P&gt;&lt;P&gt;         psmng type resb-PSMNG,&lt;/P&gt;&lt;P&gt;         banfn type RSDB-BANFN,&lt;/P&gt;&lt;P&gt;         bnfpo type rsdb-BNFPO,&lt;/P&gt;&lt;P&gt;        end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select statemant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just fetch needed fields frm caufv and with the corresponding fields os caufv fetch values from other 2 tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashok...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 12:19:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456545#M550869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T12:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456546#M550870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first of all you should declare view in your report.........&lt;/P&gt;&lt;P&gt;you can use your view as same like structure........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and for better purpose you should select require  fields from select tables with where conditions and then collect them to a one internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;finally as per your requirment you should use your ALV functions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and pass proper parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you get confusion again reply to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 12:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456546#M550870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T12:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456547#M550871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;declare the view like&lt;/P&gt;&lt;P&gt;TABLES:   viaufks. " PM Order Details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CLEAR: i_ord.&lt;/P&gt;&lt;P&gt;  REFRESH: i_ord.&lt;/P&gt;&lt;P&gt;  SELECT aufnr            " PM Order No&lt;/P&gt;&lt;P&gt;         equnr            " Equipment Number&lt;/P&gt;&lt;P&gt;         tplnr            " Functional Location&lt;/P&gt;&lt;P&gt;         auart            " Order Type&lt;/P&gt;&lt;P&gt;         aedat            " Order Date&lt;/P&gt;&lt;P&gt;         swerk            " Maintenance Plant&lt;/P&gt;&lt;P&gt;         werks            " Plant&lt;/P&gt;&lt;P&gt;         ktext            " Order Text&lt;/P&gt;&lt;P&gt;         kokrs            " Controlling Area&lt;/P&gt;&lt;P&gt;         objnr            " Object Id&lt;/P&gt;&lt;P&gt;         kostl            " Cost Center&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    INTO TABLE i_ord&lt;/P&gt;&lt;P&gt;    FROM viaufks&lt;/P&gt;&lt;P&gt;    WHERE aufnr IN s_aufnr AND&lt;/P&gt;&lt;P&gt;          equnr IN s_equnr AND&lt;/P&gt;&lt;P&gt;          tplnr IN s_tplnr AND&lt;/P&gt;&lt;P&gt;          swerk IN s_swerk AND&lt;/P&gt;&lt;P&gt;          aedat IN s_date  AND&lt;/P&gt;&lt;P&gt;          auart IN s_auart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2007 12:21:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456547#M550871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T12:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: regarding report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456548#M550872</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;No diffrence between view and table whilde doing select quary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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 12:28:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report/m-p/2456548#M550872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-27T12:28:24Z</dc:date>
    </item>
  </channel>
</rss>

