<?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 Report layout modification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331918#M169015</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a standard program in which I need to customise the output. Right now it is displaying the output of the report in 4 rows and I want to display the output in one single line in ALV format. The report which I am trying to customise is RM06EL00 and the output currently displayed is like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.)PO Type Vendor Name PGp Order date&lt;/P&gt;&lt;P&gt;2.) Item Material Short text Mat. group&lt;/P&gt;&lt;P&gt;3.) D I A Plnt SLoc Order qty. Un Net Price Curr. per Un&lt;/P&gt;&lt;P&gt;4.) SL del. date Sched. qty. Un&lt;/P&gt;&lt;P&gt;and what I want is something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.)PO Type Vendor Name PGp Order date Item Material Short text Mat. group D I A Plnt SLoc Order qty. Un Net Price Curr. per Un ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I copied the RM06EL00 to ZRM06EL00 I tried debugging the program to find out where the internal table for final display is being populated but couldnt find it. Any pointers on how to achieve the same .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 May 2006 22:54:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-09T22:54:50Z</dc:date>
    <item>
      <title>Report layout modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331918#M169015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a standard program in which I need to customise the output. Right now it is displaying the output of the report in 4 rows and I want to display the output in one single line in ALV format. The report which I am trying to customise is RM06EL00 and the output currently displayed is like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.)PO Type Vendor Name PGp Order date&lt;/P&gt;&lt;P&gt;2.) Item Material Short text Mat. group&lt;/P&gt;&lt;P&gt;3.) D I A Plnt SLoc Order qty. Un Net Price Curr. per Un&lt;/P&gt;&lt;P&gt;4.) SL del. date Sched. qty. Un&lt;/P&gt;&lt;P&gt;and what I want is something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.)PO Type Vendor Name PGp Order date Item Material Short text Mat. group D I A Plnt SLoc Order qty. Un Net Price Curr. per Un ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I copied the RM06EL00 to ZRM06EL00 I tried debugging the program to find out where the internal table for final display is being populated but couldnt find it. Any pointers on how to achieve the same .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 22:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331918#M169015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T22:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Report layout modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331919#M169016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The std RM06EL00 program is not moving data into any internal table for final output.&lt;/P&gt;&lt;P&gt; Its writing data from EKKO and EKPO workarea in a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CHeck the code under &lt;/P&gt;&lt;P&gt; SAPFM06L --&amp;gt; FM06LFEK_EKKO_AUSGABE and FM06LFEK_EKPO_AUSGABE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What you can do is commet the WRITE statements in the copied program and just below the write statement APPEND the values from EKKO and EKPO structure to you internal table which you can use to display the data in ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I think you will need to build your logic correctly as you might want to put the Header data from EKKO and item data from EKPO in a single table for final display in ALV. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hope this helps&lt;/P&gt;&lt;P&gt; CHeers&lt;/P&gt;&lt;P&gt; VJ&lt;/P&gt;&lt;P&gt; Mark Helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 May 2006 00:25:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331919#M169016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-10T00:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Report layout modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331920#M169017</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's not so much logic in the RM06EL00 so just think about doing the coding on your own instead of copying the RM06EL00 to Z_RM06EL00.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's just selecting the EKKO and the EKPO.&lt;/P&gt;&lt;P&gt;Then fill the Data to an internal table and give it to the ALV.&lt;/P&gt;&lt;P&gt;I think that would be easier than adding an ALV to the RM06EL00.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some points would be nice if that helped a bit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 May 2006 04:57:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331920#M169017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-10T04:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Report layout modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331921#M169018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anjur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You follow the following steps to find out where exactly  the internal table for final display is being populated   :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Go to perform end_of_selection(sapfm06l) in the main prg RM06EL00 ( at line 115, col 16)). Double click on this.  It will take you to form end_of_selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Double click on perform start_via_table_manager in the form   end_of_selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. you will reach form start_via_table_manager . In that you will see function ME_REP_START_VIA_TABLE_MANAGER .&lt;/P&gt;&lt;P&gt;double click on this fm .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.( In menubar &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;  Goto - &amp;gt; Main Program . It will take you to the main program SAPLMEREP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Double Click on the include lmerepfxx. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. You will see a lot of includes . Double cklick on the include lmerepi02. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. IN this  include lmerepi02, you will find out the required internal table, where you have to populate the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kunal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 May 2006 08:49:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331921#M169018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-10T08:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Report layout modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331922#M169019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rainer,&lt;/P&gt;&lt;P&gt;Can you please give me the selection logic of your program . As I have to display &lt;/P&gt;&lt;P&gt;following feilds in my report:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name1&lt;/P&gt;&lt;P&gt;ebeln&lt;/P&gt;&lt;P&gt;bedat&lt;/P&gt;&lt;P&gt;matnr&lt;/P&gt;&lt;P&gt;menge&lt;/P&gt;&lt;P&gt;wamng&lt;/P&gt;&lt;P&gt;owemg&lt;/P&gt;&lt;P&gt;ematn&lt;/P&gt;&lt;P&gt;owewr&lt;/P&gt;&lt;P&gt;But I am unable to trace the logic for picking up these values.It's really urgent&lt;/P&gt;&lt;P&gt;I will be really grateful if u can help&lt;/P&gt;&lt;P&gt;Shveta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2007 08:37:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331922#M169019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T08:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Report layout modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331923#M169020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Someone could add the new fields on the ME2N or ME3N Report?&lt;/P&gt;&lt;P&gt;Because I'm searching how to do this in the standard report without copy it to a Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd already add the fields in at the search screen with an enhancement-point but once I add the new field in one of the append structure in MEREP_OUTTAB_PURCHDOC I don't know how to proceed.&lt;/P&gt;&lt;P&gt;I don't know where can I put the code for the db selection and adding to the ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also see another focus at this post: &lt;/P&gt;&lt;P&gt;[&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="6108560"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks far all Experts!!!!&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 13:17:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-layout-modification/m-p/1331923#M169020</guid>
      <dc:creator>hernan_valenzuela</dc:creator>
      <dc:date>2009-04-28T13:17:41Z</dc:date>
    </item>
  </channel>
</rss>

