<?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 SUBMIT the report using ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570027#M1078377</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;         i want to prepare the report as i want to submit the another report using varint in alv report so pls provide the solutuion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and at the same time i want to download the dat from the alv output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Oct 2008 11:19:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-08T11:19:27Z</dc:date>
    <item>
      <title>SUBMIT the report using ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570027#M1078377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;         i want to prepare the report as i want to submit the another report using varint in alv report so pls provide the solutuion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and at the same time i want to download the dat from the alv output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 11:19:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570027#M1078377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T11:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT the report using ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570028#M1078378</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;In the function module REUSE_ALV_GRID_DISPLAY, use the paramter IS_VARIANT and I_SAVE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then write a program to call your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhanunjaya Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 11:34:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570028#M1078378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T11:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT the report using ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570029#M1078379</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;First declare a parameter for a variant of layout for an ALV report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And add a code to download the internal table which is used for alv display using FM gui_download .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the second program use the submit statement shown in the below sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT report1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA text TYPE c LENGTH 10. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1100. &lt;/P&gt;&lt;P&gt;  SELECT-OPTIONS: selcrit1 FOR text, &lt;/P&gt;&lt;P&gt;                  selcrit2 FOR text. &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1100. &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;Calling program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT report2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: text       TYPE c LENGTH 10, &lt;/P&gt;&lt;P&gt;      rspar_tab  TYPE TABLE OF rsparams, &lt;/P&gt;&lt;P&gt;      rspar_line LIKE LINE OF rspar_tab, &lt;/P&gt;&lt;P&gt;      range_tab  LIKE RANGE OF text, &lt;/P&gt;&lt;P&gt;      range_line LIKE LINE OF range_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rspar_line-selname = 'SELCRIT1'. &lt;/P&gt;&lt;P&gt;rspar_line-kind    = 'S'. &lt;/P&gt;&lt;P&gt;rspar_line-sign    = 'I'. &lt;/P&gt;&lt;P&gt;rspar_line-option  = 'EQ'. &lt;/P&gt;&lt;P&gt;rspar_line-low     = 'ABAP'. &lt;/P&gt;&lt;P&gt;APPEND rspar_line TO rspar_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;range_line-sign   = 'E'. &lt;/P&gt;&lt;P&gt;range_line-option = 'EQ'. &lt;/P&gt;&lt;P&gt;range_line-low    = 'H'. &lt;/P&gt;&lt;P&gt;APPEND range_line TO range_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;range_line-sign   = 'E'. &lt;/P&gt;&lt;P&gt;range_line-option = 'EQ'. &lt;/P&gt;&lt;P&gt;range_line-low    = 'K'. &lt;/P&gt;&lt;P&gt;APPEND range_line TO range_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT report1 USING SELECTION-SCREEN '1100' &lt;/P&gt;&lt;P&gt;               WITH SELECTION-TABLE rspar_tab &lt;/P&gt;&lt;P&gt;               WITH selcrit2 BETWEEN 'H' AND 'K' &lt;/P&gt;&lt;P&gt;               WITH selcrit2 IN range_tab &lt;/P&gt;&lt;P&gt;               AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmaja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 11:41:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570029#M1078379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T11:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT the report using ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570030#M1078380</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;This is going to be the same as any other report..... Use SUBMIT statement and call the ALV report .....it Variant is nit fixed..then make the Variant a part of Selection Screen of the Called Report and provide its name in the SUBMIT statement along with "WITH" option.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Excel Download..you need not to do anything its a standard functionality with ALV....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 11:43:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570030#M1078380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T11:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT the report using ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570031#M1078381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Thanks for all for providing the solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2008 11:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-the-report-using-alv/m-p/4570031#M1078381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-09T11:48:20Z</dc:date>
    </item>
  </channel>
</rss>

