<?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 reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/1641498#M285688</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;    How to develop a report which will list out all the purchase order details and the secondary list contains all the information about the supplier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 26 Nov 2006 07:09:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-26T07:09:06Z</dc:date>
    <item>
      <title>reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/1641498#M285688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;    How to develop a report which will list out all the purchase order details and the secondary list contains all the information about the supplier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Nov 2006 07:09:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/1641498#M285688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-26T07:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/1641499#M285689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First Fetch the Records(EBELN (PO), LIFNR(Vendor - Supplier) ) from EKKO for getting all the Purchage Orders.&lt;/P&gt;&lt;P&gt;( if you want all the PO Items also, Select all the records from EKPO )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put it into one internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And Display it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then User clicks the Supplier(LIFNR) in the basic list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get the relevant data from LFA1 based on the LIFNR( Clicked Supplier).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then display it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sekhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Nov 2006 07:24:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/1641499#M285689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-26T07:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/1641500#M285690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi see the following simple code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  YLSR_IR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_ekko,&lt;/P&gt;&lt;P&gt;        ebeln type ebeln,&lt;/P&gt;&lt;P&gt;        lifnr type lifnr,&lt;/P&gt;&lt;P&gt;       end of ty_ekko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_lfa1,&lt;/P&gt;&lt;P&gt;        lifnr type lifnr,&lt;/P&gt;&lt;P&gt;        name1 type name1,&lt;/P&gt;&lt;P&gt;       end of ty_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_ekko type table of ty_ekko,&lt;/P&gt;&lt;P&gt;      it_lfa1 type table of ty_lfa1,&lt;/P&gt;&lt;P&gt;      st_ekko type ty_ekko,&lt;/P&gt;&lt;P&gt;      st_lfa1 type ty_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      select EBELN LIFNR from EKKO into table it_ekko.&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt; break yerradla.&lt;/P&gt;&lt;P&gt;      loop at it_ekko into st_ekko.&lt;/P&gt;&lt;P&gt;        write: / st_ekko-ebeln, st_ekko-lifnr.&lt;/P&gt;&lt;P&gt;        hide st_ekko.&lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT line-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select lifnr name1 from lfa1 into table it_lfa1&lt;/P&gt;&lt;P&gt;                    where lifnr = st_ekko-lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at it_lfa1 into st_lfa1.&lt;/P&gt;&lt;P&gt;   write: / st_lfa1-lifnr, st_lfa1-name1.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sekhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Nov 2006 09:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/1641500#M285690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-26T09:32:24Z</dc:date>
    </item>
  </channel>
</rss>

